/* =============================================
   THE FIFTH SEASON COLLECTIVE
   Design tokens: Deep slate + aged linen + sage
   Type: Cormorant Garant (display) + DM Sans (body)
   ============================================= */

:root {
  --bg:        #1A1C1E;
  --bg-deep:   #0F1011;
  --bg-mid:    #22252A;
  --linen:     #E8E0D4;
  --linen-dim: #C4B8A8;
  --sage:      #8A9E8C;
  --sage-light:#A8BBA9;
  --white:     #F5F2EE;

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--linen);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 100;
  background: rgba(26, 28, 30, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 224, 212, 0.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--linen);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--linen-dim);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--linen); }

.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--sage) !important;
  color: var(--sage) !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--sage) !important;
  color: var(--bg) !important;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--sage);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--linen-dim);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(232, 224, 212, 0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--linen-dim);
  color: var(--linen);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 2.5rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: fixed;
  top: 0; right: 0;
  width: 40vw;
  height: 100vh;
  background: radial-gradient(ellipse at 80% 50%, rgba(138, 158, 140, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--linen);
  margin-bottom: 2rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--linen-dim);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--linen-dim);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stat-block {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(232, 224, 212, 0.12);
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--linen-dim);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background: rgba(232, 224, 212, 0.2);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--sage);
  overflow: hidden;
  padding: 0.85rem 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 0 1.5rem;
}

.ticker-dot {
  color: rgba(26, 28, 30, 0.4) !important;
  padding: 0 !important;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION COMMON ── */
.section-header {
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--linen);
}

.section-sub {
  color: var(--linen-dim);
  margin-top: 0.75rem;
  font-size: 1rem;
}

/* ── SERVICES ── */
.services {
  padding: 8rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.service-card {
  background: var(--bg-mid);
  padding: 3.5rem;
  border: 1px solid rgba(232, 224, 212, 0.06);
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: rgba(138, 158, 140, 0.25);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--linen);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--linen-dim);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-list li {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--linen-dim);
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--bg-deep);
  padding: 8rem 0;
}

.philosophy-inner {
  max-width: 760px;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--linen);
  line-height: 1.35;
  margin-bottom: 0;
  border-left: 2px solid var(--sage);
  padding-left: 2.5rem;
}

.philosophy-cite {
  display: block;
  margin-top: 1.25rem;
  padding-left: 2.5rem;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.philosophy-body {
  color: var(--linen-dim);
  font-size: 1.05rem;
  line-height: 1.8;
  padding-left: 0;
  border-left: none;
  margin-top: 2.5rem;
}

/* ── PROCESS ── */
.process {
  padding: 8rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
}

.process-step { padding: 0 1rem; }

.step-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.process-step h4 {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--linen);
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--linen-dim);
  font-size: 0.95rem;
  line-height: 1.75;
}

.process-arrow {
  font-size: 1.5rem;
  color: rgba(138, 158, 140, 0.4);
  margin-top: 3.5rem;
  padding: 0 0.5rem;
}

/* ── INVESTMENT ── */
.investment {
  background: var(--bg-mid);
  padding: 8rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.price-card {
  border: 1px solid rgba(232, 224, 212, 0.1);
  padding: 2.5rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg);
  transition: border-color 0.3s;
}

.price-card:hover { border-color: rgba(138, 158, 140, 0.3); }

.price-card--featured {
  border-color: var(--sage);
  position: relative;
}

.price-card--featured::before {
  content: 'Most popular';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--bg);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.price-card h4 {
  font-size: 0.8rem;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--linen-dim);
  font-weight: 400;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
}

.price-card p {
  color: var(--linen-dim);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}

