@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --cream: #f4efe5;
  --cream-deep: #e9dfcf;
  --paper: #fffdf8;
  --logo-field: #f8f6f4;
  --navy: #0d2133;
  --navy-soft: #17354e;
  --ink: #20242a;
  --muted: #65686c;
  --red: #8e1f29;
  --red-bright: #b82d38;
  --blue: #24557d;
  --brass: #8a642c;
  --brass-light: #d7b66f;
  --line: rgba(13, 33, 51, .15);
  --line-light: rgba(255, 253, 248, .18);
  --shadow: 0 24px 70px rgba(13, 33, 51, .16);
  --serif: "Bodoni Moda", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(16px, calc(15px + .14vw), 17px);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  background: var(--paper);
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 2px;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--brass-light); outline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(13, 33, 51, .1);
  background: rgba(248, 246, 244, .94);
  backdrop-filter: blur(18px);
}
.site-header::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--red) 0 33.333%, var(--paper) 33.333% 66.666%, var(--blue) 66.666% 100%);
  opacity: .88;
}
.header-inner {
  width: min(calc(100% - 3rem), var(--container));
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(140px, 1fr);
  align-items: center;
  gap: 2rem;
}
.brand { width: 122px; padding-block: .35rem; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.brand-compact { display: none; }
.site-nav { display: flex; align-items: center; gap: clamp(1.15rem, 2vw, 2.15rem); }
.site-nav a {
  position: relative;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -.55rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .78rem 1.35rem;
  border: 1px solid var(--navy);
  border-radius: 2px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--red); background: linear-gradient(135deg, #761821, var(--red)); color: var(--paper); }
.button-primary:hover { border-color: var(--red-bright); background: var(--red-bright); }
.button-secondary { background: transparent; color: var(--navy); }
.button-secondary:hover { background: var(--paper); }
.button-light { border-color: rgba(255,255,255,.65); background: var(--paper); color: var(--navy); }
.button-light:hover { border-color: var(--brass-light); background: var(--brass-light); }
.button-large { min-height: 58px; padding-inline: 2rem; }
.ui-icon { width: 1.15rem; height: 1.15rem; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-arrow .ui-icon { transition: transform .25s ease; }
.button-arrow:hover .ui-icon { transform: translateX(3px); }

.hero { position: relative; min-height: clamp(700px, calc(100svh - 112px), 860px); isolation: isolate; overflow: hidden; background: var(--logo-field); }
.hero::before {
  position: absolute;
  z-index: -1;
  top: -18rem;
  left: -15rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(164, 123, 55, .18);
  border-radius: 50%;
  content: "";
}
.hero::after { position: absolute; z-index: -2; inset: 0; content: ""; background: linear-gradient(90deg, rgba(248,246,244,.97) 0%, rgba(248,246,244,.9) 25%, rgba(248,246,244,.56) 42%, rgba(248,246,244,.14) 61%, rgba(248,246,244,.015) 78%); }
.hero-backdrop { position: absolute; z-index: -3; inset: 0; overflow: hidden; }
.hero-backdrop::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(13,33,51,.035), transparent 45%, rgba(13,33,51,.11)); pointer-events: none; }
.hero-backdrop picture { display: block; width: 100%; height: 100%; }
.hero-backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 54%; filter: saturate(1.02) contrast(1.08) brightness(.98); }
.webgl-sheen { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; transition: opacity 1.2s ease; }
.webgl-active .webgl-sheen { opacity: .72; }
.hero-inner {
  width: min(calc(100% - 3rem), var(--container));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  display: flex;
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; width: min(430px, 42%); }
.eyebrow, .section-kicker {
  margin: 0 0 1.1rem;
  color: var(--red);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: .8rem; }
