:root {
  color-scheme: dark;
  --bg: #101112;
  --surface: #181a1b;
  --surface-soft: #232628;
  --text: #f5f1ea;
  --muted: #b9b3aa;
  --line: rgba(245, 241, 234, 0.14);
  --accent: #9fb8a6;
  --accent-strong: #dac7a3;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.3vw, 5.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 48px);
  background: rgba(16, 17, 18, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 2px;
  font-weight: 850;
  text-transform: uppercase;
}

.brand small,
.eyebrow,
.section-kicker,
.package-label,
.steps span {
  color: var(--accent-strong);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(245, 241, 234, 0.82);
  font-size: 0.94rem;
}

nav a:hover,
footer a:hover {
  color: var(--accent-strong);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 4vw, 52px) 70px;
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 17, 18, 0.96), rgba(16, 17, 18, 0.68) 48%, rgba(16, 17, 18, 0.16)),
    linear-gradient(0deg, rgba(16, 17, 18, 0.94), rgba(16, 17, 18, 0.08) 55%);
}

.hero-copy {
  width: min(680px, 100%);
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 850;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #111412;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.button:hover {
  transform: translateY(-1px);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-row span {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(245, 241, 234, 0.88);
  font-size: 0.9rem;
}

.promise,
.outcome,
.problem,
.solution,
.method,
.visual-proof,
.fit,
.objections,
.about,
.regional-intro,
.split,
.perspective,
.process,
.impact,
.packages,
.quote-band,
.regional,
.social-proof,
.faq,
.contact {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.problem,
.solution,
.method,
.visual-proof,
.fit,
.objections,
.about {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.outcome {
  padding: 86px 0 50px;
  border-bottom: 1px solid var(--line);
}

.outcome-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.outcome-grid article,
.testimonial-grid figure {
  min-height: 210px;
  margin: 0;
  padding: 26px;
  background: rgba(24, 26, 27, 0.72);
  border: 1px solid rgba(245, 241, 234, 0.1);
  border-radius: 6px;
}

.calm-box {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 28px;
  background: rgba(159, 184, 166, 0.11);
  border: 1px solid rgba(159, 184, 166, 0.3);
  border-radius: 6px;
}

.calm-box p {
  max-width: 780px;
}

.calm-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calm-box li {
  padding: 8px 11px;
  color: rgba(245, 241, 234, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.section-cta.align-left {
  justify-content: flex-start;
}

.problem,
.solution,
.method,
.visual-proof,
.fit,
.objections,
.about {
  padding: 86px 0;
  border-bottom: 1px solid var(--line);
}

.problem .section-heading,
.solution,
.about-copy {
  max-width: 860px;
}

.check-list.columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.closing-line {
  margin-top: 28px;
  color: var(--text);
  font-size: 1.22rem;
  font-weight: 800;
}

.method {
  position: relative;
}

.method-grid,
.objection-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.method-grid article,
.objection-list article {
  min-height: 300px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(159, 184, 166, 0.08), rgba(24, 26, 27, 0.92)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.method-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.image-proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.05fr;
  gap: 14px;
}

.image-proof-grid figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: 6px;
}

.image-proof-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(16, 17, 18, 0.74);
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: 4px;
  backdrop-filter: blur(16px);
}

.effect-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.effect-list span,
.not-fit,
.response-note {
  padding: 12px 14px;
  color: rgba(245, 241, 234, 0.9);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.fit {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1fr;
  gap: 56px;
}

.not-fit {
  margin-top: 26px;
}

.package-price {
  margin: -4px 0 18px;
  color: var(--accent-strong);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.1;
}

.package-note {
  max-width: 820px;
  margin: 28px auto 0;
  text-align: center;
}

.objection-list {
  grid-template-columns: repeat(2, 1fr);
}

.objection-list article {
  min-height: 220px;
}

.objection-list article:last-child {
  grid-column: 1 / -1;
  min-height: 180px;
}

.about {
  display: grid;
  min-height: 520px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(16, 17, 18, 0.98), rgba(16, 17, 18, 0.7)),
    radial-gradient(circle at 88% 22%, rgba(159, 184, 166, 0.12), transparent 34%);
}

.promise {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1fr;
  gap: 56px;
  padding: 90px 0 72px;
  border-bottom: 1px solid var(--line);
}

.regional-intro,
.perspective,
.impact,
.regional,
.shooting-locations {
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.regional-intro p,
.perspective p,
.impact p,
.regional p,
.shooting-locations p {
  max-width: 820px;
  font-size: 1.1rem;
}

.impact {
  border-top: 1px solid var(--line);
}

.promise-copy p {
  font-size: 1.12rem;
}

.check-list,
.package-grid ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.package-grid li {
  position: relative;
  padding-left: 28px;
  color: rgba(245, 241, 234, 0.86);
  line-height: 1.55;
}

.check-list li::before,
.package-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 2px;
  background: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
  padding: 82px 0;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 14px;
  align-items: end;
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 3 / 4;
  margin-top: 82px;
}

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

.benefit-grid article,
.steps article,
.package-grid article,
.faq-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.benefit-grid article {
  min-height: 190px;
  padding: 22px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.process,
.packages,
.social-proof,
.faq,
.contact {
  padding: 82px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.steps article {
  min-height: 245px;
  padding: 24px;
}

.steps span {
  display: block;
  margin-bottom: 52px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.package-grid article {
  display: grid;
  min-height: 560px;
  padding: 28px;
}

.package-grid .button {
  align-self: end;
  margin-top: 26px;
}

.price-note {
  align-self: end;
  margin: 24px 0 0;
  color: var(--accent-strong);
  font-weight: 800;
}

.featured-package {
  background: linear-gradient(180deg, rgba(159, 184, 166, 0.16), rgba(24, 26, 27, 1)) !important;
  border-color: rgba(159, 184, 166, 0.45) !important;
}

.quote-band {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0 84px;
}

.quote-band img {
  min-height: 520px;
  background: var(--surface-soft);
}

.quote-band p {
  font-size: 1.14rem;
}

.social-proof {
  border-top: 1px solid var(--line);
}

.testimonial-grid blockquote {
  margin: 0 0 22px;
  color: rgba(245, 241, 234, 0.76);
  font-size: 1rem;
  line-height: 1.62;
}

.testimonial-grid figcaption {
  color: rgba(218, 199, 163, 0.78);
  font-weight: 800;
}

.placeholder-note {
  margin: -14px 0 18px;
  color: rgba(185, 179, 170, 0.72);
  font-size: 0.88rem;
}

.review-link {
  margin-top: 20px;
  font-size: 0.96rem;
}

.review-link a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shooting-locations {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.location-list li {
  padding: 9px 12px;
  color: rgba(245, 241, 234, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-grid article {
  min-height: 160px;
  padding: 24px;
}

.contact {
  border-top: 1px solid var(--line);
  text-align: center;
}

.contact p {
  max-width: 680px;
  margin-inline: auto;
}

.contact-actions {
  justify-content: center;
}

.location-note {
  margin-top: 16px;
  color: rgba(245, 241, 234, 0.92);
}

.map-placeholder {
  display: grid;
  place-items: center;
  width: min(820px, 100%);
  min-height: 130px;
  margin: 24px auto 0;
  padding: 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px dashed rgba(245, 241, 234, 0.24);
  border-radius: 8px;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: min(820px, 100%);
  margin: 34px auto 0;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label,
.privacy-check {
  color: rgba(245, 241, 234, 0.9);
  font-weight: 750;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 4px;
  color: var(--text);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(159, 184, 166, 0.55);
  outline-offset: 2px;
}

.form-row [aria-invalid="true"],
.privacy-check input[aria-invalid="true"] {
  border-color: #d98f8f;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  line-height: 1.55;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.privacy-check a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent-strong);
  text-align: center;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer div {
  display: grid;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 14px;
}

.footer-seo {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
  font-size: 0.9rem;
}

.footer-links button {
  padding: 0;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--accent-strong);
}

.privacy-hint {
  max-width: 560px !important;
  margin-top: 18px;
  font-size: 0.94rem;
}

.response-note {
  max-width: none !important;
  margin: 0;
  text-align: center;
}

.privacy-hint a,
.legal-main a,
.cookie-copy a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.simple-header {
  position: sticky;
}

.legal-hero,
.legal-main {
  width: min(860px, calc(100% - 36px));
  margin-inline: auto;
}

.legal-hero {
  padding: 150px 0 48px;
}

.legal-main {
  padding: 0 0 88px;
}

.legal-main h2 {
  margin: 36px 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.legal-main p {
  margin-bottom: 14px;
}

.legal-note {
  margin-top: 42px;
  padding: 18px;
  background: rgba(159, 184, 166, 0.1);
  border: 1px solid rgba(159, 184, 166, 0.28);
  border-radius: 6px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
  width: min(1080px, calc(100% - 36px));
  margin-inline: auto;
  padding: 22px;
  background: rgba(24, 26, 27, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.cookie-copy h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.cookie-copy p {
  max-width: 640px;
  margin-bottom: 10px;
  font-size: 0.96rem;
}

.cookie-options {
  display: grid;
  gap: 14px;
  min-width: min(430px, 100%);
}

.cookie-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 241, 234, 0.9);
}

.cookie-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 10px 14px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 90vh;
    padding-top: 158px;
  }

  .promise,
  .outcome-grid,
  .fit,
  .split,
  .testimonial-grid,
  .quote-band,
  .image-proof-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .steps,
  .package-grid,
  .method-grid,
  .objection-list,
  .check-list.columns {
    grid-template-columns: 1fr 1fr;
  }

  .image-proof-grid figure {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.32rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 40px;
  }

  .button {
    width: 100%;
  }

  .benefit-grid,
  .steps,
  .package-grid,
  .method-grid,
  .objection-list,
  .check-list.columns,
  .faq-grid,
  .form-grid,
  .image-stack {
    grid-template-columns: 1fr;
  }

  .objection-list article:last-child {
    grid-column: auto;
  }

  .image-proof-grid figure {
    min-height: 360px;
  }

  .image-stack img:last-child {
    margin-top: 0;
  }

  .quote-band img {
    min-height: 340px;
  }

  footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: start;
  }

  .footer-seo {
    justify-content: start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 36px);
    overflow: auto;
  }

  .cookie-actions .button {
    width: 100%;
  }
}

.site-header {
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 17, 18, 0.94);
  border-color: rgba(245, 241, 234, 0.16);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.site-header nav a {
  position: relative;
  transition: color 220ms ease;
}

.site-header nav a.is-active {
  color: var(--accent-strong);
}

.hero > img {
  animation: heroImageDrift 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero::after {
  animation: heroLightShift 5400ms ease-in-out 700ms both;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy > p:not(.eyebrow),
.hero-actions,
.proof-row {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextIn 860ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-copy .eyebrow {
  animation-delay: 120ms;
}

.hero-copy h1 {
  animation-delay: 260ms;
}

.hero-copy > p:not(.eyebrow) {
  animation-delay: 420ms;
}

.hero-actions {
  animation-delay: 580ms;
}

.proof-row {
  animation-delay: 740ms;
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLightShift {
  0% {
    opacity: 0.92;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.96;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 820ms cubic-bezier(0.16, 1, 0.3, 1), transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.stagger.reveal > *,
.reveal .stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.stagger.reveal.is-visible > *,
.reveal.is-visible .stagger > * {
  opacity: 1;
  transform: translateY(0);
}

.button {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.button:focus-visible,
.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible,
.accordion-item button:focus-visible {
  outline: 2px solid rgba(218, 199, 163, 0.8);
  outline-offset: 3px;
}

.button:hover {
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
}

.button.is-loading {
  pointer-events: none;
  opacity: 0.78;
}

.timeline {
  position: relative;
  grid-template-columns: 1fr;
  max-width: 920px;
  margin-inline: auto;
  --timeline-progress: 0;
}

.timeline::before,
.timeline::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(245, 241, 234, 0.14);
}

.timeline::after {
  bottom: auto;
  height: calc((100% - 44px) * var(--timeline-progress));
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  transition: height 180ms linear;
}

.method-grid.timeline article {
  position: relative;
  min-height: auto;
  margin-left: 78px;
  background: rgba(24, 26, 27, 0.7);
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.method-grid.timeline article::before {
  content: "";
  position: absolute;
  left: -56px;
  top: 30px;
  z-index: 1;
  width: 11px;
  height: 11px;
  background: var(--bg);
  border: 1px solid rgba(245, 241, 234, 0.32);
  border-radius: 999px;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.method-grid.timeline article.is-active {
  background: rgba(159, 184, 166, 0.13);
  border-color: rgba(218, 199, 163, 0.42);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.method-grid.timeline article.is-active::before {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 8px rgba(218, 199, 163, 0.12);
}

.method-grid.timeline article.is-active span {
  color: var(--text);
}

.image-proof-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.8fr);
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  align-items: stretch;
}

.image-proof-grid figure {
  transform: translateY(var(--parallax-y, 0));
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1), clip-path 760ms cubic-bezier(0.16, 1, 0.3, 1);
  clip-path: inset(7% 0 7% 0);
}

.reveal.is-visible .image-proof-grid figure {
  clip-path: inset(0);
}

.image-proof-grid figure:first-child {
  grid-row: 1 / 3;
  min-height: 680px;
}

.image-proof-grid figure:not(:first-child) {
  min-height: auto;
}

.package-badge {
  justify-self: start;
  margin: -4px 0 16px;
  padding: 7px 10px;
  color: var(--text);
  background: rgba(218, 199, 163, 0.14);
  border: 1px solid rgba(218, 199, 163, 0.28);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.package-grid article {
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.package-grid article:hover,
.package-grid article:focus-within {
  transform: translateY(-4px);
  border-color: rgba(218, 199, 163, 0.36);
  box-shadow: 0 22px 74px rgba(0, 0, 0, 0.28);
}

.packages.is-visible .package-grid article:hover,
.packages.is-visible .package-grid article:focus-within {
  transform: translateY(-4px);
}

.accordion {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 940px;
  margin-inline: auto;
}

.accordion .accordion-item,
.accordion .accordion-item:last-child {
  grid-column: auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  color: var(--text);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.accordion-item button::after {
  content: "+";
  color: var(--accent-strong);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.accordion-item.is-open {
  border-color: rgba(218, 199, 163, 0.36);
  background: rgba(159, 184, 166, 0.1);
}

.accordion-item.is-open button::after {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.accordion-panel p {
  margin: 0;
  padding: 0 26px 26px;
}

.contact-form {
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.contact-form:focus-within {
  border-color: rgba(218, 199, 163, 0.28);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.form-status {
  padding: 0;
  border-radius: 4px;
  transition: background 220ms ease, padding 220ms ease;
}

.form-status:not(:empty) {
  padding: 12px 14px;
  background: rgba(218, 199, 163, 0.12);
  border: 1px solid rgba(218, 199, 163, 0.22);
}

.sticky-mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 15;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  color: #111412;
  background: var(--accent);
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: 4px;
  font-weight: 900;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

@media (max-width: 980px) {
  .timeline::before,
  .timeline::after {
    left: 18px;
  }

  .method-grid.timeline article {
    margin-left: 44px;
  }

  .method-grid.timeline article::before {
    left: -31px;
  }

  .image-proof-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .image-proof-grid figure:first-child {
    grid-row: auto;
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .hero > img {
    animation-duration: 900ms;
  }

  .image-proof-grid {
    display: flex;
    gap: 12px;
    margin-inline: -18px;
    padding: 0 18px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .image-proof-grid figure,
  .image-proof-grid figure:first-child {
    flex: 0 0 min(86vw, 420px);
    min-height: 420px;
    scroll-snap-align: start;
    transform: none !important;
  }

  .sticky-mobile-cta {
    display: flex;
  }

  body.has-sticky-cta {
    padding-bottom: 70px;
  }

  .cookie-banner {
    bottom: 78px;
  }
}

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

  .reveal,
  .stagger.reveal > *,
  .reveal .stagger > *,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy > p:not(.eyebrow),
  .hero-actions,
  .proof-row {
    opacity: 1 !important;
    transform: none !important;
  }

  .image-proof-grid figure {
    clip-path: none !important;
  }
}

.visual-break {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  min-height: 620px;
  display: grid;
  align-items: end;
  margin-inline: auto;
  padding: 72px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(16, 17, 18, 0.96), rgba(16, 17, 18, 0.52)),
    var(--surface-soft);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.visual-break img {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.visual-break-copy {
  max-width: 700px;
}

.visual-break-copy h2 {
  max-width: 760px;
}

.is-image-missing > img,
.visual-break.is-image-missing img,
.about-portrait.is-image-missing img {
  display: none;
}

.is-image-missing {
  background:
    linear-gradient(135deg, rgba(159, 184, 166, 0.1), rgba(218, 199, 163, 0.08)),
    var(--surface-soft);
}

.image-proof-grid {
  grid-template-columns: minmax(0, 1.42fr) minmax(230px, 0.78fr);
  grid-template-rows: repeat(3, minmax(190px, 1fr));
  margin-top: 18px;
}

.image-proof-grid figure:first-child {
  grid-row: 1 / 4;
  min-height: 720px;
}

.image-proof-grid figure:nth-child(3) {
  transform: translateY(calc(var(--parallax-y, 0) + 22px));
}

.image-proof-grid figure:nth-child(4) {
  margin-left: -56px;
  transform: translateY(calc(var(--parallax-y, 0) - 12px));
}

.about {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  min-height: 620px;
}

.about-portrait {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 6px;
}

.about-portrait img {
  min-height: 560px;
}


.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .visual-break,
  .about {
    grid-template-columns: 1fr;
  }

  .visual-break {
    min-height: 540px;
    padding: 46px 28px;
  }

  .about-portrait,
  .about-portrait img {
    min-height: 460px;
  }

  .image-proof-grid figure:first-child {
    grid-row: auto;
    min-height: 520px;
  }

  .image-proof-grid figure:nth-child(3),
  .image-proof-grid figure:nth-child(4) {
    margin-left: 0;
    transform: translateY(var(--parallax-y, 0));
  }
}

@media (max-width: 640px) {
  .visual-break {
    width: min(var(--max), calc(100% - 36px));
    min-height: 480px;
    padding: 34px 22px;
  }
}
