:root {
  --ink: #080b09;
  --ink-soft: #101511;
  --ink-raised: #171c18;
  --paper: #efede6;
  --paper-soft: #e7e4da;
  --white: #f8f7f2;
  --muted: #a9aea8;
  --paper-muted: #696d67;
  --accent: #a8c875;
  --accent-bright: #c0df8b;
  --steel: #8c9794;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(8, 11, 9, 0.18);
  --shell: 1320px;
  --header-height: 76px;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

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

button,
a[href],
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--accent-bright);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(168, 200, 117, 0.8);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 max(28px, calc((100vw - var(--shell)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 9, 7, 0.82);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 9, 7, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-lockup {
  display: grid;
  gap: 2px;
}

.brand-wordmark {
  width: 151px;
  height: auto;
  object-fit: contain;
}

.brand-lockup > span {
  color: #c6cac5;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: #c6cac5;
  font-size: 13px;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -9px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  font-size: 13px;
  font-weight: 700;
}

.header-cta,
.primary-action,
.line-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  color: var(--ink);
  background: var(--accent-bright);
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta {
  min-height: 40px;
  padding: 0 18px;
  color: var(--white);
  background: transparent;
  font-size: 13px;
}

.header-cta:hover,
.primary-action:hover {
  color: var(--ink);
  border-color: #d4ef9f;
  background: #d4ef9f;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 32px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: #050806;
}

.hero-picture,
.hero-picture img,
.hero-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 7, 5, 0.98) 0%, rgba(4, 7, 5, 0.86) 33%, rgba(4, 7, 5, 0.27) 62%, rgba(4, 7, 5, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 7, 5, 0.72) 0%, transparent 34%);
}

.hero-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
  padding: calc(var(--header-height) + 64px) 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 1fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  color: #d9ddd7;
  font-style: normal;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 20px;
}

.hero-price span {
  color: #bdc2bc;
  font-size: 13px;
}

.hero-price strong {
  color: var(--accent-bright);
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #c8ccc7;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.primary-action {
  min-height: 54px;
}

.primary-action span,
.line-action span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.action-arrow {
  font-family: Arial, sans-serif;
  font-variant-emoji: text;
  line-height: 1;
}

.primary-action:hover span,
.line-action:hover span {
  transform: translate(2px, -2px);
}

.quiet-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d7dad5;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  padding-bottom: 5px;
  transition: color 180ms ease, border-color 180ms ease;
}

.quiet-action:hover {
  color: var(--accent-bright);
  border-color: var(--accent);
}

.hero-consultation {
  max-width: 630px;
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  color: #aeb3ad;
  font-size: 13px;
}

.hero-consultation strong {
  color: var(--white);
}

.offer-window {
  justify-self: end;
  align-self: end;
  width: min(100%, 340px);
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid rgba(192, 223, 139, 0.5);
  border-radius: 4px;
  background: rgba(8, 12, 9, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.offer-window[hidden] {
  display: none;
}

.offer-window-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-bright);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-window > strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.offer-window > p {
  margin-bottom: 0;
  color: #bcc1bb;
  font-size: 13px;
}

.deadline-countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.deadline-countdown[hidden] {
  display: none;
}

.deadline-countdown span {
  display: grid;
  gap: 2px;
}

.deadline-countdown b {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.deadline-countdown small {
  color: var(--muted);
  font-size: 10px;
}

.deadline-countdown i {
  color: var(--accent);
  font-style: normal;
}

.trust-rail {
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: max(32px, calc((100vw - var(--shell)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 8, 6, 0.86);
  backdrop-filter: blur(14px);
}

.trust-rail > div {
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 20px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-rail > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-rail strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.trust-rail span {
  color: var(--muted);
  font-size: 11px;
}

.protection {
  padding: 132px 0 144px;
  background:
    linear-gradient(130deg, rgba(168, 200, 117, 0.035), transparent 42%),
    var(--ink);
}

.protection-heading,
.proof-heading,
.process-heading,
.location-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 80px;
}

.protection-heading {
  margin-bottom: 68px;
  column-gap: 80px;
  row-gap: 0;
}

.protection-heading .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.protection-heading h2 {
  grid-column: 1;
  grid-row: 2;
}

.protection-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

.protection-heading h2,
.proof-heading h2,
.process-heading h2,
.location-heading h2,
.scope h2,
.assurance h2,
.reviews h2,
.faq h2,
.final-cta h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1.04;
}

.protection-heading > p:last-child,
.proof-heading > p,
.process-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
}

.skin-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(340px, 0.75fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #0b0f0c;
}

.skin-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  background: #090c0a;
  aspect-ratio: 16 / 9;
}

.skin-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 7, 5, 0.78));
  pointer-events: none;
}