.eyebrow i { width: 28px; height: 1px; background: var(--brass); }
.section-kicker.light { color: var(--brass-light); }
h1, h2, h3 { margin-top: 0; color: var(--navy); font-family: var(--serif); font-weight: 550; }
h1 { max-width: 780px; margin-bottom: 1.6rem; font-size: clamp(3.6rem, 7.2vw, 7.3rem); letter-spacing: -.06em; line-height: .91; }
h2 { margin-bottom: 1.4rem; font-size: clamp(2.6rem, 5.2vw, 5.4rem); letter-spacing: -.048em; line-height: .98; }
h3 { font-size: 1.7rem; line-height: 1.15; }
.hero h1 { margin-bottom: 1.5rem; display: flex; flex-direction: column; font-size: clamp(5rem, 8vw, 7.15rem); letter-spacing: -.015em; line-height: .81; text-transform: uppercase; }
.hero h1 span:last-child { color: var(--red); }
.hero-tagline { margin: 0 0 1.15rem; color: var(--brass); font-size: .87rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.lede { max-width: 410px; margin: 0; color: #343a40; font-size: clamp(1.02rem, 1.2vw, 1.14rem); line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero-rating { width: fit-content; margin-top: 1.9rem; display: flex; align-items: center; gap: .8rem; color: var(--brass); font-size: .8rem; font-weight: 750; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.hero-rating .stars { font-size: 1.05rem; }
.booking-note { max-width: 580px; margin: .8rem 0 0; color: var(--muted); font-size: .82rem; }
.booking-note a { color: var(--navy); font-weight: 750; }
.booking-mark img, .footer-brand img { width: 100%; height: auto; }

.experience-section { padding: clamp(3rem, 5vw, 4.4rem) 0; border-bottom: 1px solid var(--line); background: var(--paper); }
.experience-inner { width: min(calc(100% - 3rem), var(--container)); margin: 0 auto; }
.experience-kicker { margin: 0 0 1.8rem; color: var(--brass); font-size: .8rem; font-weight: 800; letter-spacing: .24em; text-align: center; text-transform: uppercase; }
.experience-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: stretch; gap: clamp(2rem, 5vw, 5rem); }
.experience-features { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.experience-features article { min-height: 190px; padding: 1rem clamp(.8rem, 1.8vw, 1.6rem); display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid var(--line); text-align: center; }
.experience-features article:last-child { border-right: 0; }
.experience-icon { width: 54px; height: 54px; margin-bottom: 1rem; display: grid; place-items: center; border: 1px solid var(--brass); border-radius: 50%; color: var(--brass); }
.experience-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.experience-features h2 { margin: 0 0 .65rem; font-family: var(--sans); font-size: .84rem; font-weight: 850; letter-spacing: .065em; line-height: 1.35; text-transform: uppercase; }
.experience-features p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.62; }
.experience-booking { position: relative; min-height: 310px; padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--brass); background: radial-gradient(circle at 50% 20%, #193b55, var(--navy) 58%, #091927); color: var(--paper); text-align: center; box-shadow: 12px 12px 0 rgba(142,31,41,.08); }
.experience-booking::before { position: absolute; inset: 7px; border: 1px solid rgba(215,182,111,.62); clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px)); content: ""; pointer-events: none; }
.experience-booking > * { position: relative; z-index: 1; }
.experience-booking > span { color: var(--brass-light); font-size: .74rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.experience-booking img { width: 62px; height: 62px; margin: .8rem 0; border-radius: 50%; }
.experience-booking h2 { max-width: 260px; margin: 0 0 .6rem; color: var(--paper); font-size: 2.25rem; letter-spacing: -.025em; line-height: 1; }
.experience-booking p { margin: 0 0 1.25rem; color: rgba(255,253,248,.76); font-size: .92rem; }
.experience-booking small { margin-top: .9rem; color: rgba(255,253,248,.62); font-size: .72rem; }
.button-accent { border-color: rgba(255,255,255,.55); background: var(--red); color: var(--paper); }
.button-accent:hover { border-color: var(--brass-light); background: #a82833; }
.stars { color: var(--brass); font-family: var(--sans); font-size: .66em; letter-spacing: .06em; }
.source-note { margin: 1.5rem 0 0; padding: .6rem 1.5rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; text-align: center; }
.source-note.align-left { padding: 1.4rem 0 0; border-top: 0; text-align: left; }

.section { width: min(calc(100% - 3rem), var(--container)); margin: 0 auto; padding: clamp(5rem, 8vw, 8rem) 0; }
.section-heading { margin-bottom: clamp(2.6rem, 5vw, 5rem); display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: clamp(2rem, 6vw, 6rem); }
.section-heading h2 { max-width: 820px; margin-bottom: 0; }
.section-heading > p { max-width: 470px; margin: 0 0 .5rem; color: var(--muted); font-size: 1.1rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 420px; padding: clamp(1.7rem, 3vw, 2.8rem); display: flex; flex-direction: column; overflow: hidden; border-top: 3px solid transparent; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,253,248,.46); transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease; }
.service-card:hover { z-index: 1; border-top-color: var(--red); background: var(--paper); box-shadow: var(--shadow); transform: translateY(-6px); }
.service-number { position: relative; z-index: 1; margin-bottom: auto; color: var(--brass); font-family: var(--serif); font-size: 1.1rem; }
.service-watermark { position: absolute; top: 1.2rem; right: -1.5rem; width: 150px; height: 150px; fill: none; stroke: var(--navy); stroke-width: .7; stroke-linecap: round; stroke-linejoin: round; opacity: .055; transform: rotate(-8deg); transition: opacity .3s ease, transform .3s ease; }
.service-card:hover .service-watermark { opacity: .09; transform: rotate(-4deg) scale(1.04); }
.service-card h3, .service-card > p, .service-meta { position: relative; z-index: 1; }
.service-card h3 { margin-bottom: 1rem; font-size: clamp(2rem, 3vw, 2.8rem); }
.service-card > p { min-height: 7.6rem; color: var(--muted); }
.service-meta { margin-top: 1.7rem; padding-top: 1.2rem; display: flex; flex-direction: column; gap: .2rem; border-top: 1px solid var(--line); }
.service-meta span { color: var(--muted); font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.service-meta strong { color: var(--red); font-size: .77rem; letter-spacing: .06em; text-transform: uppercase; }
.confirmation-strip { margin-top: 1.25rem; padding: 1rem 1.2rem; display: flex; align-items: center; gap: .8rem; border: 1px dashed rgba(142,31,41,.35); background: rgba(255,253,248,.5); font-size: .84rem; }
.confirmation-strip p { margin: 0; }
.confirmation-strip a { margin-left: auto; color: var(--navy); font-weight: 750; white-space: nowrap; }
.status-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(142,31,41,.1); }

.work-section { border-top: 1px solid var(--line); }
.work-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 300px; gap: .5rem; padding: .5rem; background: var(--navy); }
.work-card { position: relative; overflow: hidden; margin: 0; background: var(--navy); }
.work-card--interior { grid-column: span 6; grid-row: span 2; }
.work-card--cut { grid-column: span 3; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .45s ease; }
.work-card--interior img { object-position: 50% 50%; }
.work-card--fade img { object-position: 50% 38%; }
.work-card--neckline img { object-position: 50% 42%; }
.work-card--curly img { object-position: 50% 34%; }
.work-card--skin-fade img { object-position: 50% 42%; }
.work-card::after { position: absolute; inset: 42% 0 0; content: ""; background: linear-gradient(180deg, transparent, rgba(7,19,30,.78)); pointer-events: none; }
.work-card:hover img { transform: scale(1.025); filter: saturate(1.04) contrast(1.02); }
.work-card figcaption { position: absolute; z-index: 1; right: 1rem; bottom: 1rem; left: 1rem; color: rgba(255,253,248,.82); font-size: .79rem; line-height: 1.45; }
.work-card figcaption span { display: block; margin-bottom: .2rem; color: var(--paper); font-family: var(--serif); font-size: 1.35rem; letter-spacing: .01em; }
.work-note { margin: 1rem 0 0; }

