/* =========================================================
   Ayesha Golwala — Online Therapy & Support
   Editorial · Sage · Warm · Mobile-first
   ========================================================= */

/* --- Design tokens --- */
:root {
  /* Palette — refined for warmth and depth */
  --cream: #f4ede0;
  --cream-soft: #faf5ea;
  --cream-warm: #ede4d0;
  --sage-deep: #243d33;
  --sage: #3f6452;
  --sage-soft: #b3c5b8;
  --sage-tint: #dee7d3;
  --terracotta: #c25a3d;
  --terracotta-deep: #a44a30;
  --terracotta-soft: #e7ae93;
  --gold: #c89968;
  --ink: #1a2520;
  --muted: #556760;
  --line: rgba(26, 37, 32, 0.12);
  --line-warm: rgba(194, 90, 61, 0.18);
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(36, 61, 51, 0.06);
  --shadow-md: 0 12px 28px rgba(36, 61, 51, 0.10);
  --shadow-lg: 0 30px 60px -20px rgba(36, 61, 51, 0.22);

  /* Type */
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding-left: 0; list-style: none; margin: 0; }

/* --- Skip link --- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--sage-deep); color: white;
  padding: 10px 16px; z-index: 9999; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Typography
   ========================================================= */
.display {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--sage-deep);
  margin: 0 0 24px;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
}
.display-sm {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--sage-deep);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 20px;
}
.eyebrow,
.section-eyebrow {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
}
.section-eyebrow.contrast { color: var(--terracotta-soft); }
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 0 32px;
}
.section-lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage-deep);
  color: var(--cream-soft);
  box-shadow: 0 6px 20px rgba(47, 74, 62, 0.18);
}
.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(198, 106, 74, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--sage-deep);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--sage-deep);
  background: var(--sage-tint);
}
.btn.lg { padding: 18px 34px; font-size: 16px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 232, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sage-deep);
}
.brand-mark { display: inline-flex; color: var(--sage-deep); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-tagline {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.primary-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.primary-nav a:hover { color: var(--terracotta); }
.primary-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}
.primary-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--sage-deep);
  color: var(--cream-soft) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  font-weight: 500;
}
.nav-cta:hover {
  background: var(--terracotta);
  color: var(--cream-soft) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--sage-deep);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(184, 200, 188, 0.4), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(231, 178, 155, 0.3), transparent 50%),
    var(--cream);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .leaf {
  position: absolute;
  color: var(--sage-soft);
}
.hero-bg .leaf-1 {
  width: 320px; top: -60px; right: -40px;
  transform: rotate(35deg);
  opacity: 0.55;
  animation: drift 16s ease-in-out infinite;
}
.hero-bg .leaf-2 {
  width: 240px; bottom: -80px; left: -60px;
  transform: rotate(-25deg);
  opacity: 0.45;
  color: var(--terracotta-soft);
  animation: drift 18s ease-in-out infinite reverse;
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(35deg); }
  50% { transform: translateY(-14px) rotate(38deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy { animation: fadeUp 0.9s var(--ease) both; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  flex-wrap: wrap;
}
.hero-meta li {
  display: flex; flex-direction: column;
  font-size: 13px;
  color: var(--muted);
}
.hero-meta strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--sage-deep);
  letter-spacing: -0.01em;
}
.hero-meta span { letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; }

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeUp 1.1s 0.15s var(--ease) both;
}
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(47, 74, 62, 0.25),
    0 18px 36px -18px rgba(47, 74, 62, 0.18);
  aspect-ratio: 4 / 5;
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.96);
}
.frame-tag {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(251, 247, 239, 0.92);
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-quote {
  position: absolute;
  right: -10px; bottom: -20px;
  background: var(--sage-deep);
  color: var(--cream-soft);
  padding: 22px 26px 22px 50px;
  border-radius: var(--radius);
  max-width: 230px;
  box-shadow: 0 18px 36px rgba(47, 74, 62, 0.22);
}
.hero-quote .q-mark {
  position: absolute;
  top: 6px; left: 18px;
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  color: var(--terracotta-soft);
  font-style: italic;
}
.hero-quote p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Trust strip
   ========================================================= */
.trust-strip {
  background: var(--sage-deep);
  color: var(--cream-soft);
  padding: 18px 0;
}
.trust-row {
  display: flex; align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.trust-row span[aria-hidden] { opacity: 0.4; }

/* =========================================================
   Sections (general)
   ========================================================= */
.section { padding: 110px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head-center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-head-center .section-eyebrow { justify-content: center; }

/* =========================================================
   About
   ========================================================= */
.about { background: var(--cream-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: saturate(0.9);
}
.credential-card {
  position: absolute;
  bottom: -40px; right: -30px;
  background: var(--cream);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: 0 22px 44px rgba(47, 74, 62, 0.15);
  max-width: 240px;
  border: 1px solid var(--line);
}
.cred-line {
  width: 32px; height: 2px;
  background: var(--terracotta);
  margin-bottom: 14px;
}
.cred-label {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  margin: 0 0 6px;
}
.cred-value {
  font-family: var(--display);
  font-size: 19px;
  color: var(--sage-deep);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.cred-sub {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.about-copy p { color: var(--muted); margin: 0 0 18px; }
.about-copy p:last-child {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--sage-deep);
  margin-top: 28px;
}

/* =========================================================
   Approach
   ========================================================= */
.approach {
  background: var(--sage-tint);
  position: relative;
}
.approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(47, 74, 62, 0.08) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.7;
}
.approach > .container { position: relative; z-index: 1; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.approach-card {
  background: var(--cream-soft);
  padding: 36px 28px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 74, 62, 0.08);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(47, 74, 62, 0.12);
}
.card-num {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.approach-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--sage-deep);
  margin: 0 0 12px;
  line-height: 1.2;
}
.approach-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* =========================================================
   Support areas
   ========================================================= */
.support { background: var(--cream); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
  margin-top: 28px;
}
.support-item {
  text-align: left;
  padding: 8px 4px;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.support-item:hover { transform: translateY(-3px); }
.support-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-deep);
  margin-bottom: 18px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.support-icon svg { width: 28px; height: 28px; }
.support-item:hover .support-icon {
  background: var(--terracotta);
  color: var(--cream);
}
.support-item h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--sage-deep);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.support-item p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  font-style: italic;
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.5;
}

/* =========================================================
   Sessions
   ========================================================= */
.sessions {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sessions-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.info-list {
  border-top: 1px solid var(--line);
  margin: 28px 0 28px;
}
.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.info-list span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.info-list strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--sage-deep);
  text-align: right;
}
.footnote {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.6;
}

