/* ============================================================
   INDUS SUNFIELD — Design System
   Editorial, warm, India-inspired clean-energy aesthetic
   ============================================================ */

:root {
  /* Palette — light, warm, India-inspired */
  --cream: #FAF6EC;
  --cream-deep: #F2EBD8;
  --paper: #FFFCF4;
  --ink: #1A2238;          /* deep indigo, near-black */
  --ink-soft: #2E3A57;
  --muted: #6B6F7B;
  --line: #E6DFC9;
  --saffron: #E07B22;       /* warm primary accent */
  --saffron-deep: #B85F12;
  --terracotta: #C44A2E;
  --leaf: #4F7A4A;          /* earthy renewable green */
  --leaf-soft: #7CA176;
  --sky: #5B8AA6;
  --gold: #D9A441;

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --max: 1280px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 4px;
  --radius-lg: 16px;

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

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(224, 123, 34, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(79, 122, 74, 0.04) 0%, transparent 45%);
}

/* Subtle paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "SOFT" 30, "WONK" 0;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: 0; }

p { color: var(--ink-soft); max-width: 64ch; }

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

.italic { font-style: italic; }
.serif  { font-family: var(--font-display); }

/* Eyebrow / micro-label */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--saffron-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--saffron);
}

/* Container */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--saffron);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-cta:hover {
  background: var(--saffron);
  transform: translateY(-1px);
}
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
  .menu-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: 0.3s; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 1.5rem var(--gutter);
    border-bottom: 1px solid var(--line);
    gap: 1.2rem;
  }
  .nav.open .nav-cta {
    display: inline-block;
    margin-top: 1rem;
    align-self: flex-start;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(184, 95, 18, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn .arrow {
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: end;
}
.hero h1 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.hero h1 .alt {
  font-style: italic;
  font-weight: 300;
  color: var(--saffron-deep);
}
.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 2.2rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.hero-stats::before {
  content: '';
  position: absolute;
  top: -1px; left: 2rem; right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--leaf));
  border-radius: 0 0 4px 4px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.stat-num .unit { font-size: 1.2rem; color: var(--saffron); margin-left: 2px; }
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Decorative sun */
.hero-sun {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.18) 0%, rgba(224, 123, 34, 0.06) 50%, transparent 70%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

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

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 720px; }
.section-header h2 { margin-top: 1rem; }
.section-header p { font-size: 1.1rem; margin-top: 1.2rem; }

.section-alt { background: var(--paper); }
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: rgba(250, 246, 236, 0.78); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before { background: var(--gold); }

/* ============================================================
   STAT STRIP
   ============================================================ */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
  background: var(--cream-deep);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.strip-item .stat-num { font-size: 2.2rem; }
@media (max-width: 720px) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--paper);
  padding: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--saffron);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--saffron);
  box-shadow: 0 24px 48px -24px rgba(26, 34, 56, 0.15);
}
.service-card:hover::before {
  transform: scaleY(1);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-deep);
  border-radius: 12px;
  margin-bottom: 1.4rem;
  color: var(--saffron-deep);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 1.2rem; }
.service-card .more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--saffron-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============================================================
   TWO-COLUMN ABOUT / FEATURE
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
}
.split-img svg { width: 100%; height: 100%; display: block; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 5%;
  right: 5%;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--saffron) 0 8px, transparent 8px 14px);
}
.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.process-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--saffron-deep);
  position: relative;
  z-index: 1;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; margin: 0 auto; }

