@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Masha";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/assets/fonts/cormorant-cyrillic-400.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Masha";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/assets/fonts/cormorant-latin-400.woff2") format("woff2");
  unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F;
}

@font-face {
  font-family: "Cormorant Masha";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/assets/fonts/cormorant-cyrillic-600.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Masha";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/assets/fonts/cormorant-latin-600.woff2") format("woff2");
  unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F;
}

@font-face {
  font-family: "Cormorant Masha";
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url("/assets/fonts/cormorant-cyrillic-400-italic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Masha";
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url("/assets/fonts/cormorant-latin-400-italic.woff2") format("woff2");
  unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F;
}

@font-face {
  font-family: "UnifrakturCook";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("/assets/fonts/unifrakturcook-700.woff2") format("woff2");
}

:root {
  --ink: #08090a;
  --coal: #101214;
  --coal-soft: #15181a;
  --graphite: #1c2023;
  --graphite-light: #292e32;
  --paper: #ebe9e4;
  --paper-muted: #aeb0b1;
  --wine: #421615;
  --wine-light: #6b2926;
  --accent-mist: #a3706d;
  --red: #421615;
  --line-dark: rgba(235, 233, 228, 0.16);
  --line-strong: rgba(235, 233, 228, 0.28);
  --header-height: 68px;
  --display: "Cormorant Masha", Georgia, serif;
  --sans: "Manrope Variable", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 88% 18%, rgba(66, 22, 21, 0.2), transparent 27rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.menu-open, body.lightbox-open { overflow: hidden; }
::selection { background: var(--wine-light); color: #fff; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-dark);
  background: rgba(8, 9, 10, 0.9);
  backdrop-filter: blur(18px);
}

.menu-open .site-header { backdrop-filter: none; }

.brand {
  position: relative;
  z-index: 102;
  color: var(--paper);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span { display: block; width: 24px; height: 1px; background: var(--paper); transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.site-nav {
  position: fixed;
  z-index: 101;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 86px 24px 30px;
  opacity: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(66, 22, 21, 0.5), transparent 18rem),
    var(--ink);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.site-nav.is-open { visibility: visible; opacity: 1; }

.site-nav > a:not(.nav-cta) {
  width: 100%;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: clamp(27px, 8.5vw, 44px);
  font-weight: 600;
  line-height: 1.08;
}

.site-nav .nav-cta {
  width: 100%;
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.nav-socials { display: flex; gap: 9px; margin-top: 18px; }

.site-nav .nav-socials a,
.about-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.nav-socials svg, .about-socials svg, .contact-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(4, 5, 6, 0.68) 0%, rgba(4, 5, 6, 0.12) 32%, rgba(4, 5, 6, 0.46) 65%, rgba(4, 5, 6, 0.95) 100%),
    linear-gradient(90deg, rgba(4, 5, 6, 0.64), transparent 62%);
}

.hero::after {
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 10, 0.86));
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
  filter: grayscale(1) contrast(1.08) brightness(0.72);
}

.hero-grain {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto auto;
  padding: 104px 16px 24px;
}

.hero-kicker {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 18px;
  color: #d0d0ce;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-message { align-self: end; max-width: 590px; margin-bottom: 28px; }

.hero h1,
.section-head h2,
.about-copy h2,
.price-copy h2,
.faq-title h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.87;
  text-wrap: balance;
}

.hero h1 {
  width: max-content;
  max-width: 100%;
  color: var(--paper);
  font-family: "UnifrakturCook", Georgia, serif;
  font-size: clamp(61px, 18.3vw, 102px);
  letter-spacing: -0.045em;
  line-height: 0.78;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.52);
}

.hero-line {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(29px, 8vw, 46px);
  font-weight: 600;
  line-height: 0.98;
}

.hero-intro {
  max-width: 560px;
  margin: 16px 0 0;
  color: #d0d0ce;
  font-size: 12px;
  line-height: 1.65;
}

