:root {
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Fraunces, Georgia, serif;
  --ink: #2c1720;
  --ink-soft: #60424e;
  --muted: #826974;
  --cream: #fff8f3;
  --ivory: #fffdf9;
  --blush: #f9dfe7;
  --rose: #c85f82;
  --berry: #7b304b;
  --plum: #3d2030;
  --caramel: #c4874b;
  --sage: #7b9d88;
  --line: rgba(44, 23, 32, .13);
  --line-light: rgba(255, 253, 249, .32);
  --shadow: 0 24px 70px rgba(82, 40, 58, .16);
  --shadow-soft: 0 14px 42px rgba(82, 40, 58, .11);
  --radius: 8px;
  --container: 1220px;
}

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

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 20% 0%, rgba(249, 223, 231, .72), transparent 34rem),
    linear-gradient(180deg, var(--cream), #f8eee9 48%, #fff8f3);
  color: var(--ink);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { background: rgba(200, 95, 130, .28); }

:focus-visible {
  outline: 3px solid rgba(200, 95, 130, .62);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--berry);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.sprite {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.sprite symbol * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 243, .82);
  backdrop-filter: blur(18px);
  transition: background .18s ease, box-shadow .18s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, .93);
  box-shadow: 0 12px 38px rgba(82, 40, 58, .09);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(210px, auto) 1fr minmax(210px, auto);
  align-items: center;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--berry);
  text-decoration: none;
  min-width: 0;
}

.wordmark-ribbon {
  width: 74px;
  height: 44px;
  color: var(--rose);
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 22px rgba(200, 95, 130, .18));
}

.wordmark span {
  display: grid;
  line-height: 1;
}

.wordmark strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0;
}

.wordmark em {
  margin-top: 3px;
  color: var(--muted);
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.desktop-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, .72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.desktop-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .16s ease, color .16s ease;
}

.desktop-nav a:hover {
  background: var(--blush);
  color: var(--berry);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(123,48,75,.16);
  border-radius: 999px;
  background: var(--berry);
  color: #fff;
  box-shadow: 0 14px 32px rgba(123,48,75,.16);
  font-weight: 900;
  font-size: .88rem;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #6a2540;
  box-shadow: 0 18px 38px rgba(123,48,75,.22);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle,
.menu-close,
.mobile-menu { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-dark { background: var(--berry); color: #fff; box-shadow: 0 18px 42px rgba(123,48,75,.24); }
.btn-dark:hover { background: #6a2540; }
.btn-light { background: rgba(255,253,249,.78); color: var(--berry); border-color: rgba(123,48,75,.20); }

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: clip;
  background: var(--plum);
}

.hero-photo,
.hero-photo img,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(61,32,48,.88) 0%, rgba(89,43,62,.70) 38%, rgba(123,48,75,.18) 78%),
    linear-gradient(0deg, rgba(44,23,32,.70), rgba(44,23,32,.04) 45%, rgba(44,23,32,.24));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(280px, .34fr);
  align-items: end;
  gap: clamp(28px, 6vw, 78px);
  padding-block: clamp(82px, 12vw, 152px) clamp(42px, 7vw, 82px);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--caramel);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.intro-grid h2,
.section-head h2,
.editorial-copy h2,
.reporting-copy h2,
.faq-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 850;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6.5vw, 6.1rem);
  line-height: .94;
  overflow-wrap: break-word;
}

.hero h1 span {
  color: #ffe2ec;
}

.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  min-width: 0;
}

.hero-note {
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255,248,243,.12);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-note p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.76);
  line-height: 1.6;
}

.intro-band {
  padding-block: clamp(42px, 6vw, 74px);
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.intro-grid h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
}

.intro-grid p,
.section-head p,
.editorial-copy p,
.reporting-copy p,
.faq-list p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.section {
  padding-block: clamp(82px, 10vw, 142px);
  scroll-margin-top: 98px;
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(36px, 6vw, 66px);
}

.section-head h2,
.editorial-copy h2,
.reporting-copy h2,
.faq-copy h2,
.contact-copy h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.45rem);
  line-height: 1.02;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.service-main,
.mini-card,
.timeline-item,
.faq-list details,
.audit-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,253,249,.82);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,.8);
}

.service-main {
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: clamp(26px, 5vw, 46px);
  background:
    linear-gradient(180deg, rgba(255,253,249,.58), rgba(255,253,249,.96)),
    radial-gradient(circle at 20% 10%, rgba(249,223,231,.9), transparent 24rem),
    rgba(255,253,249,.82);
}

.service-main svg,
.mini-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: var(--rose);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-main h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.service-main p,
.mini-card p,
.timeline-item p {
  color: var(--muted);
  line-height: 1.7;
}

.service-stack {
  display: grid;
  gap: 18px;
}

.mini-card {
  min-height: 158px;
  padding: 26px;
}

.mini-card h3,
.timeline-item h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.22;
}

