:root {
  --navy: #12111f;
  --forest: #123017;
  --peach: #e8a24b;
  --gold: #e8a24b;
  --cream: #f4f0e8;
  --text: #4a4a53;
  --body: #4a4a53;
  --white: #ffffff;
  --line: rgba(18, 17, 31, 0.12);
  --border: rgba(18, 17, 31, 0.12);
  --dark-line: rgba(255, 255, 255, 0.16);
  --header: 108px;
  --topbar: 48px;
  --sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --radius: 14px;
  --wrap: min(1300px, calc(100% - 40px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3 { margin: 0; color: var(--navy); letter-spacing: -0.03em; line-height: 1.15; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}
.skip:focus {
  clip: auto; width: auto; height: auto; left: 16px; top: 16px; z-index: 80;
  background: var(--forest); color: #fff; padding: 8px 12px;
}

.wrap { width: var(--wrap); margin: 0 auto; }
.muted { color: var(--text); }
.muted + .muted { margin-top: 14px; }
.mt-18 { margin-top: 18px; }
.soft { color: inherit; }
.center { text-align: center; }
.center .kicker { justify-content: center; }
.center h2 { max-width: 18ch; margin-left: auto; margin-right: auto; }

.kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: max-content;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px 8px 40px;
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../assets/ui/sparkle.svg") center / contain no-repeat;
}
.kicker-light {
  color: var(--white);
  border-color: var(--dark-line);
  background: var(--dark-line);
  backdrop-filter: blur(18px);
}
.kicker-light::before {
  background-image: url("../assets/ui/sparkle-white.svg");
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 28px;
  margin-right: 50px;
  background: var(--peach);
  color: var(--navy);
  border: 0;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  z-index: 1;
  transition: color 0.4s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--peach) url("../assets/ui/arrow.svg") center / 22px no-repeat;
  transform: translateY(-50%);
  transition: transform 0.4s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  background: var(--forest);
  border-radius: 100px;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s var(--ease);
}
.btn:hover { color: var(--white); }
.btn:hover::before { transform: translateY(-50%) rotate(45deg); }
.btn:hover::after { left: 0; right: 0; opacity: 1; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Topbar + header */
.topbar {
  background: var(--forest);
  color: #fff;
  font-size: 14px;
  padding: 14px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.topbar a { text-decoration: underline; }
.topbar a:hover { color: var(--peach); }
.topbar-links { display: flex; gap: 22px; font-weight: 600; }
.topbar-links a { text-decoration: none; text-transform: capitalize; }

.header {
  position: absolute;
  top: var(--topbar);
  left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid var(--dark-line);
  overflow: visible;
}
.header.is-scrolled,
.header.is-menu-open {
  position: fixed;
  top: 0;
  background: var(--forest);
  border-bottom-color: var(--dark-line);
}
.header-inner {
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  overflow: visible;
}
.brand {
  display: flex;
  align-items: center;
  overflow: visible;
  flex: 0 0 auto;
}
.brand img {
  height: 92px;
  width: auto;
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.menu { display: contents; }
.nav { display: flex; gap: 8px; }
.header-cta { justify-self: end; }
.nav a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 10px 12px;
}
.nav a:hover { color: var(--peach); }
.header-cta .btn { min-height: 48px; padding: 14px 22px; font-size: 15px; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--dark-line); background: transparent; border-radius: 8px;
  cursor: pointer; position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; position: absolute; left: 12px; right: 12px; height: 1.5px; background: #fff;
}
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle::before { top: 14px; }
.nav-toggle::after { bottom: 14px; }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open::after { bottom: 21px; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--topbar));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 0 0;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  display: block;
}
.hero-video {
  object-position: center 40%;
  transform: scale(1.02);
  transform-origin: center center;
  filter: contrast(1.03) saturate(1.04);
  background: #123017;
}
.hero.hero-video-only {
  min-height: calc(100svh - var(--topbar));
  height: calc(100svh - var(--topbar));
  padding: 0;
  justify-content: flex-end;
}
.hero-video-only .hero-media {
  position: absolute;
  inset: 0;
}
.hero-video-only::before {
  background: linear-gradient(180deg, rgba(18, 48, 23, 0.38) 0%, rgba(18, 48, 23, 0.06) 24%, rgba(18, 48, 23, 0.04) 72%, rgba(18, 48, 23, 0.22) 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18, 48, 23, 0.55) 0%, rgba(18, 48, 23, 0.18) 28%, rgba(18, 48, 23, 0.22) 52%, #123017 90%);
  z-index: 1;
  pointer-events: none;
}
.hero-grid, .hero .ticker { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px 48px;
  align-items: end;
  padding-bottom: 48px;
}
.hero-copy h1 {
  font-size: clamp(2.35rem, 4.4vw, 3.7rem);
  color: #fff;
  line-height: 1.1;
}
.hero-aside p { color: rgba(255, 255, 255, 0.94); margin-bottom: 14px; max-width: 44ch; }
.hero-aside .btn-row { margin-top: 24px; }