.hero-actions { display: grid; gap: 9px; margin-top: 22px; }

.button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:active { transform: translateY(1px); }
.button-primary { border-color: var(--wine); background: var(--wine); color: #fff; }
.button-ghost { border-color: var(--line-strong); background: rgba(8, 9, 10, 0.2); color: var(--paper); backdrop-filter: blur(8px); }
.button-light { max-width: 360px; border-color: var(--paper); background: var(--paper); color: var(--ink); }

.external-arrow {
  font-family: Arial, Helvetica, sans-serif;
  font-variant-emoji: text;
  font-style: normal;
  line-height: 1;
}

.hero-index { position: absolute; z-index: 4; }
.hero-index { right: 16px; top: 89px; font-size: 8px; font-weight: 700; letter-spacing: 0.22em; }
.hero-scroll { display: none; }

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #0d0f10;
}

.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker 42s linear infinite;
}

.ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  padding: 0;
}

.ticker-item {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 19px;
  padding: 14px 0 14px 26px;
  color: var(--paper-muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.19em;
  white-space: nowrap;
}

.ticker-item i { color: var(--accent-mist); font-size: 8px; font-style: normal; }
@keyframes ticker { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

.section, .directions, .about, .price, .faq, .contact {
  padding: 88px max(16px, calc((100% - 1320px) / 2));
}

.section-head { display: grid; gap: 18px; margin-bottom: 46px; }

.eyebrow {
  margin: 0;
  color: var(--accent-mist);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-head h2, .about-copy h2, .price-copy h2, .faq-title h2 { font-size: clamp(53px, 15vw, 88px); }
.section-head h2 em, .about-copy h2 em, .price-copy h2 em, .faq-title h2 em, .contact h2 em { color: var(--accent-mist); font-weight: 400; }
.section-head > p:last-child { max-width: 520px; margin: 0; color: var(--paper-muted); font-size: 13px; }

.portfolio {
  background:
    radial-gradient(circle at 88% 5%, rgba(66, 22, 21, 0.24), transparent 26rem),
    linear-gradient(180deg, var(--ink), #0d0f10 55%, var(--coal));
}

.gallery-tabs {
  display: flex;
  width: calc(100% + 32px);
  margin: 0 -16px 34px;
  padding: 0 16px;
  gap: 22px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line-dark);
  scrollbar-width: none;
}

.gallery-tabs::-webkit-scrollbar { display: none; }

.gallery-tab {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 13px;
  border: 0;
  background: none;
  color: #7f8385;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent-mist);
  transition: transform 180ms ease;
}

.gallery-tab.is-active { color: var(--paper); }
.gallery-tab.is-active::after { transform: scaleX(1); }
.gallery-tab sup { margin-left: 3px; color: var(--accent-mist); font-size: 8px; }

.masonry-grid { columns: 1; column-gap: 12px; }

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid rgba(235, 233, 228, 0.08);
  background: var(--coal-soft);
  cursor: zoom-in;
}

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

.gallery-card img { width: 100%; height: auto; transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease; }

.gallery-meta {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 10px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.gallery-meta span { color: #c78e8b; }

.about {
  position: relative;
  display: grid;
  gap: 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(66, 22, 21, 0.28), transparent 25rem),
    linear-gradient(145deg, #191c1f 0%, #111315 52%, #0b0c0d 100%);
}

.about::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background: repeating-linear-gradient(120deg, transparent 0 84px, rgba(255,255,255,.028) 85px, transparent 86px);
}

.about-mark {
  position: absolute;
  top: -65px;
  left: -15px;
  color: rgba(235, 233, 228, 0.035);
  font-family: "UnifrakturCook", Georgia, serif;
  font-size: 330px;
  line-height: 1;
  pointer-events: none;
}

.about-copy, .about-portrait { position: relative; z-index: 1; }
.about-copy .eyebrow { margin-bottom: 26px; }
.about-lead { max-width: 760px; margin: 34px 0 0; font-family: var(--display); font-size: clamp(24px, 6.8vw, 40px); font-weight: 400; line-height: 1.2; }
.about-columns { display: grid; gap: 18px; margin-top: 30px; }
.about-columns p { margin: 0; color: var(--paper-muted); font-size: 13px; }

.about-portrait { width: min(100%, 480px); justify-self: center; margin: 0; }

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.05);
}

.about-portrait figcaption { display: flex; justify-content: space-between; gap: 16px; margin-top: 13px; color: var(--paper-muted); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.about-portrait figcaption span:first-child { color: var(--paper); font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: 0.04em; text-transform: none; }
.about-socials { display: flex; justify-content: flex-end; gap: 9px; margin-top: 18px; }

.directions {
  background:
    radial-gradient(circle at 15% 88%, rgba(66, 22, 21, 0.42), transparent 28rem),
    linear-gradient(160deg, #0c0d0e, #1a1d1f 56%, #111315);
}

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

.direction-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.direction-item > span { grid-row: span 2; color: var(--accent-mist); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; }
.direction-item h3 { margin: 0; font-family: var(--display); font-size: clamp(29px, 8vw, 42px); font-weight: 600; line-height: 1; }
.direction-item p { max-width: 620px; margin: 0; color: var(--paper-muted); font-size: 12px; }
.direction-foot { display: grid; gap: 22px; margin-top: 38px; }
.direction-foot p { max-width: 640px; margin: 0; color: var(--paper-muted); font-size: 13px; }

.text-link { width: fit-content; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }

.process { background: linear-gradient(180deg, #111315, #16191b 55%, #101214); }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.process-list li { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--line-dark); }
.process-list li > span { color: var(--accent-mist); font-size: 9px; font-weight: 750; letter-spacing: 0.12em; }
.process-list h3 { margin: 0; font-family: var(--display); font-size: 29px; font-weight: 600; line-height: 1.1; }
.process-list p { max-width: 600px; margin: 10px 0 0; color: var(--paper-muted); font-size: 12px; }

.price {
  display: grid;
  gap: 44px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 86% 50%, rgba(66, 22, 21, 0.48), transparent 31rem),
    linear-gradient(105deg, #25292c, #121416 65%);
}

.price-label { color: var(--accent-mist); font-size: 9px; font-weight: 750; letter-spacing: 0.18em; text-transform: uppercase; }
.price-copy p { max-width: 700px; margin: 30px 0 0; color: var(--paper-muted); font-size: 14px; }
.price-copy .price-note { margin-top: 12px; color: var(--paper); font-weight: 700; }
.price-copy .button { margin-top: 32px; }

.care { background: linear-gradient(180deg, var(--ink), #111315); }
.care-grid { display: grid; gap: 1px; border: 1px solid var(--line-dark); background: var(--line-dark); }

.care-card {
  position: relative;
  min-height: 248px;
  padding: 28px 22px 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #171a1c, #0f1112);
}

.care-card::after {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(163, 112, 109, 0.2);
  border-radius: 50%;
  content: "";
}

.care-number { display: block; color: var(--accent-mist); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; }
.care-card h3 { margin: 32px 0 18px; font-family: var(--display); font-size: 30px; font-weight: 600; line-height: 1; }
.care-card p { max-width: 600px; margin: 0; color: var(--paper-muted); font-size: 12px; }

.faq {
  display: grid;
  gap: 48px;
  background:
    radial-gradient(circle at 10% 12%, rgba(66, 22, 21, 0.32), transparent 25rem),
    linear-gradient(160deg, #171a1c, #0b0c0d 72%);
}

.faq-title .eyebrow { margin-bottom: 22px; }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 20px 0; cursor: pointer; list-style: none; font-size: 14px; font-weight: 650; line-height: 1.35; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary b { color: var(--accent-mist); font-size: 9px; letter-spacing: 0.1em; }
.faq-list details p { max-width: 680px; margin: 0; padding: 0 34px 22px 0; color: var(--paper-muted); font-size: 13px; }

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(107, 41, 38, 0.5), transparent 28rem),
    linear-gradient(145deg, #151719 5%, #261817 68%, var(--wine) 140%);
}

.contact::before {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 68vw;
  height: 68vw;
  border: 1px solid rgba(255, 255, 255, 0.07);
  content: "";
  transform: rotate(45deg);
  pointer-events: none;
}

.contact-top, .contact h2, .contact-intro, .contact-links { position: relative; z-index: 1; }
.contact-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 38px; }
.contact-top span { color: var(--paper-muted); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.contact h2 { max-width: 1050px; font-size: clamp(58px, 16vw, 120px); }
.contact-intro { max-width: 610px; margin: 32px 0 0; color: var(--paper-muted); font-size: 13px; }
.contact-links { margin-top: 44px; border-top: 1px solid var(--line-strong); }

.contact-links a {
  display: grid;
  min-height: 82px;
  grid-template-columns: 42px minmax(86px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-strong);
}

.contact-icon { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; }
.contact-name { font-family: var(--display); font-size: 22px; font-weight: 600; }
.contact-links b { overflow: hidden; color: var(--paper-muted); font-size: 9px; font-weight: 650; letter-spacing: 0.08em; text-overflow: ellipsis; white-space: nowrap; }
.contact-links i { font-size: 19px; font-style: normal; }

.site-footer { display: grid; justify-items: center; gap: 14px; padding: 46px 16px 96px; border-top: 1px solid var(--line-dark); background: var(--ink); text-align: center; }
.site-footer p { margin: 0; color: #818587; font-size: 9px; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; }

.back-to-top {
  position: fixed;
  z-index: 70;
  right: 16px;
  bottom: 76px;
  display: grid;
  visibility: hidden;
  width: 44px;
  height: 44px;
  padding: 0;
  place-content: center;
  transform: translateY(12px);
  border: 1px solid var(--line-dark);
  opacity: 0;
  background: rgba(8, 9, 10, 0.9);
  color: var(--paper);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.back-to-top.is-visible { visibility: visible; transform: translateY(0); opacity: 1; }

.mobile-cta {
  position: fixed;
  z-index: 80;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: var(--wine);
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lightbox { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(5, 6, 7, 0.98); color: var(--paper); }
.lightbox::backdrop { background: rgba(5, 6, 7, 0.95); }
.lightbox-shell { position: relative; display: grid; width: 100%; height: 100%; grid-template-columns: 44px minmax(0, 1fr) 44px; align-items: center; padding: 62px 8px 30px; }
.lightbox figure { display: grid; min-width: 0; max-height: 100%; justify-items: center; margin: 0; }
.lightbox figure img { width: auto; max-width: 100%; height: auto; max-height: calc(100svh - 130px); object-fit: contain; }
.lightbox figcaption { width: 100%; max-width: 720px; margin-top: 12px; color: #aaaeb0; font-size: 9px; letter-spacing: 0.09em; text-align: center; text-transform: uppercase; }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; min-height: 40px; padding: 0 10px; border: 0; background: transparent; color: var(--paper); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }
.lightbox-arrow { display: grid; width: 44px; height: 56px; padding: 0; place-content: center; border: 0; background: transparent; color: var(--paper); font-size: 25px; cursor: pointer; }

.reveal { transform: none; opacity: 1; }
.js .reveal { transform: translateY(18px); opacity: 0; transition: transform 700ms cubic-bezier(0.2, 0.72, 0.25, 1), opacity 700ms ease; }
.js .reveal.is-visible { transform: translateY(0); opacity: 1; }
.hero .reveal { animation: hero-reveal 760ms cubic-bezier(0.2, 0.72, 0.25, 1) both; }
.hero .hero-message { animation-delay: 90ms; }
.hero h1 { animation-delay: 170ms; }
@keyframes hero-reveal { from { transform: translateY(18px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media (min-width: 600px) {
  .site-header { padding-inline: 28px; }
  .hero-copy { padding-inline: 28px; }
  .hero-actions { grid-template-columns: repeat(2, minmax(0, 250px)); }
  .masonry-grid { columns: 2; }
  .about-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .direction-item { grid-template-columns: 46px minmax(190px, 0.8fr) 1.2fr; align-items: baseline; }
  .direction-item > span { grid-row: auto; }
  .direction-item p { grid-column: 3; }
  .contact-links a { grid-template-columns: 44px 150px 1fr auto; }
}

@media (min-width: 900px) {
  :root { --header-height: 78px; }
  .site-header { padding-inline: 3.2vw; }
  .brand { font-size: 26px; }
  .menu-toggle { display: none; }

  .site-nav {
    position: static;
    visibility: visible;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 1.55vw, 28px);
    padding: 0;
    opacity: 1;
    background: transparent;
  }

  .site-nav > a:not(.nav-cta) { width: auto; padding: 6px 0; border: 0; color: #c0c1c1; font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color 150ms ease; }
  .site-nav > a:not(.nav-cta):hover { color: var(--paper); }
  .site-nav .nav-cta { width: auto; margin: 0; padding: 11px 16px; font-size: 9px; }
  .site-nav .nav-cta:hover { background: var(--paper); color: var(--ink); }
  .nav-socials { gap: 5px; margin: 0; }
  .site-nav .nav-socials a { width: 30px; height: 30px; }
  .site-nav .nav-socials svg { width: 14px; height: 14px; }
  .site-nav .nav-socials a:hover, .about-socials a:hover { transform: translateY(-2px); border-color: var(--accent-mist); background: rgba(163, 112, 109, 0.1); }

  .hero-copy { padding: 122px 3.2vw 34px; }
  .hero-background { object-position: center 50%; }
  .hero::before { background: linear-gradient(180deg, rgba(4,5,6,.58), rgba(4,5,6,.08) 32%, rgba(4,5,6,.36) 65%, rgba(4,5,6,.93)), linear-gradient(90deg, rgba(4,5,6,.58), transparent 55%); }
  .hero-kicker { width: min(100%, 700px); }
  .hero-message { width: 520px; margin-bottom: 42px; }
  .hero-line { font-size: clamp(38px, 4vw, 58px); }
  .hero-intro { font-size: 13px; }
  .hero h1 { font-size: clamp(112px, 14.8vw, 220px); line-height: 0.68; }
  .hero-index { top: auto; right: 3.2vw; bottom: 38px; }
  .hero-scroll { position: absolute; z-index: 5; right: 3.2vw; bottom: 111px; display: flex; align-items: center; gap: 12px; color: #b5b6b5; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
  .hero-scroll i { width: 48px; height: 1px; background: #b5b6b5; }

  .section, .directions, .about, .price, .faq, .contact { padding-block: 126px; padding-inline: max(3.2vw, calc((100% - 1320px) / 2)); }
  .section-head { grid-template-columns: minmax(110px, .35fr) minmax(420px, 1fr) minmax(240px, .65fr); align-items: end; gap: 40px; margin-bottom: 70px; }
  .section-head .eyebrow { align-self: start; }
  .section-head h2 { font-size: clamp(78px, 7.4vw, 112px); }
  .section-head > p:last-child { justify-self: end; padding-bottom: 5px; font-size: 14px; }

  .gallery-tabs { width: 100%; margin: 0 0 44px; padding: 0; gap: 42px; }
  .masonry-grid { columns: 3; column-gap: 18px; }
  .gallery-card { margin-bottom: 18px; }
  .gallery-card:hover img { transform: scale(1.018); filter: contrast(1.05); }

  .about { grid-template-columns: minmax(0, 1.12fr) minmax(350px, .88fr); align-items: center; gap: clamp(60px, 8vw, 130px); }
  .about-mark { top: -175px; left: -45px; font-size: 720px; }
  .about-copy h2 { font-size: clamp(78px, 7vw, 108px); }
  .about-lead { margin-top: 48px; }
  .about-columns { max-width: 820px; gap: 42px; margin-top: 38px; }
  .about-columns p { font-size: 14px; }
  .about-portrait { justify-self: end; }
  .about-socials { position: absolute; right: -58px; bottom: 42px; flex-direction: column; }

  .direction-list { margin-left: calc(25% + 22px); }
  .direction-item { grid-template-columns: 52px minmax(220px, .85fr) 1.15fr; gap: 28px; padding: 29px 0; }
  .direction-item h3 { font-size: 42px; }
  .direction-item p { font-size: 13px; }
  .direction-foot { grid-template-columns: 1fr auto; align-items: end; margin-left: calc(25% + 22px); }

  .process-list { margin-left: calc(25% + 22px); }
  .process-list li { grid-template-columns: 70px minmax(0, 1fr); padding: 32px 0; }
  .process-list li div { display: grid; grid-template-columns: minmax(220px, .7fr) 1.3fr; gap: 40px; align-items: baseline; }
  .process-list h3 { font-size: 34px; }
  .process-list p { margin: 0; font-size: 13px; }

  .price { grid-template-columns: .35fr 1.65fr; gap: 60px; }
  .price-copy h2 { font-size: clamp(82px, 7.5vw, 116px); }
  .price-copy p { font-size: 15px; }

  .care-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .care-card { min-height: 292px; padding: 34px 30px; }
  .care-card h3 { margin-top: 50px; font-size: 36px; }
  .care-card p { font-size: 13px; }

  .faq { grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr); gap: 84px; }
  .faq-title { position: sticky; top: 126px; align-self: start; }
  .faq-title h2 { font-size: clamp(68px, 5.8vw, 92px); }
  .faq-list summary { min-height: 72px; align-items: center; padding: 22px 0; font-size: 16px; }
  .faq-list details p { padding-bottom: 26px; font-size: 14px; }

  .contact-top { margin-bottom: 58px; }
  .contact h2 { font-size: clamp(98px, 9.8vw, 154px); }
  .contact-intro { margin-left: 25%; font-size: 15px; }
  .contact-links { margin-top: 62px; margin-left: 25%; }
  .contact-links a { min-height: 94px; grid-template-columns: 48px 180px 1fr auto; padding: 0 8px; transition: padding 180ms ease, background-color 180ms ease; }
  .contact-links a:hover { padding: 0 20px; background: rgba(255,255,255,.045); }
  .contact-name { font-size: 27px; }

  .site-footer { grid-template-columns: 1fr auto 1fr; align-items: center; justify-items: start; padding: 50px 3.2vw; text-align: left; }
  .site-footer p:nth-child(2) { justify-self: center; }
  .site-footer p:last-child { justify-self: end; }
  .back-to-top { right: 28px; bottom: 28px; }
  .mobile-cta { display: none; }
  .lightbox-shell { grid-template-columns: 72px minmax(0, 1fr) 72px; padding: 54px 24px 26px; }
  .lightbox-arrow { width: 72px; }

  .button-primary:hover { border-color: var(--wine-light); background: var(--wine-light); }
  .button-ghost:hover { border-color: var(--paper); background: var(--paper); color: var(--ink); }
  .button-light:hover { border-color: var(--wine-light); background: var(--wine-light); color: #fff; }
}

@media (min-width: 1300px) {
  .hero-copy { padding-left: max(3.2vw, calc((100vw - 1440px) / 2)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .js .reveal { transform: none; opacity: 1; }
}