.why-section { display: grid; grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr); background: var(--navy); }
.why-media { position: relative; min-height: 780px; overflow: hidden; }
.why-media picture, .why-media img { width: 100%; height: 100%; }
.why-media img { object-fit: cover; object-position: 54% 52%; filter: saturate(.82) contrast(1.03) brightness(1.01); }
.why-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 60%, rgba(13,33,51,.45)); }
.why-media > p { position: absolute; z-index: 1; right: 1.5rem; bottom: 1.1rem; margin: 0; color: rgba(255,255,255,.65); font-size: .66rem; letter-spacing: .08em; }
.why-copy { padding: clamp(4rem, 8vw, 8rem); align-self: center; }
.why-copy h2 { max-width: 720px; color: var(--paper); }
.why-intro { max-width: 700px; margin-bottom: 3rem; color: rgba(255,253,248,.74); font-size: 1.12rem; }
.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li { padding: 1.4rem 0; display: grid; grid-template-columns: 48px 1fr; gap: 1rem; border-top: 1px solid var(--line-light); }
.feature-list > li > span { color: var(--brass-light); font-family: var(--serif); }
.feature-list strong { display: block; margin-bottom: .3rem; color: var(--paper); font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.feature-list p { margin: 0; color: rgba(255,253,248,.68); font-size: .96rem; }

.gallery-section { width: 100%; padding-top: clamp(4.5rem, 7vw, 7rem); padding-bottom: clamp(5rem, 8vw, 7rem); }
.gallery-section .section-heading { width: min(calc(100% - 3rem), var(--container)); margin-inline: auto; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr 1.05fr; grid-template-rows: 500px; gap: .3rem; background: var(--navy); }
.gallery-grid figure { position: relative; overflow: hidden; margin: 0; background: var(--paper); }
.gallery-main, .gallery-small, .gallery-tool, .gallery-brand { min-height: 500px; }
.gallery-grid picture, .gallery-grid figure img { width: 100%; height: 100%; }
.gallery-grid figure img { object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery-main img { object-position: 54% 47%; }
.gallery-small img { object-position: 52% 38%; }
.gallery-tool img { object-position: 50% 55%; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption { position: absolute; right: .8rem; bottom: .8rem; left: .8rem; padding: .85rem 1rem; border-left: 2px solid var(--brass-light); background: rgba(9,25,39,.88); color: var(--paper); font-size: .81rem; font-weight: 650; letter-spacing: .11em; text-transform: uppercase; backdrop-filter: blur(8px); }
.gallery-brand { display: grid; place-items: center; align-content: center; gap: 1.25rem; border: 1px solid rgba(215,182,111,.35); background: var(--navy); text-align: center; }
.gallery-brand img { width: min(280px, 84%); height: auto; padding: .45rem; border: 1px solid rgba(215,182,111,.38); background: var(--logo-field); }
.gallery-brand p { margin: 0; color: var(--paper); font-family: var(--serif); font-size: 1.25rem; letter-spacing: .02em; line-height: 1.35; }

.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 9vw, 9rem); border-top: 1px solid var(--line); }
.about-title h2 { position: sticky; top: 8rem; }
.about-copy { color: var(--muted); font-size: 1.06rem; }
.about-copy > p { max-width: 650px; }
.dropcap::first-letter { float: left; margin: .1em .14em 0 0; color: var(--red); font-family: var(--serif); font-size: 4.7em; line-height: .72; }
.owner-card { margin-top: 2.4rem; padding: 1.5rem; border-left: 3px solid var(--red); background: var(--paper); }
.owner-card span { display: block; color: var(--muted); font-size: .68rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.owner-card strong { display: block; margin: .35rem 0 .55rem; color: var(--red); font-size: .75rem; letter-spacing: .06em; }
.owner-card p { margin: 0; font-size: .92rem; }

.reviews-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); border-top: 1px solid var(--line); }
.review-score { min-height: 430px; padding: 2.5rem; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border: 1px solid var(--line); background: var(--paper); }
.score { color: var(--navy); font-family: var(--serif); font-size: clamp(6rem, 11vw, 9rem); letter-spacing: -.08em; line-height: .8; }
.stars.large { margin: 1.6rem 0 .6rem; font-size: 1.1rem; }
.review-score strong { color: var(--navy); }
.review-score a { margin-top: 2rem; color: var(--red); font-size: .82rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.review-content h2 { max-width: 720px; }
.review-themes { margin-top: 2.4rem; border-top: 1px solid var(--line); }
.review-themes article { padding: 1.4rem 0; display: grid; grid-template-columns: 42px minmax(150px, .4fr) 1fr; align-items: baseline; gap: 1rem; border-bottom: 1px solid var(--line); }
.review-themes span { color: var(--brass); font-family: var(--serif); }
.review-themes h3 { margin: 0; font-family: var(--sans); font-size: .88rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.review-themes p { margin: 0; color: var(--muted); font-size: .96rem; }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 8vw, 8rem); border-top: 1px solid var(--line); }
.faq-heading { align-self: start; position: sticky; top: 8rem; }
.faq-heading p:last-child { max-width: 340px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.55rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--navy); font-family: var(--serif); font-size: 1.38rem; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); font-family: var(--sans); font-size: 1.3rem; transition: transform .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > p { max-width: 720px; margin: -.3rem 0 1.6rem; padding-right: 3rem; color: var(--muted); }
.faq-list details > p strong { color: var(--red); }

