:root {
  --cream: #F5EFE5;
  --cream-warm: #EDE5D6;
  --paper: #FAF6EF;
  --ink: #1C1814;
  --ink-soft: #4A4339;
  --ink-mute: #7A7062;
  --emerald: #1E4A3E;
  --emerald-deep: #143329;
  --emerald-soft: #2F6B5A;
  --terracotta: #B8553A;
  --terracotta-soft: #D88566;
  --rule: #D6CCBA;
  --gold: #B8924A;
  --shadow-warm: rgba(28, 24, 20, 0.08);

  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, sans-serif;

  --max: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184, 85, 58, 0.025) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 74, 62, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0.08 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

main, header, footer { position: relative; z-index: 2; }

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
}

/* Typography */
.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
.display-italic { font-family: var(--display); font-style: italic; font-weight: 300; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow-emerald { color: var(--emerald); }

/* Header / Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 229, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.logo span {
  font-style: italic;
  font-weight: 300;
  color: var(--emerald);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--emerald); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--emerald);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  transition: all 0.3s ease;
  border: 1px solid var(--ink);
}
.nav-cta:hover { background: var(--emerald); border-color: var(--emerald); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 4px; }

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}
.mobile-drawer.open { display: block; }

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.45);
  backdrop-filter: blur(2px);
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--cream);
  padding: 28px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-drawer.open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  margin-bottom: 32px;
}

.mobile-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(26,26,26,0.12);
}
.mobile-drawer-links li a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(26,26,26,0.1);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.mobile-drawer-links li a:hover { color: var(--emerald); }

.mobile-drawer-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.mobile-drawer-cta:hover { background: var(--emerald); }

/* HERO */
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: end;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow .line {
  width: 48px; height: 1px;
  background: var(--emerald);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 18ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--emerald);
  font-variation-settings: "opsz" 144;
}
.hero h1 .ampersand {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.hero-sub {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.hero-sub p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  font-weight: 400;
}
.hero-sub p strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 999px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  letter-spacing: 0.005em;
}
.btn-primary {
  background: var(--emerald);
  color: var(--cream);
  border-color: var(--emerald);
}
.btn-primary:hover {
  background: var(--emerald-deep);
  border-color: var(--emerald-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn .arrow {
  transition: transform 0.3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.meta-item .num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  color: var(--emerald);
  letter-spacing: -0.02em;
}
.meta-item .num em {
  font-style: italic;
  font-weight: 300;
}
.meta-item .lbl {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .hero { padding: 60px 0 70px; }
  .hero-sub { grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
  .hero-meta { gap: 28px; margin-top: 50px; }
}

/* SECTION CHROME */
section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section { padding: 70px 0; } }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 14ch;
}
.section-head h2 em { font-style: italic; color: var(--emerald); font-weight: 300; }
.section-head .lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.55;
}
.section-head .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  display: block;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
}

/* PROBLEM */
.problem { background: var(--paper); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.problem-card {
  padding: 50px 40px 50px 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.problem-card:last-child { border-right: none; padding-right: 0; }
.problem-card:not(:first-child) { padding-left: 40px; }
.problem-card .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  display: block;
}
.problem-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.problem-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: none; border-bottom: 1px solid var(--rule); padding: 36px 0; }
  .problem-card:not(:first-child) { padding-left: 0; }
  .problem-card:last-child { border-bottom: none; padding-bottom: 0; }
}