.steps { margin-top: 28px; }
.steps li {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.steps li:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--sage-soft);
  color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
}
.steps li strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--sage-deep);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.steps li p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* =========================================================
   Contact
   ========================================================= */
.contact {
  background: var(--cream);
  padding: 90px 0 120px;
}
.contact-card {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(231, 178, 155, 0.18), transparent 60%),
    var(--sage-deep);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  color: var(--cream-soft);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(231, 178, 155, 0.08);
  pointer-events: none;
}
.contact-card .display { color: var(--cream-soft); }
.contact-card .display em { color: var(--terracotta-soft); }
.contact-copy p { color: rgba(246, 241, 232, 0.82); margin: 0; }
.contact-actions { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; position: relative; z-index: 1; }
.contact-actions .btn-primary {
  background: var(--terracotta);
  color: var(--cream-soft);
}
.contact-actions .btn-primary:hover {
  background: var(--cream-soft);
  color: var(--sage-deep);
}
.contact-meta {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
  color: rgba(246, 241, 232, 0.85);
  margin: 0;
}
.contact-meta a { text-decoration: underline; text-underline-offset: 3px; }
.contact-meta a:hover { color: var(--terracotta-soft); }
.emergency {
  font-size: 13px;
  color: rgba(246, 241, 232, 0.7);
  border-left: 2px solid var(--terracotta-soft);
  padding-left: 14px;
  margin: 0;
  line-height: 1.5;
}
.emergency strong { color: var(--cream-soft); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  color: var(--muted);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.footer-brand { color: var(--sage-deep); }
.footer-brand .brand-mark { color: var(--sage-deep); margin-bottom: 12px; display: inline-flex; }
.footer-name {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--sage-deep);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.footer-sub { font-size: 13px; margin: 0; line-height: 1.5; }

.footer-nav {
  display: flex; flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--terracotta); }

