/**
 * Site 8 Redesign — 2026-09-04
 * Palette: white / cool-light #F2F6F5 / dark teal #173E42 / text #24383A / muted #526866 / accent #A4753B
 * Typography: Georgia display + system sans body
 *
 * Loads LAST — highest specificity wins over generated sheets.
 *
 * @package Ask_Psychic_Free_Question
 */

/* ==========================================================================
   1. Token override — new palette
   ========================================================================== */

:root {
	--color-primary:        #2C6B73;
	--color-primary-hover:  #1E4E54;
	--color-primary-light:  rgba(23, 62, 66, 0.10);
	--color-primary-dark:   #173E42;

	--color-secondary:      #F2F6F5;

	--color-accent:         #A4753B;
	--color-accent-hover:   #8A5D2E;
	--color-accent-light:   rgba(164, 117, 59, 0.12);

	--color-bg-soft:        #F2F6F5;
	--color-bg-white:       #FFFFFF;

	--color-text-primary:   #24383A;
	--color-text-secondary: #526866;
	--color-text-light:     #7A9294;
	--color-border:         #C8D8D5;
	--color-white:          #FFFFFF;

	/* Typography — Georgia display, clean system sans body */
	--font-heading: Georgia, 'Times New Roman', serif;
	--font-body:    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

	/* Gradient */
	--gradient-hero:    linear-gradient(135deg, #FFFFFF 0%, #F2F6F5 100%);
	--gradient-section: linear-gradient(180deg, #FFFFFF 0%, #F2F6F5 100%);

	/* Shadows — teal-tinted */
	--shadow-xs: 0 1px 3px rgba(23, 62, 66, 0.06);
	--shadow-sm: 0 6px 20px rgba(23, 62, 66, 0.07);
	--shadow-md: 0 14px 36px rgba(23, 62, 66, 0.10);
	--shadow-lg: 0 22px 60px rgba(23, 62, 66, 0.13);
}

/* ==========================================================================
   2. Base typography with new fonts
   ========================================================================== */

body {
	font-family: var(--font-body);
	color: var(--color-text-primary);
	background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--color-text-primary);
	font-weight: 400; /* Georgia reads well at regular weight for display */
}

h1 { font-weight: 400; letter-spacing: -0.01em; }
h2 { font-weight: 400; letter-spacing: -0.005em; }
h3 { font-weight: 400; }

/* ==========================================================================
   3. Header
   ========================================================================== */

.site-header {
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 1px 0 #C8D8D5;
}

.site-header__logo a {
	font-family: Georgia, serif;
	font-weight: 400;
	color: #173E42;
}

.site-header__logo svg {
	color: #173E42;
}

.site-header__menu a {
	color: #526866;
	font-weight: 500;
}

.site-header__menu a:hover,
.site-header__menu .current-menu-item > a,
.site-header__menu .current_page_item > a {
	color: #173E42;
}

/* Header CTA button */
.site-header__cta .btn-gold {
	background:   #173E42;
	border-color: #173E42;
	color:        #FFFFFF;
	font-family:  var(--font-body);
}

.site-header__cta .btn-gold:hover {
	background:   #0f2a2d;
	border-color: #0f2a2d;
	color:        #FFFFFF;
	transform: none;
	box-shadow: var(--shadow-sm);
}

/* Mobile menu panel */
.site-header__nav {
	background: #FFFFFF;
}

/* ==========================================================================
   4. Hero — two-column split layout
   ========================================================================== */

.hero--split {
	background:    #FFFFFF;
	padding:       var(--space-16) 0 var(--space-20);
	text-align:    left;
	overflow:      hidden;
}

/* Kill the radial-gradient pseudo */
.hero--split::before {
	display: none;
}

/* The grid — 55% content / 45% image */
.hero--split .hero__grid {
	display:               grid;
	grid-template-columns: 1fr 1fr;
	gap:                   var(--space-12);
	align-items:           center;
}

/* Content side */
.hero--split .hero__content {
	max-width: none;
	margin:    0;
	text-align: left;
	position:   relative;
	z-index:    1;
}

.hero--split .hero__eyebrow {
	display:        flex;
	align-items:    center;
	gap:            0.5rem;
	font-family:    var(--font-body);
	font-size:      0.8125rem;
	font-weight:    600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color:          #A4753B;
	opacity:        1;
	margin-bottom:  var(--space-4);
}

.hero--split .hero__title {
	font-family:    Georgia, serif;
	font-size:      clamp(2.5rem, 4.5vw, 4rem);
	font-weight:    400;
	line-height:    1.1;
	letter-spacing: -0.01em;
	color:          #24383A;
	max-width:      15ch;
	margin-bottom:  var(--space-5);
	text-align:     left;
}

.hero--split .hero__subtitle {
	font-family:    var(--font-body);
	font-size:      1.0625rem;
	line-height:    1.75;
	color:          #526866;
	max-width:      44ch;
	margin:         0 0 var(--space-7);
	opacity:        1;
}

.hero--split .hero__actions {
	display:         flex;
	align-items:     center;
	gap:             var(--space-5);
	justify-content: flex-start;
	flex-wrap:       wrap;
	margin-bottom:   var(--space-3);
}

/* Primary CTA — dark teal solid */
.hero--split .hero__actions .btn-gold {
	background:    #173E42;
	border-color:  #173E42;
	color:         #FFFFFF;
	font-family:   var(--font-body);
	font-weight:   600;
	letter-spacing: 0.01em;
	border-radius: 6px;
	padding:       15px 32px;
}

.hero--split .hero__actions .btn-gold:hover {
	background:    #0f2a2d;
	border-color:  #0f2a2d;
	color:         #FFFFFF;
	transform:     translateY(-1px);
	box-shadow:    var(--shadow-md);
}

/* Secondary — quiet text link */
.hero__secondary-link {
	display:          inline-flex;
	align-items:      center;
	gap:              0.3em;
	font-family:      var(--font-body);
	font-size:        0.9375rem;
	font-weight:      500;
	color:            #24383A;
	text-decoration:  underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(36, 56, 58, 0.30);
	background:       none;
	border:           none;
	padding:          0;
	cursor:           pointer;
	transition: color 150ms, text-decoration-color 150ms;
}

.hero__secondary-link:hover {
	color:                 #173E42;
	text-decoration-color: #173E42;
}

/* Short disclosure below CTAs */
.hero__disclosure {
	margin-top:  var(--space-3);
	font-size:   0.7625rem;
	line-height: 1.65;
	color:       #7A9294;
}

.hero__disclosure a {
	color:           #7A9294;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Hide the fake overlay elements */
.hero__question-card,
.hero__reader-card,
.hero__metric {
	display: none !important;
}

/* Image column */
.hero--split .hero__visual {
	background:    transparent;
	border:        none;
	border-radius: var(--radius-xl);
	overflow:      hidden;
	aspect-ratio:  1 / 1;
	position:      relative;
}

.hero--split .hero__visual > img {
	width:         100%;
	height:        100%;
	object-fit:    cover;
	border-radius: var(--radius-xl);
	filter:        none;
}

/* Mobile: stack content / image */
@media (max-width: 1023px) {
	.hero--split .hero__grid {
		grid-template-columns: 1fr;
		gap:                   var(--space-8);
	}

	.hero--split .hero__visual {
		aspect-ratio: 4 / 3;
	}

	.hero--split .hero__title {
		font-size: clamp(2.2rem, 8vw, 3rem);
		max-width:  100%;
	}

	.hero--split .hero__subtitle {
		max-width: 100%;
	}

	.hero--split .hero__actions {
		flex-direction: column;
		align-items:    stretch;
	}

	.hero--split .hero__actions .btn-gold {
		text-align: center;
	}
}

/* ==========================================================================
   5. Buttons (global overrides)
   ========================================================================== */

/* Primary / gold → solid teal everywhere */
.btn-gold {
	background:   #173E42;
	border-color: #173E42;
	color:        #FFFFFF;
	font-family:  var(--font-body);
}

.btn-gold:hover {
	background:   #0f2a2d;
	border-color: #0f2a2d;
	color:        #FFFFFF;
}

/* Outline → teal border */
.btn-outline {
	background-color: transparent;
	border-color:     #173E42;
	color:            #173E42;
}

.btn-outline:hover {
	background-color: #173E42;
	border-color:     #173E42;
	color:            #FFFFFF;
}

/* Primary */
.btn-primary {
	background-color: #173E42;
	border-color:     #173E42;
	color:            #FFFFFF;
}

.btn-primary:hover {
	background-color: #0f2a2d;
	border-color:     #0f2a2d;
	color:            #FFFFFF;
}

/* Focus ring — teal */
.btn:focus-visible {
	box-shadow: 0 0 0 3px rgba(23, 62, 66, 0.30);
}

/* ==========================================================================
   6. Sections
   ========================================================================== */

.section--bg-soft      { background-color: #F2F6F5; }
.section--bg-secondary { background-color: #F2F6F5; }
.section--bg-white     { background-color: #FFFFFF; }
.section--bg-gradient  { background: linear-gradient(135deg, #FFFFFF 0%, #F2F6F5 100%); }

/* Section headers */
.section-header__title {
	font-family: Georgia, serif;
	font-weight: 400;
	color: #24383A;
}

.section-header__subtitle {
	color: #526866;
}

/* ==========================================================================
   7. Interior page hero
   ========================================================================== */

.page-hero {
	background: linear-gradient(135deg, #FFFFFF 0%, #F2F6F5 100%);
}

.page-hero__title {
	font-family: Georgia, serif;
	font-weight: 400;
	color: #24383A;
}

/* ==========================================================================
   8. Cards — new palette
   ========================================================================== */

.card,
.reader-card,
.topic-card,
.blog-card,
.home-guide__copy,
.home-guide__note,
.home-guide__comparison,
.home-guide__card {
	border-color: #C8D8D5;
}

.reader-card__initials {
	background:   #F2F6F5;
	border-color: #2C6B73;
	color:        #173E42;
}

.reader-card__title {
	color: #2C6B73;
}

.topic-card__icon {
	background: #F2F6F5;
	color:      #173E42;
}

.tips-box {
	background:   #F2F6F5;
	border-left-color: #A4753B;
}

.tips-box__title {
	color: #173E42;
}

.tips-box__list li::before {
	color: #A4753B;
}

.standards-list__icon {
	background: #F2F6F5;
	color:      #173E42;
}

/* ==========================================================================
   9. Testimonials
   ========================================================================== */

.testimonial-card {
	background:   #173E42;
	border-color: #173E42;
	border-radius: 20px;
	color:        #F2F6F5;
}

.testimonial-card__label {
	color:          #7A9294;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size:      0.7rem;
	font-weight:    700;
}

.testimonial-card__quote,
.testimonial-card__name,
.testimonial-card__subtitle {
	color: inherit;
}

/* Avatar initials */
.testimonial-card__avatar {
	background: rgba(255, 255, 255, 0.12);
	color:      #F2F6F5;
}

/* ==========================================================================
   10. CTA Section
   ========================================================================== */

.cta-section {
	background: linear-gradient(135deg, #173E42 0%, #0d2528 100%);
	color:      #FFFFFF;
}

.cta-section__title,
.cta-section__subtitle,
.cta-section__note {
	color: #FFFFFF;
}

.cta-section .btn-white {
	background-color: #FFFFFF;
	color:            #173E42;
	border-color:     #FFFFFF;
}

.cta-section .btn-white:hover {
	background-color: #F2F6F5;
	color:            #173E42;
}

/* ==========================================================================
   11. Footer
   ========================================================================== */

.site-footer {
	background:  #F2F6F5;
	border-top:  1px solid #C8D8D5;
	color:       #526866;
}

.site-footer a {
	color: #526866;
}

.site-footer a:hover {
	color: #173E42;
}

.footer-col__logo {
	font-family: Georgia, serif;
	font-weight: 400;
	color:       #173E42;
}

.footer-col__logo svg {
	color: #173E42;
}

.footer-col__title {
	font-family: Georgia, serif;
	font-weight: 400;
	color:       #24383A;
}

.footer-col__tagline {
	color: #526866;
}

.footer-col__links a {
	color: #526866;
}

.footer-bottom {
	border-top-color: #C8D8D5;
}

.footer-bottom__copyright,
.footer-bottom__links a {
	color: #7A9294;
}

.footer-bottom__links a:hover {
	color: #173E42;
}

/* CTA button in footer */
.site-footer .btn-gold {
	background:   #173E42;
	border-color: #173E42;
	color:        #FFFFFF;
}

.site-footer .btn-gold:hover {
	background:   #0f2a2d;
	border-color: #0f2a2d;
}

/* ==========================================================================
   12. Blog cards / post meta
   ========================================================================== */

.post-header__category {
	color: #2C6B73;
}

.post-header {
	background: linear-gradient(135deg, #FFFFFF 0%, #F2F6F5 100%);
}

/* ==========================================================================
   13. Trust bar (if present)
   ========================================================================== */

.trust-bar {
	background:  #F2F6F5;
	border-top:  1px solid #C8D8D5;
	border-bottom: 1px solid #C8D8D5;
}

/* ==========================================================================
   14. How it works steps
   ========================================================================== */

.step-card__number {
	background:   #173E42;
	color:        #FFFFFF;
	border-color: #173E42;
}

/* Connector line */
.steps-grid::before {
	background: #C8D8D5;
}

/* ==========================================================================
   15. Focus / skip link
   ========================================================================== */

.skip-link {
	background: #173E42;
	color:      #FFFFFF;
}

a:focus-visible {
	outline-color: #2C6B73;
}

/* ==========================================================================
   16. Form elements (submit page)
   ========================================================================== */

.submit-form-wrapper {
	border-color: #C8D8D5;
}

.submit-form-wrapper .form-intro {
	background: #F2F6F5;
	color:      #526866;
}

/* ==========================================================================
   17. Horizon mark (eyebrow decoration) — teal version
   ========================================================================== */

.horizon-mark {
	border-bottom-color: currentColor;
}

.horizon-mark::before {
	border-color: currentColor;
}

/* ==========================================================================
   18. Reduced-motion safety net
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration:        0.01ms !important;
		animation-iteration-count: 1      !important;
		transition-duration:       0.01ms !important;
		scroll-behavior:           auto   !important;
	}
}
