@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #111111;
  --ink-soft: #1b1b1b;
  --cream: #f7f3ec;
  --ivory: #fffdf8;
  --gold: #c8a96b;
  --beige: #dccfc0;
  --rose: #c9858c;
  --white: #ffffff;
  --muted: #6f6a63;
  --border: rgba(17, 17, 17, .12);
  --shadow: 0 18px 55px rgba(17, 17, 17, .10);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --max: 1180px;
  --header: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 9999;
  transform: translateY(-150%); background: var(--white); color: var(--ink);
  padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-ivory { background: var(--ivory); }
.section-beige { background: #efe6da; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 14px;
  font-size: .78rem; letter-spacing: .19em; text-transform: uppercase; font-weight: 700;
  color: #866d3e;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: currentColor; }
.section-dark .eyebrow { color: #e8d3aa; }
.display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 5.8rem); line-height: .94; letter-spacing: -.035em;
  margin: 0;
}
.h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.35rem, 4vw, 4.4rem); line-height: 1; letter-spacing: -.025em;
  margin: 0 0 20px;
}
.h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 2.2vw, 2.4rem); line-height: 1.05; margin: 0 0 10px;
}
.lead { font-size: clamp(1.03rem, 1.5vw, 1.18rem); color: #5e5953; max-width: 700px; margin: 0; }
.section-dark .lead { color: rgba(255,255,255,.72); }
.muted { color: var(--muted); }

.btn {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: .92rem; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #d4b77e; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #282828; }
.btn-light { background: var(--white); color: var(--ink); }
.btn-outline { border-color: rgba(17,17,17,.24); background: transparent; }
.btn-outline:hover { border-color: var(--ink); }
.section-dark .btn-outline { border-color: rgba(255,255,255,.35); color: var(--white); }
.section-dark .btn-outline:hover { border-color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.icon { width: 18px; height: 18px; flex: 0 0 18px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--header);
  background: rgba(247,243,236,.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 225px; }
.brand-mark {
  width: 42px; height: 42px; border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700;
  letter-spacing: -.06em;
}
.brand-copy { line-height: 1.05; }
.brand-copy strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }
.brand-copy span { display: block; font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; color: #766a5e; margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-size: .88rem; font-weight: 700; color: #333; position: relative; }
.main-nav a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .22s ease; }
.main-nav a:not(.btn):hover::after, .main-nav a[aria-current='page']:not(.btn)::after { right: 0; }
.nav-cta { margin-left: 4px; }
.menu-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 50%;
  background: transparent; padding: 0; place-items: center;
}
.menu-toggle span { position: relative; width: 20px; height: 1.5px; background: var(--ink); transition: .2s ease; }
.menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--ink); transition: .2s ease; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded='true'] span { background: transparent; }
.menu-toggle[aria-expanded='true'] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded='true'] span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero { padding: 36px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 56px; align-items: center; }
.hero-copy { padding: 48px 0; }
.hero-copy .display { max-width: 720px; }
.hero-copy .lead { margin-top: 24px; }
.microline { margin-top: 28px; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: #6d6258; }
.hero-visual { position: relative; min-height: 680px; }
.hero-image {
  position: absolute; inset: 0 0 0 46px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: #222;
}
.hero-image img { height: 100%; object-fit: cover; object-position: center; }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(17,17,17,.38)); pointer-events: none; }
.hero-card {
  position: absolute; left: 0; bottom: 40px; width: min(330px, 76%); background: rgba(255,253,248,.96);
  border-radius: var(--radius); padding: 24px; box-shadow: 0 16px 44px rgba(0,0,0,.17); z-index: 2;
}
.hero-card .tiny { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #776b5d; font-weight: 700; }
.hero-card strong { display: block; margin: 7px 0 6px; font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; line-height: 1.05; }
.hero-card p { margin: 0; color: #655f58; font-size: .88rem; }
.hero-stamp {
  position: absolute; right: -16px; top: 36px; z-index: 3; width: 116px; height: 116px; border-radius: 50%;
  background: var(--gold); display: grid; place-items: center; text-align: center; padding: 14px;
  font-size: .68rem; font-weight: 800; line-height: 1.3; letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(0,0,0,.15);
}

/* Content layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #ddd; }
.split-media img { aspect-ratio: 4 / 4.5; object-fit: cover; }
.split-copy p { color: #5f5952; margin: 0; }
.kicker-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: end; margin-bottom: 44px; }
.kicker-grid .lead { justify-self: end; }

/* Service cards */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(17,17,17,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card figure { margin: 0; position: relative; overflow: hidden; }
.service-card img { aspect-ratio: 4/3; object-fit: cover; transition: transform .55s ease; }
.service-card:hover img { transform: scale(1.035); }
.service-card-body { padding: 24px; }
.card-num { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .12em; color: #8c754a; margin-bottom: 10px; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; line-height: 1; margin: 0 0 8px; }
.service-card p { margin: 0; color: #6b645d; font-size: .92rem; }

/* Benefits */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); overflow: hidden; margin-top: 42px; }
.benefit { padding: 28px; background: var(--ink); }
.benefit-index { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.26); color: #e8d3aa; font-size: .75rem; margin-bottom: 30px; }
.benefit h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; line-height: 1.1; margin: 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 165px; gap: 14px; }
.gallery-item { border-radius: 20px; overflow: hidden; position: relative; background: #ddd; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { content: attr(data-label); position: absolute; left: 16px; bottom: 14px; color: white; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; opacity: 0; transform: translateY(8px); transition: .25s ease; text-shadow: 0 2px 14px #000; }
.gallery-item::before { content: ''; position: absolute; inset: 45% 0 0; z-index: 0; background: linear-gradient(transparent, rgba(0,0,0,.45)); opacity: 0; transition: .25s ease; }
.gallery-item:hover::before, .gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 3; }
.gallery-item:nth-child(6) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(8) { grid-column: span 4; grid-row: span 2; }

/* CTA */
.cta-band { padding: 90px 0; background: #c6a566; color: var(--ink); position: relative; overflow: hidden; }
.cta-band::before { content: 'BOSS'; position: absolute; right: -16px; top: 50%; transform: translateY(-50%); font-family: 'Cormorant Garamond', serif; font-size: min(24vw, 280px); font-weight: 700; line-height: .8; color: rgba(255,255,255,.12); pointer-events: none; }
.cta-inner { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.cta-inner .h2 { max-width: 650px; margin-bottom: 10px; }
.cta-inner p { margin: 0; max-width: 600px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* Location */
.contact-preview { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; }
.contact-card { background: var(--ink); color: var(--white); border-radius: var(--radius-lg); padding: 42px; }
.contact-card address { font-style: normal; color: rgba(255,255,255,.74); }
.contact-lines { display: grid; gap: 12px; margin-top: 24px; }
.contact-line { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.78); }
.contact-line svg { margin-top: 3px; color: #e4c990; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; min-height: 430px; box-shadow: var(--shadow); background: #ded5ca; }
.map-wrap iframe { border: 0; width: 100%; height: 100%; min-height: 430px; display: block; }

/* Page hero */
.page-hero { padding: 46px 0 84px; }
.page-hero-card { position: relative; min-height: 560px; border-radius: var(--radius-lg); overflow: hidden; background: #222; display: flex; align-items: flex-end; }
.page-hero-card > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.page-hero-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,17,.86) 0%, rgba(17,17,17,.60) 40%, rgba(17,17,17,.15) 78%); }
.page-hero-copy { position: relative; z-index: 2; color: white; padding: 56px; max-width: 760px; }
.page-hero-copy .eyebrow { color: #efd9ab; }
.page-hero-copy .lead { color: rgba(255,255,255,.76); margin-top: 18px; }

/* Services page */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.detail-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--border); }
.detail-card-media img { aspect-ratio: 16/10; object-fit: cover; }
.detail-card-body { padding: 34px; }
.service-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 22px; }
.service-list li { position: relative; padding-left: 20px; color: #57514b; }
.service-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); position: absolute; left: 0; top: .63em; }