.footer-meta { font-size: 13px; line-height: 1.55; }
.footer-meta p { margin: 0 0 10px; }

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 60px 0 80px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .about-grid,
  .sessions-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 480px; margin: 0 auto; width: 100%; }
  .credential-card { right: 12px; bottom: -28px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card {
    grid-template-columns: 1fr;
    padding: 56px 36px;
    gap: 36px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 80px 0; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--cream-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(47, 74, 62, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .primary-nav a:last-child { border-bottom: none; }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .approach-grid,
  .support-grid { grid-template-columns: 1fr; gap: 18px; }
  .support-grid { gap: 28px; }

  .hero { padding: 48px 0 70px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-meta { gap: 18px; }
  .hero-meta li { flex: 1 1 30%; }
  .hero-quote {
    position: relative;
    right: auto; bottom: auto;
    margin: 22px auto 0;
    max-width: 100%;
  }

  .credential-card {
    position: relative;
    bottom: auto; right: auto;
    margin: -20px auto 0;
    max-width: 90%;
  }

  .contact-card { padding: 44px 24px; }
  .info-list li { flex-direction: column; gap: 4px; align-items: flex-start; }
  .info-list strong { text-align: left; }

  .brand-tagline { display: none; }
  .trust-row { gap: 12px; font-size: 12px; }
  .trust-row span[aria-hidden] { display: none; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   MODERN ENHANCEMENTS — added in iteration
   ========================================================= */

/* --- Scroll progress indicator --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--sage) 0%, var(--terracotta) 100%);
  z-index: 1000;
  transition: width 0.1s linear;
  will-change: width;
}

/* --- Timezone strip --- */
.tz-strip {
  background: var(--cream-soft);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.tz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}
.tz-cell {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.4s var(--ease);
}
.tz-cell:last-child { border-right: none; }
.tz-cell:hover { background: var(--cream-soft); }
.tz-cell--accent {
  background: var(--sage-deep);
  color: var(--cream-soft);
}
.tz-cell--accent:hover { background: var(--sage-deep); }
.tz-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tz-cell--accent .tz-label { color: var(--terracotta-soft); }
.tz-clock {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.tz-time {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  color: var(--sage-deep);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.tz-cell--accent .tz-time { color: var(--cream-soft); }
.tz-meridian {
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.tz-cell--accent .tz-meridian { color: var(--terracotta-soft); }
.tz-zone {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.tz-cell--accent .tz-zone { color: rgba(244, 237, 224, 0.7); }
.tz-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6dd49b;
  box-shadow: 0 0 0 0 rgba(109, 212, 155, 0.7);
  animation: tz-pulse 2.4s infinite var(--ease);
}
@keyframes tz-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(109, 212, 155, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(109, 212, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(109, 212, 155, 0); }
}
@media (max-width: 720px) {
  .tz-grid { grid-template-columns: 1fr; }
  .tz-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 16px 22px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .tz-cell:last-child { border-bottom: none; }
  .tz-clock { order: 3; }
  .tz-zone { display: none; }
}

/* --- Counter animation: tabular nums for stable width --- */
.hero-meta strong[data-counter] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* --- Enhanced approach cards: animated number reveal --- */
.approach-card {
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
}
.approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.approach-card:hover::before { transform: scaleX(1); }
.approach-card:hover .card-num {
  color: var(--terracotta-deep);
  transform: translateX(4px);
}
.card-num {
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  font-size: 15px;
}

/* --- Support icons: SVG path drawing animation --- */
.support-icon svg path,
.support-icon svg circle {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.4s var(--ease-out);
}
.support-icon svg circle[fill="currentColor"] {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out) 0.8s;
}
.support-item.is-visible .support-icon svg path,
.support-item.is-visible .support-icon svg circle {
  stroke-dashoffset: 0;
}
.support-item.is-visible .support-icon svg circle[fill="currentColor"] {
  opacity: 1;
}
.support-icon {
  position: relative;
  transition: all 0.5s var(--ease);
}
.support-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed var(--sage-soft);
  opacity: 0;
  transform: scale(0.8) rotate(0deg);
  transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
}
.support-item:hover .support-icon::after {
  opacity: 0.6;
  transform: scale(1.15) rotate(180deg);
}

/* --- Step numbers: subtle hover lift --- */
.steps li {
  transition: transform 0.3s var(--ease);
}
.steps li:hover {
  transform: translateX(4px);
}
.steps li:hover .step-num {
  background: var(--sage-deep);
  color: var(--cream-soft);
  border-color: var(--sage-deep);
}
.step-num {
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

/* --- Hero leaves: enhanced parallax-ready --- */
.hero-bg .leaf {
  will-change: transform;
}

/* --- Section heads: refined animation --- */
.section-head .display em {
  background: linear-gradient(120deg, var(--terracotta) 0%, var(--terracotta) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.display em {
  background: linear-gradient(120deg, var(--terracotta) 0%, var(--terracotta) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Improved focus states for accessibility --- */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

/* --- Refined buttons: subtle shimmer on hover --- */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(255,255,255,0.15) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
  z-index: -1;
}
.btn-primary:hover::after {
  transform: translateX(100%);
}

/* --- Image: subtle ken-burns effect on hero --- */
.hero-image-frame img {
  transition: transform 8s var(--ease-out);
}
.hero-image-frame:hover img {
  transform: scale(1.04);
}

/* --- About image: gentle reveal --- */
.about-image img {
  transition: transform 1s var(--ease-out);
}
.about-image:hover img {
  transform: scale(1.02);
}

/* --- Contact card: refined background --- */
.contact-card {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(231, 174, 147, 0.22), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(200, 153, 104, 0.12), transparent 50%),
    var(--sage-deep);
}

/* --- Reduced motion overrides --- */
@media (prefers-reduced-motion: reduce) {
  .tz-pulse { animation: none; }
  .support-icon svg path,
  .support-icon svg circle {
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
  }
  .support-icon svg circle[fill="currentColor"] { opacity: 1; }
  .scroll-progress { display: none; }
}