.visit-section { background: linear-gradient(118deg, var(--navy), #0a1927); color: var(--paper); }
.visit-inner { width: min(calc(100% - 3rem), var(--container)); margin: 0 auto; padding: clamp(5rem, 10vw, 9rem) 0; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.visit-copy h2 { color: var(--paper); }
.visit-copy address { display: flex; flex-direction: column; color: rgba(255,253,248,.72); font-style: normal; }
.visit-copy address a { margin-top: .8rem; color: var(--paper); font-family: var(--serif); font-size: 1.5rem; }
.visit-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.text-link { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.light-link { color: var(--paper); }
.hours-card { padding: clamp(1.8rem, 4vw, 3rem); border: 1px solid rgba(215,182,111,.42); background: rgba(255,255,255,.04); }
.hours-card > p { margin: 0 0 1.4rem; color: var(--brass-light); font-size: .77rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hours-card dl { margin: 0; }
.hours-card dl div { padding: .9rem 0; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line-light); }
.hours-card dt, .hours-card dd { margin: 0; }
.hours-card dd { font-weight: 750; }
.hours-card ul { margin: 1.5rem 0 0; padding: 1.4rem 0 0 1.15rem; border-top: 1px solid var(--line-light); color: rgba(255,253,248,.75); font-size: .9rem; }
.hours-note { display: block; margin-top: 1.2rem; color: rgba(255,253,248,.52); font-size: .75rem; }

.booking-section { position: relative; width: min(calc(100% - 3rem), var(--container)); margin: 0 auto; padding: clamp(3.2rem, 6vw, 5rem) 0; display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.booking-mark { opacity: .8; }
.booking-copy h2 { margin-bottom: .8rem; font-size: clamp(2.4rem, 4.2vw, 4.2rem); }
.booking-copy > p:last-child { margin: 0; color: var(--muted); }

.site-footer { background: #081725; color: rgba(255,253,248,.7); }
.footer-main { width: min(calc(100% - 3rem), var(--container)); margin: 0 auto; padding: 4.5rem 0; display: grid; grid-template-columns: 1.4fr .55fr .75fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
.footer-brand { width: min(190px, 100%); padding: .55rem; align-self: start; border: 1px solid rgba(215,182,111,.45); border-radius: 4px; background: var(--logo-field); }
.footer-column { display: flex; flex-direction: column; gap: .45rem; }
.footer-column strong, .footer-cta strong { margin-bottom: .6rem; color: var(--brass-light); font-size: .73rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-column a { font-size: .9rem; text-decoration: none; }
.footer-column a:hover { color: var(--paper); }
.footer-cta p { margin: 0 0 1rem; font-size: .9rem; }
.footer-bottom { width: min(calc(100% - 3rem), var(--container)); margin: 0 auto; padding: 1.2rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; letter-spacing: .05em; }
.footer-bottom a { color: inherit; }
.mobile-book { display: none; }

.legal-page { max-width: 820px; min-height: 70vh; }
.legal-page h1 { font-size: clamp(3.4rem, 8vw, 6.5rem); }
.legal-page > p { max-width: 720px; }
.motion-ready .reveal { transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.motion-ready .reveal:not(.is-visible) { opacity: 0; transform: translateY(24px); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: minmax(130px, 1fr) auto auto; gap: 1.2rem; }
  .site-nav { gap: 1rem; }
  .site-nav a:nth-last-child(-n+2) { display: none; }
  .hero-copy { width: min(460px, 52%); }
  .experience-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 2.5rem; }
  .experience-features { grid-template-columns: 1fr 1fr; }
  .experience-features article:nth-child(2) { border-right: 0; }
  .experience-features article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .work-grid { grid-auto-rows: 260px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .gallery-main, .gallery-small, .gallery-tool, .gallery-brand { min-height: 430px; }
  .why-copy { padding-inline: 4rem; }
  .footer-main { grid-template-columns: 1.2fr .6fr .8fr; }
  .footer-cta { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 7.5rem; }
  .header-inner { min-height: 104px; grid-template-columns: 1fr auto; }
  .brand { width: 100px; }
  .header-cta { display: none; }
  .menu-toggle { width: 46px; height: 46px; padding: 0; display: none; border: 0; background: transparent; color: var(--navy); cursor: pointer; }
  .has-js .menu-toggle { display: grid; place-items: center; }
  .menu-toggle-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .menu-toggle-lines, .menu-toggle-lines::before, .menu-toggle-lines::after { width: 24px; height: 1.5px; display: block; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle-lines { position: relative; }
  .menu-toggle-lines::before, .menu-toggle-lines::after { position: absolute; left: 0; content: ""; }
  .menu-toggle-lines::before { top: -7px; }
  .menu-toggle-lines::after { top: 7px; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { top: 0; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { top: 0; transform: rotate(-45deg); }
  .site-nav { grid-column: 1 / -1; padding: .4rem 0 1.25rem; flex-wrap: wrap; gap: 1rem 1.5rem; border-top: 1px solid var(--line); }
  .site-nav a:nth-last-child(-n+2) { display: inline; }
  .has-js .site-nav { display: none; }
  .has-js .site-nav.is-open { display: flex; }
  .hero { min-height: 760px; }
  .hero::after { background: linear-gradient(90deg, rgba(248,246,244,.98) 0%, rgba(248,246,244,.91) 43%, rgba(248,246,244,.4) 68%, rgba(248,246,244,.08) 100%); }
  .hero-backdrop img { object-position: 55% 54%; }
  .hero-copy { width: min(590px, 72%); }
  .experience-layout { grid-template-columns: 1fr; }
  .experience-booking { width: min(480px, 100%); min-height: 360px; margin: 0 auto; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .service-card > p { min-height: auto; }
  .work-grid { grid-auto-rows: 380px; }
  .work-card--interior { grid-column: 1 / -1; grid-row: span 1; }
  .work-card--cut { grid-column: span 6; }
  .section-heading, .about-section, .reviews-section, .faq-section, .visit-inner { grid-template-columns: 1fr; }
  .section-heading { align-items: start; }
  .why-section { grid-template-columns: 1fr; }
  .why-media { min-height: 640px; }
  .why-copy { padding: 5rem 1.5rem; }
  .about-title h2, .faq-heading { position: static; }
  .reviews-section { gap: 3rem; }
  .review-score { min-height: 340px; }
  .booking-section { grid-template-columns: 120px 1fr; }
  .booking-section > .button { grid-column: 2; justify-self: start; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { padding-bottom: 64px; }
  .header-inner, .hero-inner, .section, .visit-inner, .booking-section, .footer-main, .footer-bottom { width: min(calc(100% - 2rem), var(--container)); }
  .header-inner { min-height: 76px; }
  .brand { width: 58px; padding-block: .45rem; }
  .brand-full { display: none; }
  .brand-compact { display: block; }
  h1 { font-size: clamp(3.25rem, 15vw, 5rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero { min-height: 700px; }
  .hero::after { background: linear-gradient(180deg, rgba(248,246,244,.99) 0%, rgba(248,246,244,.955) 52%, rgba(248,246,244,.84) 78%, rgba(248,246,244,.54) 100%); }
  .hero-backdrop img { object-position: 52% 54%; opacity: 1; filter: saturate(1) contrast(1.07) brightness(.97); }
  .webgl-active .webgl-sheen { opacity: .42; }
  .hero-inner { padding-block: 4rem; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(4.4rem, 23vw, 6rem); }
  .eyebrow { align-items: flex-start; flex-direction: column; gap: .4rem; }
  .eyebrow i { display: none; }
  .hero-actions .button { width: 100%; }
  .hero-rating { align-items: flex-start; flex-direction: column; gap: .25rem; }
  .experience-inner { width: min(calc(100% - 2rem), var(--container)); }
  .experience-features { grid-template-columns: 1fr 1fr; }
  .experience-features article { min-height: 200px; padding-inline: .8rem; }
  .experience-features article:nth-child(2) { border-right: 0; }
  .experience-booking { min-height: 340px; }
  .section { padding-block: 5.8rem; }
  .section-heading { margin-bottom: 2.8rem; }
  .service-card { min-height: 330px; }
  .confirmation-strip { align-items: flex-start; flex-wrap: wrap; }
  .confirmation-strip a { width: 100%; margin-left: 1rem; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: .35rem; padding: .35rem; }
  .work-card--interior, .work-card--cut { grid-column: 1; grid-row: auto; }
  .work-card--interior { min-height: 280px; }
  .work-card--cut { min-height: 380px; }
  .work-card figcaption { right: .85rem; bottom: .85rem; left: .85rem; }
  .why-media { min-height: 500px; }
  .why-copy { padding-block: 4.8rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-main, .gallery-small, .gallery-tool, .gallery-brand { min-height: 500px; grid-row: auto; }
  .gallery-brand { min-height: 360px; }
  .review-themes article { grid-template-columns: 34px 1fr; }
  .review-themes p { grid-column: 2; }
  .faq-list details > p { padding-right: 0; }
  .faq-list summary { font-size: 1.12rem; }
  .visit-inner { padding-block: 5rem; }
  .booking-section { grid-template-columns: 1fr; text-align: center; }
  .booking-mark { width: 110px; margin: 0 auto; }
  .booking-section > .button { grid-column: auto; justify-self: center; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { width: 170px; }
  .footer-bottom { flex-direction: column; }
  .mobile-book { position: fixed; z-index: 99; right: 0; bottom: 0; left: 0; min-height: 64px; padding: 1rem; display: flex; align-items: center; justify-content: center; gap: .8rem; background: var(--red); color: white; font-size: .78rem; font-weight: 850; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; box-shadow: 0 -10px 30px rgba(13,33,51,.16); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .webgl-sheen { display: none; }
  .motion-ready .reveal, .motion-ready .reveal:not(.is-visible) { opacity: 1; transform: none; }
  .image-frame { transform: none !important; }
}

@media print {
  .site-header, .mobile-book, .webgl-sheen, .booking-section { display: none; }
  body { background: white; color: black; }
  .section, .hero-inner, .visit-inner { width: 100%; padding: 2rem 0; }
}