.skin-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skin-visual figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 28px 26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.skin-visual figcaption span {
  color: var(--accent-bright);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.skin-visual figcaption strong {
  max-width: 300px;
  text-align: right;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.skin-facts {
  display: grid;
  grid-template-rows: repeat(3, auto) 1fr;
}

.skin-fact {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line-dark);
}

.skin-fact > span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 18px;
}

.skin-fact strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.skin-fact p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.skin-summary {
  display: grid;
  align-content: end;
  padding: 28px;
  background: linear-gradient(145deg, rgba(168, 200, 117, 0.13), transparent);
}

.skin-summary > span,
.skin-summary small {
  color: var(--muted);
  font-size: 11px;
}

.skin-summary strong {
  margin: 8px 0 4px;
  color: var(--accent-bright);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.scope {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  color: var(--ink);
  background: var(--paper);
}

.scope-media {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  background: #161a17;
}

.scope-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 8, 6, 0.72), transparent 48%);
  pointer-events: none;
}

.scope-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scope-media-caption {
  position: absolute;
  z-index: 1;
  inset: auto 52px 48px;
  display: grid;
  gap: 6px;
  color: var(--white);
}

.scope-media-caption span {
  color: var(--accent-bright);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.scope-media-caption strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.scope-copy {
  width: min(100%, 680px);
  padding: 112px 70px 100px;
}

.scope-copy .eyebrow {
  color: #50623b;
}

.scope h2 {
  max-width: 600px;
  margin-bottom: 24px;
}

.scope-intro {
  max-width: 590px;
  margin-bottom: 40px;
  color: var(--paper-muted);
}

.scope-list {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.scope-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.scope-list li > span {
  color: #6d7e51;
  font-family: var(--serif);
  font-size: 18px;
}

.scope-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.scope-list p {
  margin-bottom: 0;
  color: var(--paper-muted);
  font-size: 12px;
}

.scope-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.scope-price span {
  color: var(--paper-muted);
  font-size: 12px;
}

.scope-price strong {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
}

.primary-action-light {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.primary-action-light:hover {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent);
}

.proof {
  padding: 136px 0 144px;
  background: #0b0e0c;
}

.proof-heading {
  margin-bottom: 58px;
}

.work-carousel {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #080b09;
}

.carousel-stage {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.carousel-image-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: #080b09;
  cursor: zoom-in;
}

.carousel-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 500ms ease;
}

.carousel-image-button:hover img {
  transform: scale(1.012);
}

.carousel-stage::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(0deg, rgba(4, 7, 5, 0.92), transparent);
  pointer-events: none;
}

.carousel-caption {
  position: absolute;
  z-index: 2;
  inset: auto 36px 30px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  max-width: 720px;
  pointer-events: none;
}

.carousel-caption > span {
  color: var(--accent-bright);
  font-family: var(--serif);
  font-size: 18px;
}

.carousel-caption strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.carousel-caption p {
  margin-bottom: 0;
  color: #b9beba;
  font-size: 13px;
}

.carousel-controls {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  display: flex;
  gap: 8px;
}