.beauty-list-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 42px; }
.beauty-pill { background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; min-height: 160px; display: flex; flex-direction: column; justify-content: space-between; transition: .2s ease; }
.beauty-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.beauty-pill small { color: #907543; font-weight: 800; letter-spacing: .12em; }
.beauty-pill strong { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; line-height: 1.05; }

.retail-feature { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); color: var(--white); }
.retail-feature img { height: 100%; min-height: 520px; object-fit: cover; }
.retail-copy { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.retail-copy p { color: rgba(255,255,255,.70); }

/* Form */
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 34px; align-items: start; }
.contact-panel { background: var(--ink); color: var(--white); border-radius: var(--radius-lg); padding: 38px; position: sticky; top: calc(var(--header) + 24px); }
.contact-panel address { font-style: normal; color: rgba(255,255,255,.72); }
.contact-panel .h3 { font-size: 2.4rem; }
.contact-panel .btn-row { margin-top: 30px; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 38px; border: 1px solid rgba(17,17,17,.07); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 800; letter-spacing: .05em; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #d6cfc6; background: #fbfaf7; color: var(--ink); border-radius: 14px;
  padding: 13px 14px; min-height: 50px; outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #b48c48; box-shadow: 0 0 0 3px rgba(200,169,107,.16); }
.form-note { font-size: .82rem; color: #716a62; margin: 12px 0 0; }
.form-status { margin: 14px 0 0; font-weight: 700; min-height: 1.4em; }

/* Footer */
.site-footer { background: #0d0d0d; color: var(--white); padding: 72px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .55fr .75fr .9fr; gap: 42px; }
.footer-brand p { max-width: 350px; color: rgba(255,255,255,.64); margin: 20px 0 0; }
.footer-title { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: #d9bd85; font-weight: 800; margin-bottom: 18px; }
.footer-links { display: grid; gap: 9px; color: rgba(255,255,255,.72); font-size: .91rem; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.46); font-size: .78rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  :root { --header: 74px; }
  .container { width: min(var(--max), calc(100% - 32px)); }
  .menu-toggle { display: grid; }
  .main-nav {
    position: fixed; top: var(--header); left: 0; right: 0; min-height: calc(100vh - var(--header));
    background: var(--cream); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 22px 20px 36px;
    transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility .25s ease;
  }
  .main-nav.open { transform: translateX(0); visibility: visible; }
  .main-nav a { padding: 18px 6px; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .main-nav a::after { display: none; }
  .main-nav .btn { margin-top: 18px; border-bottom: 0; }
  .brand { min-width: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { padding: 26px 0 10px; }
  .hero-visual { min-height: 610px; }
  .hero-image { left: 26px; }
  .split, .kicker-grid, .contact-preview, .contact-layout, .retail-feature { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .kicker-grid .lead { justify-self: start; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: 0; }
  .beauty-list-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { position: static; }
  .footer-grid { grid-template-columns: 1.4fr .6fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .page-hero-card { min-height: 500px; }
  .page-hero-copy { padding: 42px; }
}

@media (max-width: 680px) {
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .brand-copy span { display: none; }
  .brand-copy strong { font-size: 1.08rem; }
  .hero { padding-top: 22px; }
  .hero-visual { min-height: 500px; }
  .hero-image { inset: 0; }
  .hero-card { left: 14px; bottom: 14px; width: calc(100% - 28px); }
  .hero-stamp { right: 12px; top: 12px; width: 96px; height: 96px; font-size: .58rem; }
  .service-grid, .service-detail-grid, .beauty-list-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 160px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: 1 / -1; grid-row: span 2; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-actions { justify-content: flex-start; }
  .contact-card, .form-card, .contact-panel { padding: 28px; }
  .page-hero { padding: 28px 0 58px; }
  .page-hero-card { min-height: 480px; }
  .page-hero-card::after { background: linear-gradient(180deg, rgba(17,17,17,.18) 10%, rgba(17,17,17,.88) 88%); }
  .page-hero-copy { padding: 28px; }
  .retail-copy { padding: 34px 28px; }
  .retail-feature img { min-height: 360px; }
  .service-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

/* =====================================================
   Responsive hardening + header button contrast fixes
   ===================================================== */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

main,
section,
.container,
.nav-wrap,
.hero-grid,
.split,
.kicker-grid,
.service-grid,
.contact-preview,
.contact-layout,
.footer-grid,
.retail-feature,
.service-detail-grid,
.beauty-list-grid {
  min-width: 0;
}

/* Prevent navigation link specificity from overriding button text colors. */
.main-nav .btn-dark,
.main-nav .btn-dark:visited {
  color: var(--white);
}
.main-nav .btn-gold,
.main-nav .btn-gold:visited {
  color: var(--ink);
}

.btn {
  max-width: 100%;
  text-align: center;
  line-height: 1.25;
  white-space: normal;
}

.brand,
.brand-copy,
.brand-copy strong,
.contact-line,
.footer-links,
.footer-bottom {
  min-width: 0;
}

.contact-line,
.footer-links a,
.footer-links span,
.contact-panel strong,
.contact-card a {
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .nav-wrap { gap: 14px; }
  .brand { flex: 1 1 auto; }
  .menu-toggle { flex: 0 0 48px; }

  .main-nav {
    width: 100%;
    max-width: 100%;
    min-height: calc(100vh - var(--header));
    min-height: calc(100dvh - var(--header));
    max-height: calc(100vh - var(--header));
    max-height: calc(100dvh - var(--header));
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 22px 50px rgba(17,17,17,.12);
  }

  .main-nav a:not(.btn) {
    color: #333;
  }

  .main-nav .nav-cta {
    width: 100%;
    min-height: 54px;
    margin: 18px 0 0;
    padding: 14px 20px;
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
  }

  .main-nav .nav-cta:hover,
  .main-nav .nav-cta:focus-visible {
    color: var(--white);
    background: #282828;
  }
}

@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 28px)); }

  .display {
    font-size: clamp(2.25rem, 11.5vw, 3.7rem);
    line-height: .98;
  }

  .h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 1.02;
  }

  .h3 { font-size: clamp(1.65rem, 8vw, 2.2rem); }

  .btn-row,
  .cta-actions {
    width: 100%;
  }

  .btn-row .btn,
  .cta-actions .btn {
    flex: 1 1 100%;
  }

  .hero-copy .btn-row .btn {
    width: 100%;
  }

  .contact-panel .btn-row .btn,
  .contact-card .btn-row .btn {
    width: 100%;
  }

  .map-wrap iframe { min-height: 360px; }
}

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

  .container { width: calc(100% - 24px); }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

  .site-header { height: var(--header); }
  .nav-wrap { gap: 10px; }
  .brand-mark { width: 38px; height: 38px; flex: 0 0 38px; }
  .brand-copy strong { font-size: .98rem; line-height: 1.05; }
  .menu-toggle { width: 44px; height: 44px; flex-basis: 44px; }

  .main-nav {
    padding: 14px 14px 26px;
  }
  .main-nav a { padding: 15px 4px; font-size: 1rem; }
  .main-nav .nav-cta { min-height: 52px; margin-top: 14px; }

  .hero { padding: 14px 0 58px; }
  .hero-copy { padding-top: 20px; }
  .hero-copy .lead { margin-top: 18px; }
  .hero-visual { min-height: 440px; }
  .hero-card { padding: 20px; }
  .hero-card strong { font-size: 1.45rem; }
  .hero-stamp { width: 82px; height: 82px; font-size: .5rem; padding: 10px; }

  .service-card-body,
  .detail-card-body { padding: 22px; }
  .contact-card,
  .form-card,
  .contact-panel { padding: 22px; }
  .retail-copy { padding: 28px 22px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gallery-item:nth-child(n),
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: 1;
    grid-row: span 1;
  }

  .page-hero { padding: 18px 0 48px; }
  .page-hero-card { min-height: 430px; }
  .page-hero-copy { padding: 22px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child,
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { margin-top: 36px; }
}

@media (max-width: 360px) {
  .container { width: calc(100% - 20px); }
  .brand-copy strong { font-size: .9rem; }
  .hero-visual { min-height: 410px; }
  .hero-stamp { display: none; }
  .btn { padding-inline: 16px; }
}