.mini-card p,
.timeline-item p { margin: 12px 0 0; }

.editorial {
  background: var(--plum);
  color: #fff;
}

.editorial-grid,
.reporting-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
}

.editorial-image,
.reporting-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.editorial-image img,
.reporting-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.editorial-copy p,
.editorial-copy .check-list li {
  color: rgba(255,255,255,.78);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.check-list svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--caramel);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.method {
  background:
    linear-gradient(180deg, rgba(255,248,243,.82), rgba(255,253,249,.94)),
    var(--cream);
}

.method-inner {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  column-gap: 20px;
  padding: 22px;
}

.timeline-item span {
  grid-row: span 2;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 3.3rem;
  font-weight: 850;
  line-height: .9;
  letter-spacing: 0;
}

.reporting {
  background: var(--ivory);
}

.reporting-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.metric-row div {
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.metric-row strong {
  display: block;
  color: var(--berry);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.metric-row span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-grid {
  align-items: start;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--rose); font-size: 1.4rem; line-height: 1; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list p { margin: 0; padding: 0 24px 24px; }

.contact-section {
  padding-block: clamp(82px, 10vw, 142px);
  background:
    linear-gradient(135deg, rgba(200,95,130,.20), transparent 44%),
    var(--plum);
  color: #fff;
}

.contact-grid {
  align-items: start;
  grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr);
}

.contact-copy p,
.contact-copy address {
  color: rgba(255,255,255,.78);
}

.contact-copy a {
  color: #ffe2ec;
  font-weight: 900;
}

.contact-copy address {
  margin-top: 28px;
  font-style: normal;
  line-height: 1.8;
}

.audit-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255,253,249,.10);
  border-color: var(--line-light);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.86);
  font-size: .9rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: rgba(255,253,249,.95);
  color: var(--ink);
  padding: 14px 15px;
  outline: 0;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

input:focus,
textarea:focus {
  border-color: #ffe2ec;
  box-shadow: 0 0 0 4px rgba(255,226,236,.20);
}

.honeypot {
  position: fixed;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
}

.honeypot input {
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
}

.form-button { width: 100%; border: 0; }
.form-note { margin: 0; color: rgba(255,255,255,.62); font-size: .84rem; line-height: 1.55; }

.site-footer {
  padding-block: 34px;
  background: #21111a;
  color: rgba(255,255,255,.76);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.footer-wordmark { color: #ffe2ec; }
.footer-inner p { margin: 0; line-height: 1.6; }
.footer-inner a { color: #ffe2ec; font-weight: 900; }

.mobile-sticky { display: none; }

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible,
.js .contact-section .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: minmax(180px, auto) 1fr auto;
  }

  .nav-cta { display: none; }

  .service-layout,
  .method-inner,
  .editorial-grid,
  .reporting-grid,
  .faq-grid,
  .contact-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .reporting-image,
  .editorial-image { order: -1; }
}

@media (max-width: 760px) {
  .container {
    padding-inline: 18px;
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .desktop-nav { display: none; }

  .wordmark-ribbon {
    width: 54px;
    height: 34px;
  }

  .wordmark strong { font-size: 1.28rem; }
  .wordmark em { font-size: .58rem; }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,253,249,.88);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--berry);
  }

  .menu-close {
    position: absolute;
    right: 20px;
    top: 20px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    background: rgba(255,255,255,.10);
    cursor: pointer;
  }

  .menu-close::before,
  .menu-close::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .menu-close::before { transform: rotate(45deg); }
  .menu-close::after { transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: none;
    align-content: center;
    gap: 26px;
    padding: 82px 24px 34px;
    background: var(--berry);
    color: #fff;
  }

  .mobile-menu.is-open { display: grid; }

  .mobile-menu nav {
    display: grid;
    gap: 8px;
  }

  .mobile-menu nav a {
    padding-block: 17px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, rgba(61,32,48,.92), rgba(61,32,48,.58)),
      linear-gradient(90deg, rgba(61,32,48,.92), rgba(61,32,48,.18));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 70px 38px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.35rem);
    line-height: .98;
  }

  .hero-note {
    display: none;
  }

  .hero-actions,
  .btn {
    width: 100%;
    max-width: 100%;
  }

  .service-main { min-height: auto; }

  .service-main h3 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item span {
    grid-row: auto;
    margin-bottom: 18px;
  }

  .form-grid,
  .metric-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: block;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(61,32,48,.88);
    backdrop-filter: blur(14px);
    transform: translateY(100%);
    transition: transform .18s ease;
  }

  .mobile-sticky.is-visible { transform: translateY(0); }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.65rem);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions .btn {
    min-height: 54px;
    padding-inline: 14px;
    font-size: .9rem;
    text-align: center;
  }

  .section-head h2,
  .editorial-copy h2,
  .reporting-copy h2,
  .faq-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.95rem, 8.7vw, 2.65rem);
    line-height: 1.03;
    overflow-wrap: break-word;
  }
}

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