.lead {
  background: var(--cream);
  padding: 100px 0 110px;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px 72px;
  align-items: end;
}
.lead-grid h1 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.08;
  color: var(--navy);
}
.lead-aside p { color: var(--text); }
.lead-aside .btn-row { margin-top: 28px; }
.lead .text-link { color: var(--navy); }

.ticker {
  border-top: 1px solid var(--dark-line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--forest);
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  white-space: nowrap;
}
.ticker-track span::before {
  content: "";
  width: 22px; height: 22px;
  background: url("../assets/ui/sparkle-white.svg") center / contain no-repeat;
  opacity: 0.9;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Shared */
.section { padding: 110px 0; }
.cream { background: var(--cream); }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); }
.lede { font-size: 1.05rem; color: var(--text); margin: 0 0 22px; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 72px;
  align-items: center;
}

.highlight {
  background: var(--cream);
  border-left: 6px solid var(--forest);
  border-radius: var(--radius);
  padding: 24px 26px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 22px 0;
}

.ticks { display: grid; gap: 14px; }
.ticks li {
  position: relative;
  padding-left: 32px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.45;
}
#who h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
#who .ticks {
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: inset 0 0 0 5px var(--peach);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23123017' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M5 12.5 9.5 17 19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
  align-items: stretch;
}
.about-media {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  overflow: visible;
}
.about-photo {
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-photo:hover img { transform: scale(1.05); }
.about-photo-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 78%;
}
.about-photo-main img { object-position: 42% 30%; }
.about-photo-sub {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 50%;
  height: 50%;
}
.about-photo-sub img { object-position: 50% 12%; }
.consult-orb {
  position: absolute;
  left: calc(50% - 28px);
  bottom: 0;
  width: 130px;
  height: 130px;
  z-index: 4;
}
.consult-orb img {
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}
.consult-orb:hover img { animation-play-state: paused; }
@keyframes spin { to { transform: rotate(360deg); } }
.about-copy { display: flex; flex-direction: column; }
.about-copy h2 { margin-bottom: 16px; }
.about-copy .ticks {
  margin-top: 4px;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.about-copy .ticks li { font-size: 15px; }
.about-cta { border-top: 1px solid var(--line); margin-top: 28px; padding-top: 28px; }

/* Services */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  align-items: start;
  margin-bottom: 48px;
}
.section-split-copy p { margin-bottom: 14px; }
.section-split-copy .btn { margin-top: 18px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.svc-grid.three { grid-template-columns: repeat(3, 1fr); }
.process.three { grid-template-columns: repeat(3, 1fr); }
.svc {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 10px;
  display: flex;
  align-items: flex-end;
}
.svc > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc:hover > img { transform: scale(1.06); }
.svc-body {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  width: 100%;
  min-height: 154px;
  z-index: 1;
}
.svc-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.svc-body p { color: var(--text); font-size: 14.5px; line-height: 1.5; }

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.why-copy h2 { margin-bottom: 16px; }
.why-sub { font-size: 1.2rem; margin: 28px 0 14px; }
.value-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  margin-top: 22px;
}
.why-copy .kicker + h2 + .muted + .muted + .kicker { margin-top: 28px; }
.val { display: flex; gap: 14px; align-items: flex-start; }
.val-ico {
  flex: 0 0 50px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: 0.35s var(--ease);
}
.val:hover .val-ico { background: var(--navy); color: #fff; }
.val-ico svg { width: 22px; height: 22px; }
.val h3 { font-size: 1.05rem; margin-bottom: 4px; }
.val p { font-size: 14.5px; }
.why-visual { position: relative; min-height: 560px; }
.why-copy {
  display: flex;
  flex-direction: column;
}
.why-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: var(--radius);
}
.why-more { margin-top: 36px; }
.why-card {
  position: absolute;
  right: 24px; bottom: 24px; left: auto;
  max-width: 340px;
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(15, 14, 45, 0.12);
}
.why-card p { color: var(--navy); font-weight: 600; font-size: 1.05rem; line-height: 1.45; }