/* GUIDE / WHY */
.guide-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.guide-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.guide-quote::before {
  content: "“";
  font-family: var(--display);
  font-size: 1.2em;
  color: var(--terracotta);
  line-height: 0;
  vertical-align: -0.2em;
  margin-right: 0.05em;
}
.guide-quote .author {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 36px;
}
.guide-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.guide-body p strong { color: var(--ink); font-weight: 600; }
.guide-body p:first-child::first-letter {
  font-family: var(--display);
  font-size: 56px;
  float: left;
  line-height: 0.85;
  margin: 6px 10px 0 0;
  color: var(--emerald);
  font-weight: 400;
}
@media (max-width: 880px) {
  .guide-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* PLAN */
.plan { background: var(--cream-warm); }
.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 20px;
}
.plan-step { position: relative; }
.plan-step .ribbon {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.plan-step .ribbon .dot {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
}
.plan-step .ribbon .label {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}
.plan-step .step-num {
  font-family: var(--display);
  font-size: 96px;
  font-weight: 300;
  line-height: 0.85;
  color: var(--emerald);
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.plan-step .step-num em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.plan-step h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.plan-step p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .plan-steps { grid-template-columns: 1fr; gap: 40px; }
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.service-card {
  background: var(--paper);
  padding: 48px 44px;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
}
.service-card:hover { background: var(--cream); }
.service-card .index {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  margin-bottom: 24px;
  display: block;
}
.service-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.service-card h3 em {
  font-style: italic;
  color: var(--emerald);
  font-weight: 300;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-card ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.service-card ul li {
  font-size: 12.5px;
  color: var(--ink-soft);
  padding: 5px 12px;
  background: var(--cream-warm);
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.service-card .arrow-icon {
  position: absolute;
  top: 48px;
  right: 44px;
  width: 32px; height: 32px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.3s ease;
}
.service-card:hover .arrow-icon {
  background: var(--emerald);
  color: var(--cream);
  border-color: var(--emerald);
  transform: rotate(-45deg);
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }
  .service-card .arrow-icon { top: 36px; right: 28px; }
}

/* INDUSTRIES */
.industries {
  background: var(--emerald);
  color: var(--cream);
  overflow: hidden;
}
.industries .section-head h2 { color: var(--cream); }
.industries .section-head h2 em { color: var(--terracotta-soft); }
.industries .section-head .num { color: var(--terracotta-soft); }
.industries .section-head .lead { color: rgba(245, 239, 229, 0.78); }
.industries .section-head { border-bottom-color: rgba(245, 239, 229, 0.18); }

.industry-list {
  border-top: 1px solid rgba(245, 239, 229, 0.2);
}
.industry-row {
  display: grid;
  grid-template-columns: 60px 1fr 2fr 60px;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(245, 239, 229, 0.18);
  transition: padding 0.3s ease;
  cursor: pointer;
}
.industry-row:hover { padding-left: 12px; padding-right: 0; }
.industry-row .ix-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--terracotta-soft);
  letter-spacing: 0.04em;
}
.industry-row .ix-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}
.industry-row .ix-name em { font-style: italic; color: var(--terracotta-soft); font-weight: 300; }
.industry-row .ix-desc {
  font-size: 15px;
  color: rgba(245, 239, 229, 0.72);
  line-height: 1.55;
  margin: 0;
}
.industry-row .ix-arrow {
  color: var(--cream);
  opacity: 0.5;
  transition: all 0.3s ease;
  text-align: right;
}
.industry-row:hover .ix-arrow { opacity: 1; transform: translateX(6px); }