@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process::before { display: none; }
}
@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
}

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-block {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 0;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--ink);
  position: relative;
}
.quote-block blockquote::before,
.quote-block blockquote::after {
  font-family: var(--font-display);
  color: var(--saffron);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.4em;
}
.quote-block blockquote::before { content: '“'; margin-right: 0.2em; }
.quote-block blockquote::after  { content: '”'; margin-left: 0.1em; }
.quote-block cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================================
   IMPACT / METRICS
   ============================================================ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.impact-item {
  background: var(--paper);
  padding: 2.5rem 2rem;
  text-align: left;
}
.impact-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1rem;
}
.impact-num .unit { color: var(--saffron); }
.impact-item h4 { color: var(--ink); margin-bottom: 0.5rem; font-size: 1rem; }
.impact-item p { font-size: 0.9rem; }
@media (max-width: 720px) { .impact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224, 123, 34, 0.25), transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--cream); max-width: 18ch; }
.cta-banner h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.cta-banner p { color: rgba(250,246,236,0.78); margin-top: 1.2rem; font-size: 1.05rem; }
.cta-banner-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--saffron); color: var(--cream); }
.cta-banner .btn-primary:hover { background: var(--paper); color: var(--ink); }
.cta-banner .btn-ghost { color: var(--cream); border-color: var(--cream); }
.cta-banner .btn-ghost:hover { background: var(--cream); color: var(--ink); }
@media (max-width: 880px) { .cta-banner-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--cream-deep);
  padding: 4.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.foot-brand p {
  font-size: 0.92rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 38ch;
}
.foot-soc { display: flex; gap: 0.7rem; }
.foot-soc a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all 0.25s var(--ease);
}
.foot-soc a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.foot-soc svg { width: 16px; height: 16px; }
.foot-col h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.foot-col a { color: var(--ink-soft); transition: color 0.2s; }
.foot-col a:hover { color: var(--saffron-deep); }
.foot-col p { font-size: 0.92rem; margin-bottom: 0.5rem; }
.foot-bot {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.foot-bot a:hover { color: var(--ink); }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.page-head .crumbs {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.page-head .crumbs a:hover { color: var(--saffron-deep); }
.page-head .crumbs span { color: var(--ink); }
.page-head h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 18ch;
  margin-bottom: 1.2rem;
}
.page-head p { font-size: 1.1rem; max-width: 56ch; }

/* ============================================================
   FOUNDER / TEAM
   ============================================================ */
.founder-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}
.founder-card .role {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.founder-card h3 { font-size: 1.7rem; margin-bottom: 1.2rem; }
.founder-portrait {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-deep), var(--paper));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--saffron-deep);
  margin-bottom: 1.5rem;
}
.founder-card ul { list-style: none; margin-top: 1.2rem; }
.founder-card li {
  display: flex;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-top: 1px dashed var(--line);
  font-size: 0.93rem;
  align-items: flex-start;
}
.founder-card li:first-child { border-top: none; }
.founder-card li strong { color: var(--ink); display: block; min-width: 7rem; }

/* ============================================================
   PROJECT / CASE GRID
   ============================================================ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.case {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.case:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(26,34,56,0.15); }
.case-img {
  aspect-ratio: 16/10;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.case-img svg { width: 100%; height: 100%; }
.case-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}
.case-body { padding: 1.6rem; }
.case-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.case-body p { font-size: 0.92rem; }
.case-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}
.case-meta div span {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.case-meta div strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info {
  background: var(--ink);
  color: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}
.contact-info h3 { color: var(--cream); margin-bottom: 1.5rem; }
.contact-info p { color: rgba(250,246,236,0.75); margin-bottom: 2rem; }
.contact-block {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(250,246,236,0.12);
}
.contact-block:last-of-type { border-bottom: 1px solid rgba(250,246,236,0.12); }
.contact-block-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(250,246,236,0.08);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-block-icon svg { width: 16px; height: 16px; }
.contact-block-text small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-block-text strong, .contact-block-text a {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 500;
}

form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 720px) { .form-row { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(224, 123, 34, 0.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-msg {
  padding: 0.9rem 1rem;
  background: rgba(79, 122, 74, 0.12);
  color: var(--leaf);
  border: 1px solid var(--leaf-soft);
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form-msg.show { display: block; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--saffron);
  transition: transform 0.3s;
  font-weight: 300;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ============================================================
   ANIMATION HELPERS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.in { opacity: 1; transform: none; }

.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* Marquee for partners / scroll text */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 1.5rem 0;
  background: var(--paper);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--muted);
  font-style: italic;
}
.marquee-track .dot {
  color: var(--saffron);
  font-style: normal;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* Utility */
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