/* Story band */
.story-band {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 0;
}
.story-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.story-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,48,23,.72) 0%, rgba(18,48,23,.55) 45%, rgba(18,48,23,.82) 100%);
  z-index: 1;
  pointer-events: none;
}
.story-inner { position: relative; z-index: 2; max-width: 820px; }
.story-band h2 { color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.6rem); margin-bottom: 28px; }

/* Process / approach */
.process, .approach {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.approach { grid-template-columns: repeat(3, 1fr); }
.step, .ap {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  min-height: 220px;
  height: 100%;
}
.cream .step, .cream .ap { background: var(--white); }
.step-num, .idx {
  font-size: 36px;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3, .ap h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p, .ap p { color: var(--text); font-size: 15px; }

.photo-card { border-radius: var(--radius); overflow: hidden; }
.photo-card img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

/* Stories */
.stories {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.stories-bg { position: absolute; inset: 0; z-index: 0; }
.stories-bg img { width: 100%; height: 100%; object-fit: cover; }
.stories::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,48,23,.62) 0%, rgba(18,48,23,.48) 50%, rgba(18,48,23,.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.stories-inner { position: relative; z-index: 2; }
.stories-head { text-align: center; margin-bottom: 40px; }
.stories-head .kicker { margin-left: auto; margin-right: auto; }
.stories-head h2 {
  color: #fff;
  max-width: 14ch;
  margin: 0 auto;
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.quote {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 18px 50px rgba(18, 48, 23, 0.16);
}
.quote-mark {
  display: block;
  font-size: 56px;
  line-height: 0.8;
  color: var(--peach);
  font-weight: 700;
  margin-bottom: 18px;
}
.quote p {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

/* Contact */
.contact {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 42% 30%; }
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(270deg, rgba(18,48,23,.3) 8%, rgba(18,48,23,.55) 46%, rgba(18,48,23,.88) 100%);
  z-index: 1;
  pointer-events: none;
}
.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-copy { color: #fff; padding: 20px 0; }
.contact-copy h2 { color: #fff; margin-bottom: 16px; }
.contact-copy p { color: rgba(255,255,255,.92); margin-bottom: 12px; max-width: 42ch; }
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px 44px;
}
.form-card h2 { margin-bottom: 8px; }
.form-fields > .muted { margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field > label, .field-legend {
  font-size: 15px; font-weight: 500; color: var(--navy);
}
.field input {
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
  background: transparent;
}
.field input:focus { border-color: var(--peach); box-shadow: 0 0 0 3px rgba(255, 185, 103, 0.25); }
.interest { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 46px; padding: 6px 8px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; font-size: 14px; cursor: pointer;
  color: var(--navy);
}
.chip input:checked + span { border-color: var(--peach); background: #fff6ea; font-weight: 600; }
.form-card .btn { width: calc(100% - 50px); margin-top: 18px; }
.form-success { display: none; text-align: center; padding: 28px 8px; }
.form-success.is-visible { display: block; }
#consult-form.is-done .form-fields { display: none; }
.success-mark { height: 88px; width: auto; object-fit: contain; margin: 0 auto 8px; display: block; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px 64px;
  align-items: center;
}
.faq-intro .btn { margin-top: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--cream); border-radius: var(--radius); overflow: hidden; }
.cream .faq-item { background: var(--white); }
.faq-item button {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 22px 24px;
  display: flex; justify-content: space-between; gap: 12px;
  align-items: center; cursor: pointer; color: var(--navy);
  font-size: 18px; font-weight: 600;
}
.faq-item button span {
  flex: 0 0 28px;
  font-size: 0;
  color: var(--navy);
}
.faq-item button span::before { content: "+"; font-size: 22px; font-weight: 400; }
.faq-item.is-open { background: var(--forest); }
.faq-item.is-open button { color: #fff; }
.faq-item.is-open button span::before { content: "–"; color: #fff; }
.faq-item .answer { display: none; padding: 0 24px 22px; color: rgba(255,255,255,.82); }
.faq-item.is-open .answer { display: block; }

.footer {
  background: var(--forest);
  color: #d7e4dc;
  padding: 56px 0 24px;
  background-image: url("../assets/ui/dark-pattern.png");
  background-size: cover;
  background-position: top center;
}
.footer-top { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-brand { display: flex; gap: 16px; align-items: center; }
.footer-brand img { height: 96px; width: auto; object-fit: contain; display: block; }
.footer-tag { color: #fff; font-size: 1.2rem; font-weight: 600; max-width: 18ch; line-height: 1.3; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 16px 20px; font-size: 14px; font-weight: 600; }
.footer-nav a:hover { color: var(--peach); }
.footer-bottom {
  margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--dark-line);
  display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.55);
}

@media (max-width: 1100px) {
  .svc-grid, .svc-grid.three { grid-template-columns: 1fr 1fr; }
  .process, .process.three { grid-template-columns: 1fr 1fr; }
  .hero-copy h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
}

@media (max-width: 980px) {
  .topbar-links { display: none; }
  .menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 8px;
    background: var(--forest); border-bottom: 1px solid var(--dark-line); padding: 8px 20px 20px;
    z-index: 60;
  }
  .menu.is-open { display: flex; }
  .menu .nav { flex-direction: column; gap: 0; margin: 0; }
  .menu .nav a { padding: 12px 0; border-bottom: 1px solid var(--dark-line); }
  .menu .header-cta .btn { width: calc(100% - 50px); }
  .nav-toggle { display: block; }
  .header { background: rgba(18, 48, 23, 0.72); backdrop-filter: blur(16px); }
  .header-inner { display: flex; justify-content: space-between; }
  .hero-grid, .lead-grid, .about-grid, .split, .why-grid, .contact-grid, .faq-grid, .section-split, .svc-grid,
  .svc-grid.three, .process, .process.three, .approach, .value-pills { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero.hero-video-only { height: calc(100svh - var(--topbar)); min-height: calc(100svh - var(--topbar)); padding: 0; }
  .lead { padding: 72px 0 80px; }
  .contact::before {
    background: linear-gradient(180deg, rgba(18,48,23,.82) 0%, rgba(18,48,23,.45) 48%, rgba(18,48,23,.7) 100%);
  }
  .hero-grid { padding-bottom: 32px; }
  .about-media { min-height: 480px; }
  .about-copy .ticks { grid-template-columns: 1fr; }
  .why-visual { min-height: 0; }
  .why-visual > img {
    position: relative;
    inset: auto;
    height: 420px;
    min-height: 420px;
  }
  .why-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    margin-top: 14px;
  }
  .quotes { grid-template-columns: 1fr; }
  .quote { min-height: 0; }
  .stories-head h2 { max-width: none; }
  .contact-grid { gap: 28px; }
  .form-card { padding: 28px 20px; }
  .form-grid, .interest { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-photo-sub { bottom: 28px; }
  .consult-orb { width: 104px; height: 104px; left: calc(50% - 22px); bottom: 0; }
}

@media (max-width: 640px) {
  .story-grid, .video-grid, .video-grid.two, .why-cards, .why-cards.four, .compare, .skill-pills { grid-template-columns: 1fr; }
  .section, .contact { padding: 72px 0; }
  .ticker-track span { font-size: 20px; }
  .about-media { min-height: 460px; }
  .about-photo-main { width: 74%; height: 68%; }
  .about-photo-sub { width: 56%; height: 46%; }
  .svc { min-height: 380px; }
  .svc-body { min-height: 0; }
  .step, .ap { min-height: 0; }
  .process, .approach, .svc-grid { grid-template-columns: 1fr; }
}

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
}
.word > span { display: inline-block; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }

}

/* ── Team Victory extras on the Victory design ── */
.disc {
  font-size: 12px;
  color: rgba(74, 74, 83, 0.72);
  font-style: italic;
  line-height: 1.6;
  margin-top: 16px;
}
.disc-light { color: rgba(255, 255, 255, 0.55); }

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--peach);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(232, 162, 75, 0.22);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.play-btn svg { margin-left: 3px; }
.video-card:hover .play-btn,
.media-play:hover .play-btn { transform: scale(1.07); background: var(--navy); }
.about-photo .play-btn,
.photo-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.about-photo:hover .play-btn,
.photo-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.07);
  background: var(--navy);
}
.video-card:hover .play-btn svg path,
.media-play:hover .play-btn svg path { fill: #fff; }

.video-card {
  background: var(--forest);
  border-radius: 18px;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(18, 48, 23, 0.18);
  cursor: pointer;
}
.video-thumb {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #123017;
  background-size: cover;
  background-position: center;
}
.video-meta {
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.video-caption {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: #0e2412;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}
.video-caption strong { color: #fff; font-weight: 600; }
.video-dur { color: var(--peach); font-weight: 700; white-space: nowrap; }
.video-below {
  text-align: center;
  margin-top: 22px;
  color: var(--text);
  font-style: italic;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.why-card-plain {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 26px;
}
.cream .why-card-plain { background: #fff; }
.why-card-plain h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--peach);
}
.why-card-plain p { font-size: 15px; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.video-grid.two { grid-template-columns: 1fr 1fr; }
.video-grid .video-card,
.split .video-card {
  max-width: none;
  margin: 0;
}
.sticky-cta.hide {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(12px);
}
.clip-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(18, 48, 23, 0.1);
  transition: transform 0.35s var(--ease);
}
.clip-card:hover { transform: translateY(-4px); }
.clip-vid {
  aspect-ratio: 3 / 4;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 16px;
  background-color: #123017;
  background-size: cover;
  background-position: center top;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.clip-foot { padding: 18px 18px 22px; }
.clip-type { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--peach); margin-bottom: 8px; }
.clip-quote { color: var(--navy); font-weight: 600; font-size: 1.02rem; line-height: 1.45; }

.arch-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.arch-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 22px 28px;
  box-shadow: 0 0 0 rgba(18, 48, 23, 0);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.arch-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(18, 48, 23, 0.1);
}
.arch-accent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--peach);
  transform-origin: left center;
}
.arch-num { font-size: 28px; font-weight: 700; color: var(--peach); line-height: 1; margin-bottom: 22px; }
.arch-name { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.25; }
.arch-id { color: var(--forest); font-weight: 600; font-style: italic; margin: 0; font-size: 15px; line-height: 1.45; }
.arch-desc { font-size: 15px; }

@media (max-width: 1180px) {
  .arch-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 10px;
    scrollbar-color: var(--peach) transparent;
  }
  .arch-list::-webkit-scrollbar { height: 6px; }
  .arch-list::-webkit-scrollbar-thumb { background: var(--peach); border-radius: 99px; }
  .arch-item {
    flex: 0 0 240px;
    scroll-snap-align: start;
    min-height: 240px;
  }
}

.nlg-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.nlg-badge .rated { color: var(--peach); }
.concept-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.concept-tile {
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  border: 1px solid var(--line);
}
.concept-tile strong { display: block; color: var(--navy); margin-bottom: 6px; }
.ct-bar { width: 22px; height: 3px; background: var(--peach); border-radius: 2px; }

.market-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.mtag {
  font-size: 12px;
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 100px;
  background: #fff;
}

.calc-section {
  background: var(--forest);
  color: #fff;
  padding: 110px 0;
}
.calc-section h2 { color: #fff; }
.calc-sub { color: rgba(255,255,255,.75); max-width: 52ch; margin-bottom: 32px; }
.calc-card {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  padding: 36px;
}
.calc-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
.ctrl-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.toggle-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tog-btn {
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--dark-line);
  background: transparent;
  color: rgba(255,255,255,.7);
  font-weight: 700;
  cursor: pointer;
}
.tog-btn.active { background: var(--peach); border-color: var(--peach); color: var(--navy); }
.output-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; margin-bottom: 22px; }
.output-year { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.output-num { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; color: var(--peach); line-height: 1; margin: 6px 0; }
.output-unit { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.output-sentence { font-size: 1.2rem; font-weight: 600; text-align: center; min-height: 56px; }
.output-sentence span { color: var(--peach); }
.perf-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  background: #fff6ea;
  border: 1px solid #edc98a;
  padding: 4px 10px;
  border-radius: 100px;
}

.cta-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 22px; }
.cta-pill {
  font-size: 13px;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 100px;
  background: #fff;
  color: var(--text);
}
.cta-note {
  font-size: 14px;
  color: var(--text);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  line-height: 1.7;
  font-style: italic;
}
.cta-note strong { color: var(--navy); font-style: normal; }
.or-divider {
  text-align: center;
  padding: 14px 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.secondary-card {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
}
.secondary-card h3 { color: #fff; margin: 6px 0 10px; }
.secondary-card p { color: rgba(255,255,255,.75); margin-bottom: 16px; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1.5px solid var(--peach);
  color: var(--peach);
  border-radius: 100px;
  font-weight: 700;
}
.btn-outline:hover { background: var(--peach); color: var(--navy); }

.welcome-chip {
  display: none;
  width: max-content;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--peach);
  border: 1px solid rgba(232,162,75,.4);
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.welcome-chip.on { display: inline-flex; }

.stat-row { display: grid; gap: 0; }
.stat-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.stat-val { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--peach); line-height: 1; }
.stat-label { font-size: 14px; margin-top: 6px; }
.copy-line {
  padding-left: 16px;
  border-left: 3px solid var(--line);
  margin-bottom: 14px;
}
.copy-line.em { border-color: var(--peach); color: var(--navy); font-weight: 600; }

.modal {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(14, 36, 18, 0.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal.on { display: flex; }
.modal-box { width: min(920px, 100%); }
.modal-head { display: flex; justify-content: space-between; align-items: center; color: #fff; margin-bottom: 12px; }
.modal-close { background: none; border: 0; color: #fff; font-size: 32px; cursor: pointer; line-height: 1; }
.modal-frame { position: relative; aspect-ratio: 16/9; background: #000; border-radius: 14px; overflow: hidden; }
.modal-frame iframe, .modal-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.modal-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 32px; text-align: center; color: rgba(255,255,255,.8);
}
.modal-placeholder h3 { color: #fff; }
.modal-placeholder p { max-width: 420px; }
.modal-disc { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,.45); font-style: italic; }

.legal { max-width: 760px; margin: 0 auto; padding: 80px 0 120px; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0 22px; }
.legal h2 { font-size: 1.25rem; margin: 28px 0 10px; }
.legal p, .legal li { margin-bottom: 12px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal a { color: var(--forest); text-decoration: underline; }

.quiz-hero {
  background: var(--forest);
  color: #fff;
  padding: 160px 0 48px;
  position: relative;
  overflow: hidden;
}
.quiz-hero h1 { color: #fff; }
.quiz-hero p,
.quiz-lead { color: rgba(255,255,255,.86); max-width: 46ch; margin-top: 12px; }
.progress { height: 4px; background: rgba(255,255,255,.12); }
.progress-bar { height: 100%; width: 0; background: var(--peach); transition: width 0.35s var(--ease); }
.quiz-body { padding: 48px 0 120px; background: var(--cream); }
.quiz-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 18px 50px rgba(18,48,23,.08);
}
.quiz-card .btn { width: calc(100% - 50px); margin-top: 8px; }
.quiz-card .field input {
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 16px;
  font-size: 15px;
}
.q-meta { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--peach); margin-bottom: 10px; }
.q-text { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 22px; }
.q-options { display: grid; gap: 10px; }
.q-opt {
  text-align: left;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 15px;
  color: var(--navy);
}
.q-opt:hover, .q-opt.picked { border-color: var(--peach); background: #fff6ea; }
.q-nav { display: flex; justify-content: space-between; margin-top: 18px; }
.q-back { background: none; border: 0; color: var(--text); cursor: pointer; }
.result-id { color: var(--forest); font-style: italic; font-weight: 600; font-size: 1.15rem; margin: 8px 0 14px; }
.capture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin: 8px 0 16px; }
.form-error { color: #9a3412; font-size: 13px; min-height: 18px; }
.footer-legal { max-width: 820px; font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.5); margin-top: 18px; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}
.compare-col {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.cream .compare-col,
.cream .skill-pill { background: #fff; }
[data-video] { cursor: pointer; }
.compare-col h3 { font-size: 1.15rem; margin-bottom: 16px; }
.ticks.miss li::before {
  background: #ead7d2;
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23123017' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.skill-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.skill-pill {
  background: var(--cream);
  border-radius: 12px;
  padding: 18px 16px;
  color: var(--navy);
  font-weight: 700;
}
.skill-pill span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--peach);
  margin-top: 10px;
  border-radius: 2px;
}
.why-cards.four { grid-template-columns: repeat(4, 1fr); }
.why-cards.two { grid-template-columns: 1fr 1fr; }
.clip-vid { position: relative; }
.clip-vid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(18, 48, 23, 0.72) 100%);
}
.clip-vid .play-btn,
.clip-vid .clip-name { position: relative; z-index: 1; }
.clip-vid .play-btn {
  width: 54px;
  height: 54px;
  box-shadow: 0 0 0 8px rgba(232, 162, 75, 0.22);
}
.clip-card:hover .play-btn { transform: scale(1.07); background: var(--navy); }
.clip-card:hover .play-btn svg path { fill: #fff; }
.clip-name { letter-spacing: 0.08em; }
.text-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero .text-link { color: #fff; }
.step-note { margin-top: 12px; font-size: 13px; }
.step-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  background: #fff6ea;
  border-radius: 100px;
  padding: 4px 10px;
}
.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.35s var(--ease);
}
.sticky-cta.on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.prose { color: var(--text); line-height: 1.75; }
.result-body { color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.result-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.back-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-stack { display: grid; gap: 16px; }
.form-fields .btn { margin-top: 8px; }
.nlg-layout { align-items: start; }
.stat-item:last-child { border-bottom: 0; }
.disc a { color: inherit; text-decoration: underline; }

@media (max-width: 980px) {
  .why-cards, .why-cards.four, .why-cards.two, .story-grid, .video-grid, .video-grid.two, .calc-controls, .output-row, .concept-tiles, .capture-grid, .compare, .skill-pills { grid-template-columns: 1fr 1fr; }

  .quiz-hero { padding-top: 140px; }
  .sticky-cta { right: 14px; bottom: 14px; }
}
