:root {
  --bg: #f4f1ea;
  --bg-alt: #ebe6dc;
  --ink: #1c1a16;
  --muted: #5c574e;
  --adkorp: #1a3c34;
  --adkorp-light: #2d5a4e;
  --adquat: #4a5340;
  --brass: #b08d57;
  --white: #fbf9f4;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Source Sans 3", "Segoe UI", sans-serif;
  --header: 4.5rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: var(--adkorp); text-underline-offset: 0.2em; }

.sr-only,
.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip:focus {
  width: auto;
  height: auto;
  clip: auto;
  inset: 1rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  z-index: 50;
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
}

.site-header.header-over {
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.45), transparent);
  border: 0;
}

.site-header.header-over .brand-adkorp,
.site-header.header-over .brand-mark,
.site-header.header-over .site-nav a,
.site-header.header-over .nav-toggle span {
  color: var(--white);
  background: var(--white);
}

.site-header.header-over .brand-adkorp,
.site-header.header-over .brand-mark,
.site-header.header-over .site-nav a {
  background: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.brand-adkorp {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.brand-mark {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.site-nav a:hover { color: var(--brass); }

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: none;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 7px 4px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 28s ease-out forwards;
}

@keyframes kenburns {
  to { transform: scale(1); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgb(12 16 14 / 0.78) 12%, rgb(12 16 14 / 0.25) 55%, rgb(12 16 14 / 0.35));
}

.hero-copy {
  position: relative;
  padding: 8rem 0 4.5rem;
}

.display {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.05;
  margin: 0.4rem 0 1.2rem;
}

.display span { display: block; }

.display-sm {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0.3rem 0 1rem;
}

.h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0.2rem 0 1rem;
}

.h2.light,
.lead.light,
.kicker.light { color: var(--white); }

.kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--brass);
  margin: 0 0 0.8rem;
}

.adquat-kicker { color: var(--adquat); }
.header-over .adquat-kicker,
.light.adquat-kicker { color: #d9c89a; }

.lead {
  font-size: 1.15rem;
  max-width: 38rem;
  color: var(--muted);
}

.hero-actions,
.usage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-family: var(--body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--adkorp);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--adkorp);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgb(255 255 255 / 0.45);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 22%, transparent);
}

.btn-xl {
  min-height: 3.4rem;
  padding-inline: 1.8rem;
  width: 100%;
}

.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-adquat { background: #e7ebe4; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.usage-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.usage-list li {
  border: 1px solid color-mix(in srgb, var(--adkorp) 18%, transparent);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.process {
  list-style: none;
  padding: 0;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process li {
  background: var(--white);
  padding: 1.2rem;
  min-height: 100%;
}

.process-index {
  display: block;
  font-family: var(--display);
  color: var(--brass);
  font-size: 1.4rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.text-link {
  color: var(--adkorp);
  white-space: nowrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-value {
  font-family: var(--display);
  font-size: 3rem;
  margin: 0;
  color: var(--adkorp);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3, .card p, .card .chip { margin-left: 1rem; margin-right: 1rem; }
.card h3 { font-family: var(--display); font-size: 1.45rem; margin-top: 0.6rem; }
.card p { color: var(--muted); padding-bottom: 1.2rem; }

.chip {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--adquat);
}

.photo-frame img,
.portrait img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.portrait img { height: 520px; }

blockquote {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.3;
  border-left: 2px solid var(--brass);
  margin: 1.5rem 0;
  padding-left: 1rem;
}

.teaser {
  background:
    linear-gradient(120deg, #1a3c34, #243f38 55%, #4a5340);
  color: var(--white);
}

.teaser .muted, .teaser .note, .teaser .kicker, .teaser p { color: #e8e0d0; }
.teaser .h2 { color: var(--white); }

.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.teaser-form,
.contact-form {
  display: grid;
  gap: 0.85rem;
}

.field,
input.field,
select.field,
textarea.field,
.teaser-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: 2px;
}

.teaser-form input { background: #fbf9f4; }

.chip-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-choices label span,
.choice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.2rem;
  padding: 0.7rem 1rem;
  border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font: inherit;
  width: 100%;
  color: inherit;
}

.chip-choices label span {
  width: auto;
  border-radius: 999px;
  color: var(--ink);
}

.chip-choices input { display: none; }
.chip-choices label:has(input:checked) span,
.choice.is-on,
.choice:has(input:checked) {
  background: var(--adkorp);
  color: var(--white);
  border-color: var(--adkorp);
}

.cta-band {
  background: var(--adkorp);
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  color: var(--white);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(12 16 14 / 0.78), rgb(12 16 14 / 0.25));
}

.page-hero-copy {
  position: relative;
  padding: 7rem 0 3rem;
}

.prose-narrow { max-width: 42rem; }

.legal h2 {
  font-family: var(--display);
  margin-top: 2rem;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.before-after img { height: 240px; object-fit: cover; width: 100%; }
.before-after figcaption { font-size: 0.8rem; color: var(--muted); }

.site-footer {
  background: #141210;
  color: #d9d2c5;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer a {
  display: block;
  color: inherit;
  text-decoration: none;
  margin: 0.25rem 0;
}

.site-footer a:hover { color: var(--brass); }

.footer-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--brass);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  font-size: 0.82rem;
}

.adquat-mark { color: #c5cbb8; font-size: 0.9rem; }

.survey-body .site-footer { display: none; }
.survey-shell {
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: center;
  padding: 1.5rem 0 3rem;
}

.survey-card {
  width: min(640px, calc(100% - 2rem));
  margin: 0 auto;
  background: var(--white);
  padding: 1.6rem 1.4rem 1.8rem;
  box-shadow: 0 20px 60px rgb(28 26 22 / 0.08);
}

.survey-q {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.15;
  margin: 0.4rem 0 0.6rem;
}

.survey-progress {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.bar {
  flex: 1;
  height: 3px;
  background: var(--bg-alt);
}

.bar i {
  display: block;
  height: 3px;
  background: var(--adkorp);
}

.choice-stack { display: grid; gap: 0.55rem; margin: 1.2rem 0; }
.choice input { accent-color: var(--adkorp); }
.rank-badge {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-grid;
  place-items: center;
  font-size: 0.8rem;
}

.survey-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.form-error { color: #8a2a1a; }
.note, .muted { color: var(--muted); font-size: 0.92rem; }
.field-lg { font-size: 1.15rem; min-height: 3.4rem; }

.hp,
.hp-wrap {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.campaign-list { list-style: none; padding: 0; }
.campaign-list a {
  display: block;
  padding: 1.1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  text-decoration: none;
  color: inherit;
}
.campaign-list span { display: block; color: var(--muted); }

.reveal {
  animation: rise 0.8s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .split,
  .teaser-grid,
  .process,
  .stats-grid,
  .cards-3,
  .footer-grid,
  .before-after {
    grid-template-columns: 1fr;
  }

  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    inset: var(--header) 0 auto;
    background: var(--bg);
    padding: 1rem 1.25rem 1.4rem;
    flex-direction: column;
  }

  .site-header.header-over .site-nav {
    background: #141210;
  }

  .site-nav.is-open { display: flex; }

  .hero-copy { padding-top: 7rem; }
  .portrait img, .photo-frame img { height: 280px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-photo, .reveal { animation: none; }
}