.pricing-note {
  text-align: center;
  color: var(--linen-dim);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 8rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.testimonial {
  border-top: 1px solid rgba(232, 224, 212, 0.15);
  padding-top: 2rem;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--linen);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ── BOOK SECTION ── */
.book-section {
  background: var(--bg-deep);
  padding: 8rem 0;
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.book-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--linen);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.book-copy p {
  color: var(--linen-dim);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.book-contact { font-size: 0.9rem; }

.book-contact a {
  color: var(--sage);
  border-bottom: 1px solid rgba(138, 158, 140, 0.3);
  transition: border-color 0.2s;
}

.book-contact a:hover { border-color: var(--sage); }

.book-embed {
  background: var(--bg-mid);
  border: 1px solid rgba(232, 224, 212, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.calendly-mock {
  padding: 3rem 2.5rem;
  text-align: center;
}

.calendly-mock-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--linen);
  margin-bottom: 0.75rem;
}

.calendly-mock-sub {
  color: var(--linen-dim);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ── PAYMENT ── */
.payment-section {
  padding: 8rem 0;
  background: var(--bg);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.payment-card {
  border: 1px solid rgba(232, 224, 212, 0.1);
  padding: 2.5rem;
  border-radius: 2px;
  background: var(--bg-mid);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  transition: border-color 0.3s;
}

.payment-card:hover { border-color: rgba(138, 158, 140, 0.3); }

.payment-card h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--linen-dim);
  font-weight: 400;
}

.payment-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.payment-btn { margin-top: auto; }

.payment-note {
  text-align: center;
  color: var(--linen-dim);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(232, 224, 212, 0.08);
  padding: 4rem 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--linen);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--linen-dim);
  margin-bottom: 1rem;
  font-style: italic;
  font-family: var(--font-display);
}

.footer-ig {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.2s;
}

.footer-ig:hover { color: var(--sage-light); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--linen-dim);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--linen); }

.footer-bottom {
  border-top: 1px solid rgba(232, 224, 212, 0.06);
  padding: 1.25rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(196, 184, 168, 0.4);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .payment-options { grid-template-columns: 1fr; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-arrow { display: none; }

  .book-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links { align-items: flex-start; }

  .nav-links a:not(.nav-cta) { display: none; }
}

@media (max-width: 600px) {
  .hero { padding-top: calc(var(--nav-h) + 2rem); }
  .hero-stat-block { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 3rem; height: 1px; }
  .service-card { padding: 2rem; }
  .hero-headline { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── BEFORE / AFTER ── */
.beforeafter {
  padding: 8rem 0;
  background: var(--bg-mid);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 700px;
}

.ba-item img {
  width: 100%;
  display: block;
  border-radius: 2px;
  border: 1px solid rgba(232, 224, 212, 0.06);
}

.ba-caption {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}

@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; }
}



/* ── MOBILE IMPROVEMENTS ── */
@media (max-width: 600px) {

  /* Sections — tighter padding on phone */
  .services, .beforeafter, .philosophy,
  .process, .investment, .testimonials,
  .book-section, .payment-section {
    padding: 4rem 0;
  }

  /* Container — more breathing room on edges */
  .container { padding: 0 1.25rem; }

  /* Hero */
  .hero { padding: 6rem 1.25rem 3rem; }
  .hero-eyebrow { font-size: 0.65rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }

  /* Ticker — slower on small screen */
  .ticker-track { animation-duration: 20s; }
  .ticker-track span { font-size: 0.65rem; padding: 0 1rem; }

  /* Philosophy */
  .philosophy-quote { font-size: 1.5rem; }
  .philosophy-cite { font-size: 0.7rem; }

  /* Process */
  .process-step { padding: 0; }

  /* Pricing */
  .price-card { padding: 1.75rem; }
  .price-amount { font-size: 2rem; }

  /* Testimonials */
  .testimonials-grid { gap: 2rem; }

  /* Book section */
  .book-copy h2 { font-size: 2rem; }
  .calendly-inline-widget { height: 500px !important; }

  /* Payment */
  .payment-card { padding: 1.75rem; }

  /* Nav — make CTA smaller */
  .nav { padding: 0 1.25rem; }
  .nav-logo { font-size: 0.9rem; }
  .nav-cta { padding: 0.4rem 0.85rem; font-size: 0.7rem; }

  /* Footer */
  .footer { padding: 3rem 0 0; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
}