.carousel-controls button,
.gallery-close,
.dialog-close {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 2px;
  color: var(--white);
  background: rgba(5, 8, 6, 0.74);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.carousel-controls button:hover,
.gallery-close:hover,
.dialog-close:hover {
  color: var(--ink);
  border-color: var(--accent-bright);
  background: var(--accent-bright);
}

.carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.carousel-thumbs button {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.55 / 1;
  padding: 0;
  overflow: hidden;
  background: #101410;
  cursor: pointer;
}

.carousel-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(0.7);
  transition: opacity 180ms ease, filter 180ms ease, transform 240ms ease;
}

.carousel-thumbs button:hover img,
.carousel-thumbs button[aria-selected="true"] img {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1.025);
}

.carousel-thumbs button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--accent-bright);
}

.carousel-thumbs span {
  position: absolute;
  right: 9px;
  bottom: 6px;
  color: var(--white);
  font-size: 10px;
  text-shadow: 0 1px 6px #000;
}

.process {
  padding: 132px 0 140px;
  color: var(--ink);
  background: var(--paper);
}

.process .eyebrow {
  color: #586b40;
}

.process-heading {
  margin-bottom: 74px;
}

.process-heading > p {
  color: var(--paper-muted);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.process-track article {
  min-height: 280px;
  padding: 28px 25px 12px;
  border-right: 1px solid var(--line-light);
}

.process-track article:first-child {
  border-left: 1px solid var(--line-light);
}

.process-track article > span {
  display: block;
  margin-bottom: 42px;
  color: #66794b;
  font-family: var(--serif);
  font-size: 24px;
}

.process-track small {
  display: block;
  min-height: 18px;
  margin-bottom: 9px;
  color: var(--paper-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.process-track h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

.process-track p {
  margin-bottom: 0;
  color: var(--paper-muted);
  font-size: 12px;
}

.concierge {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.concierge-media,
.concierge-media::after,
.concierge-media img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.concierge-media img {
  object-fit: cover;
  object-position: center;
}

.concierge-media::after {
  content: "";
  z-index: 0;
  background: linear-gradient(90deg, rgba(5, 8, 6, 0.97) 0%, rgba(5, 8, 6, 0.82) 46%, rgba(5, 8, 6, 0.28) 100%);
}

.concierge-inner {
  padding-block: 100px;
}

.concierge-inner h2 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 400;
  line-height: 1.02;
}

.concierge-inner > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 30px;
  color: #c0c5bf;
}

.line-action {
  min-height: 48px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.line-action:hover {
  color: var(--ink);
  border-color: var(--accent-bright);
  background: var(--accent-bright);
}

.assurance {
  padding: 130px 0;
  background:
    radial-gradient(circle at 18% 40%, rgba(168, 200, 117, 0.14), transparent 32%),
    #111612;
}

.assurance-shell {
  display: grid;
  grid-template-columns: 0.65fr 1.15fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.assurance-number {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 280px;
  border-right: 1px solid var(--line-dark);
}

.assurance-number strong {
  color: var(--accent-bright);
  font-family: var(--serif);
  font-size: 180px;
  font-weight: 400;
  line-height: 0.75;
}

.assurance-number span {
  margin-top: 24px;
  color: #c8cdc7;
  font-size: 15px;
}

.assurance-copy h2 {
  margin-bottom: 24px;
}

.assurance-copy > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.assurance-notes {
  border-top: 1px solid var(--line-dark);
}

.assurance-notes > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.assurance-notes span {
  grid-row: 1 / 3;
  color: var(--accent);
  font-family: var(--serif);
}

.assurance-notes strong {
  font-size: 14px;
}

.assurance-notes p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.reviews {
  padding: 132px 0;
  color: var(--ink);
  background: var(--paper-soft);
}

.reviews .eyebrow {
  color: #586b40;
}

.reviews-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 100px;
  align-items: start;
}

.reviews-summary h2 {
  max-width: 720px;
  margin-bottom: 24px;
}

.reviews-summary > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--paper-muted);
}

.primary-action-dark {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.review-themes {
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}

.review-themes > p {
  margin-bottom: 20px;
  color: var(--paper-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.review-themes > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-light);
}

.review-themes span {
  color: #65784a;
  font-family: var(--serif);
}

.review-themes strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.review-themes > a {
  display: inline-flex;
  gap: 12px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

.location {
  padding: 132px 0 0;
  background: #0a0d0b;
}

.location-heading {
  margin-bottom: 58px;
}

.location-heading > div:last-child {
  padding-left: 28px;
  border-left: 1px solid var(--line-dark);
}

.location-heading > div:last-child p {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
}

.location-heading > div:last-child span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.location-map {
  position: relative;
  height: 570px;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(0.96);
}

.map-overlay {
  position: absolute;
  left: max(32px, calc((100vw - var(--shell)) / 2));
  bottom: 34px;
  width: min(420px, calc(100% - 64px));
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(7, 10, 8, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.map-overlay > span {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-bright);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-overlay strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.map-overlay a {
  display: inline-flex;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}

.faq {
  padding: 132px 0 140px;
  color: var(--ink);
  background: var(--paper);
}

.faq .eyebrow {
  color: #586b40;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 20px;
}

.faq-heading > p:last-child {
  color: var(--paper-muted);
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 25px 46px 25px 0;
  font-family: var(--serif);
  font-size: 22px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 3px;
  color: #5f7343;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -7px 0 26px;
  color: var(--paper-muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.final-cta > picture,
.final-cta > picture img,
.final-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > picture img {
  object-fit: cover;
  object-position: center;
}

.final-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 8, 6, 0.97), rgba(5, 8, 6, 0.72) 52%, rgba(5, 8, 6, 0.2));
}

.final-inner {
  padding-block: 100px;
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: 64px;
}

.final-inner > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: #c1c6c0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 60px;
  padding: 42px max(32px, calc((100vw - var(--shell)) / 2));
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  background: #050806;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 13px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--accent-bright);
}

.site-footer > p {
  grid-column: 1 / -1;
  max-width: 980px;
  margin-bottom: 0;
  font-size: 10px;
  line-height: 1.6;
}

.contact-sheet,
.gallery-dialog {
  margin: auto;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
}

.contact-sheet::backdrop,
.gallery-dialog::backdrop {
  background: rgba(2, 4, 3, 0.84);
  backdrop-filter: blur(8px);
}

.contact-sheet {
  width: min(680px, calc(100% - 32px));
}

.contact-sheet-inner {
  position: relative;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: #0b0f0c;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.5);
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
}

.contact-sheet h2 {
  max-width: 520px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.05;
}

.contact-sheet-inner > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.contact-list a {
  min-height: 74px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: color 180ms ease, background 180ms ease;
}

.contact-list a:hover {
  color: var(--ink);
  background: var(--accent-bright);
}

.contact-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.contact-list strong {
  font-size: 14px;
}

.contact-list i {
  font-style: normal;
}

.contact-sheet small {
  display: block;
  margin-top: 16px;
  color: #7f867f;
  font-size: 10px;
}

.gallery-dialog {
  width: min(1420px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
}

.gallery-dialog[open] {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.gallery-dialog img {
  width: 100%;
  max-height: calc(100svh - 110px);
  object-fit: contain;
  background: #050806;
}

.gallery-dialog p {
  margin: 0;
  padding: 14px 52px 14px 18px;
  background: #0b0f0c;
  font-size: 13px;
}

.gallery-close {
  position: fixed;
  z-index: 2;
  top: 25px;
  right: 25px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 13px 17px;
  border: 1px solid rgba(192, 223, 139, 0.46);
  border-radius: 3px;
  color: var(--white);
  background: rgba(7, 10, 8, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 690px) minmax(240px, 1fr);
  }

  .protection-heading h2,
  .proof-heading h2,
  .process-heading h2,
  .location-heading h2,
  .scope h2,
  .assurance h2,
  .reviews h2,
  .faq h2 {
    font-size: 48px;
  }

  .scope-copy {
    padding-inline: 52px;
  }

  .process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-track article:nth-child(3) {
    border-right: 0;
  }

  .process-track article:nth-child(n + 4) {
    border-top: 1px solid var(--line-light);
  }

  .assurance-shell {
    grid-template-columns: 0.55fr 1fr;
  }

  .assurance-notes {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .assurance-notes > div:first-child {
    border-right: 1px solid var(--line-dark);
    padding-right: 28px;
  }

  .assurance-notes > div:last-child {
    padding-left: 28px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .section-shell,
  .hero-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .site-header {
    padding-inline: 20px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 24px);
  }

  .hero-shell {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: calc(var(--header-height) + 52px);
  }

  .hero h1 {
    font-size: 54px;
  }

  .offer-window {
    justify-self: start;
    margin: 0;
  }

  .trust-rail {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 20px;
  }

  .trust-rail > div:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-rail > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .protection-heading,
  .proof-heading,
  .process-heading,
  .location-heading,
  .reviews-shell,
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .protection-heading .eyebrow,
  .protection-heading h2,
  .protection-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .skin-ledger {
    grid-template-columns: 1fr;
  }

  .skin-visual {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .scope {
    grid-template-columns: 1fr;
  }

  .scope-media {
    min-height: 680px;
  }

  .scope-copy {
    width: 100%;
    padding: 88px 40px;
  }

  .carousel-stage {
    min-height: 500px;
  }

  .carousel-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track article {
    border-top: 1px solid var(--line-light);
  }

  .process-track article:nth-child(odd) {
    border-left: 1px solid var(--line-light);
  }

  .process-track article:nth-child(even) {
    border-right: 1px solid var(--line-light);
  }

  .assurance-shell {
    grid-template-columns: 0.42fr 1fr;
    gap: 42px;
  }

  .reviews-shell {
    gap: 60px;
  }

  .faq-heading {
    position: static;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .hero-shell {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 24px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 60px;
  }

  .hero-price {
    margin-bottom: 14px;
  }

  .hero-price strong {
    font-size: 34px;
  }

  .hero-lead {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .hero-actions {
    margin-bottom: 20px;
  }

  .hero-consultation {
    font-size: 11px;
  }

  .trust-rail {
    min-height: 90px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .section-shell,
  .hero-shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-inline: 15px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-wordmark {
    width: 124px;
  }

  .brand-lockup > span {
    font-size: 8px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 18px);
  }

  .hero-picture img {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4, 7, 5, 0.98) 0%, rgba(4, 7, 5, 0.88) 48%, rgba(4, 7, 5, 0.32) 100%),
      linear-gradient(90deg, rgba(4, 7, 5, 0.86), transparent);
  }

  .hero-shell {
    padding: 128px 0 40px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 470px;
    margin-bottom: 19px;
    font-size: 40px;
    line-height: 1.01;
  }

  .hero-price {
    display: grid;
    gap: 7px;
  }

  .hero-price strong {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
    gap: 18px;
  }

  .primary-action {
    width: 100%;
    padding-inline: 17px;
    font-size: 13px;
  }

  .hero-consultation {
    font-size: 11px;
  }

  .offer-window {
    width: 100%;
  }

  .trust-rail {
    padding-inline: 15px;
  }

  .trust-rail > div {
    min-height: 86px;
    padding: 15px 13px;
  }

  .trust-rail strong {
    font-size: 19px;
  }

  .trust-rail span {
    font-size: 9px;
    line-height: 1.35;
  }

  .protection,
  .proof,
  .process,
  .assurance,
  .reviews,
  .location,
  .faq {
    padding-top: 86px;
  }

  .protection {
    padding-bottom: 92px;
  }

  .protection-heading,
  .proof-heading,
  .process-heading,
  .location-heading {
    margin-bottom: 38px;
  }

  .protection-heading h2,
  .proof-heading h2,
  .process-heading h2,
  .location-heading h2,
  .scope h2,
  .assurance h2,
  .reviews h2,
  .faq h2 {
    font-size: 37px;
  }

  .proof-heading {
    gap: 18px;
  }

  .proof-heading h2 {
    font-size: 32px;
    line-height: 1.04;
  }

  .proof-heading h2 br {
    display: none;
  }

  .protection-heading > p:last-child,
  .proof-heading > p,
  .process-heading > p {
    font-size: 13px;
  }

  .skin-visual {
    aspect-ratio: 4 / 3;
  }

  .skin-visual img {
    object-position: 65% center;
  }

  .skin-visual figcaption {
    inset: auto 16px 15px;
    display: grid;
    gap: 4px;
  }

  .skin-visual figcaption strong {
    text-align: left;
    font-size: 17px;
  }

  .skin-fact {
    padding: 20px 18px;
  }

  .skin-summary {
    padding: 22px 18px;
  }

  .scope-media {
    min-height: 520px;
  }

  .scope-media-caption {
    inset: auto 22px 22px;
  }

  .scope-copy {
    padding: 64px 15px 40px;
  }

  .scope-price {
    display: grid;
    gap: 8px;
  }

  .scope-price strong {
    font-size: 36px;
  }

  .proof {
    padding-bottom: 76px;
  }

  .work-carousel {
    width: 100%;
    border-inline: 0;
  }

  .carousel-stage {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .carousel-image-button img {
    object-position: center;
  }

  .carousel-caption {
    inset: auto 16px 76px;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .carousel-caption strong {
    font-size: 20px;
  }

  .carousel-caption p {
    font-size: 11px;
  }

  .carousel-controls {
    right: auto;
    left: 16px;
    bottom: 16px;
  }

  .carousel-controls button {
    width: 44px;
    height: 44px;
  }

  .carousel-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process {
    padding-top: 68px;
    padding-bottom: 88px;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track article,
  .process-track article:nth-child(n) {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0 14px;
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-track article > span {
    grid-row: 1 / 4;
    margin: 0;
  }

  .process-track small {
    margin: 0 0 5px;
  }

  .process-track h3 {
    margin-bottom: 7px;
  }

  .concierge {
    min-height: 600px;
  }

  .concierge-media::after {
    background: linear-gradient(0deg, rgba(5, 8, 6, 0.97), rgba(5, 8, 6, 0.48));
  }

  .concierge-inner h2 {
    font-size: 44px;
  }

  .assurance {
    padding-bottom: 92px;
  }

  .assurance-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .assurance-number {
    min-height: 0;
    display: flex;
    align-items: baseline;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding-bottom: 34px;
  }

  .assurance-number strong {
    font-size: 110px;
  }

  .assurance-number span {
    margin: 0;
  }

  .assurance-notes {
    display: block;
    grid-column: auto;
  }

  .assurance-notes > div:first-child,
  .assurance-notes > div:last-child {
    border-right: 0;
    padding-inline: 0;
  }

  .reviews {
    padding-bottom: 92px;
  }

  .review-themes strong {
    font-size: 17px;
  }

  .location {
    padding-bottom: 0;
  }

  .location-heading > div:last-child {
    padding-left: 18px;
  }

  .location-heading > div:last-child p {
    font-size: 20px;
  }

  .location-map {
    height: 520px;
  }

  .map-overlay {
    left: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
    padding: 20px;
  }

  .map-overlay strong {
    font-size: 20px;
  }

  .faq {
    padding-bottom: 92px;
  }

  .faq-list summary {
    padding-block: 22px;
    font-size: 19px;
  }

  .final-cta {
    min-height: 580px;
  }

  .final-shade {
    background: linear-gradient(0deg, rgba(5, 8, 6, 0.98), rgba(5, 8, 6, 0.42));
  }

  .final-cta h2 {
    font-size: 44px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 15px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .contact-sheet {
    width: calc(100% - 20px);
  }

  .contact-sheet-inner {
    max-height: calc(100svh - 20px);
    overflow-y: auto;
    padding: 36px 18px 24px;
  }

  .contact-sheet h2 {
    padding-right: 34px;
    font-size: 34px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .gallery-dialog {
    width: calc(100% - 12px);
  }

  .toast {
    right: 12px;
    bottom: 76px;
    left: 12px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