@media (max-width: 880px) {
  .industry-row { grid-template-columns: 40px 1fr; gap: 16px; padding: 28px 0; }
  .industry-row .ix-desc, .industry-row .ix-arrow { display: none; }
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.team-card { display: flex; flex-direction: column; gap: 28px; }
.team-portrait {
  aspect-ratio: 4 / 5;
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.portrait-mono {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(140px, 22vw, 280px);
  line-height: 0.85;
  color: var(--emerald);
  opacity: 0.85;
  margin-bottom: -0.18em;
  letter-spacing: -0.04em;
}
.portrait-mono.coral { color: var(--terracotta); }
.team-portrait .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 600;
}
.team-portrait .pos {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
}
.team-card h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.team-card .role {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--terracotta);
  margin-top: 4px;
  margin-bottom: 16px;
}
.team-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* PULL QUOTE */
.pull-quote {
  text-align: center;
  padding: 0 5vw;
}
.pull-quote .mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 80px;
  color: var(--terracotta);
  line-height: 0.5;
  margin-bottom: 20px;
}
.pull-quote blockquote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 36px;
}
.pull-quote blockquote em {
  font-style: italic;
  color: var(--emerald);
  font-weight: 300;
}
.pull-quote .attr {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pull-quote .attr em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--terracotta);
  margin: 0 6px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 48px 44px;
  border-radius: 2px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.form-row label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.form-row input, .form-row textarea, .form-row select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  padding: 10px 0 12px;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-bottom-color: var(--emerald);
}
.form-row textarea {
  min-height: 100px;
  resize: vertical;
  font-family: var(--sans);
}
.form-submit {
  margin-top: 12px;
  width: 100%;
  background: var(--emerald);
  color: var(--cream);
  border: 1px solid var(--emerald);
  padding: 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-submit:hover {
  background: var(--emerald-deep);
  border-color: var(--emerald-deep);
}
.contact-info h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.contact-info h3 em { font-style: italic; color: var(--emerald); font-weight: 300; }
.contact-info p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 44ch;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.contact-detail:last-child { border-bottom: 1px solid var(--rule); }
.contact-detail .lbl {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.contact-detail .val {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}
.contact-detail .val a:hover { color: var(--emerald); }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 36px 28px; }
}

/* FOOTER */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 239, 229, 0.18);
}
.footer-brand .logo {
  color: var(--cream);
  font-size: 24px;
  margin-bottom: 16px;
  display: inline-block;
}
.footer-brand .logo span { color: var(--terracotta-soft); }
.footer-brand p {
  font-size: 14.5px;
  color: rgba(245, 239, 229, 0.65);
  line-height: 1.65;
  max-width: 38ch;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-size: 14.5px;
  color: rgba(245, 239, 229, 0.78);
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(245, 239, 229, 0.5);
  letter-spacing: 0.02em;
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(245, 239, 229, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Marquee accent */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .star { color: var(--terracotta-soft); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CASE STUDIES */
.cs-table {
  border-top: 1px solid var(--rule);
}
.cs-row {
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s ease;
}
.cs-row:hover { background: var(--cream-warm); }
.cs-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.cs-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(201, 100, 66, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}
.cs-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
}
.cs-body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.cs-result {
  text-align: right;
  padding-top: 4px;
}
.cs-stat {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--emerald);
}
.cs-stat-lbl {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-top: 8px;
  max-width: 18ch;
  margin-left: auto;
}
@media (max-width: 880px) {
  .cs-row { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .cs-result { text-align: left; }
  .cs-stat-lbl { margin-left: 0; }
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.testi-card::before {
  content: "\201C";
  font-family: var(--display);
  font-style: italic;
  font-size: 72px;
  color: var(--terracotta);
  line-height: 0.7;
  margin-bottom: -8px;
  display: block;
}
.testi-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
}
.testi-author {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.testi-co {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
@media (max-width: 880px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--emerald); }
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 28px;
}
.faq-a p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 70ch;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--emerald); text-decoration: underline; }

/* BOOKING CTA */
.booking-cta {
  background: var(--ink);
  padding: 80px 0;
}
.booking-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.booking-cta-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin-bottom: 16px;
}
.booking-cta h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 14px;
}
.booking-cta h2 em {
  font-style: italic;
  color: var(--terracotta-soft);
  font-weight: 300;
}
.booking-cta p {
  font-size: 16px;
  color: rgba(245, 239, 229, 0.65);
  max-width: 44ch;
  line-height: 1.6;
}
@media (max-width: 720px) {
  .booking-cta-inner { flex-direction: column; align-items: flex-start; }
  .booking-cta { padding: 60px 0; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* No-JS fallback — content must always be visible to crawlers */
.no-js .reveal {
  opacity: 1;
  transform: none;
}
