:root {
  --cream: #f3eadc;
  --paper: #fbf7f0;
  --ink: #1d1715;
  --red: #b92e23;
  --red-dark: #8d2018;
  --gold: #e2a94e;
  --muted: #675d56;
  --line: rgba(29, 23, 21, .24);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link:focus { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 12px 16px; background: var(--ink); color: white; }

.site-header {
  position: fixed; z-index: 30; inset: 0 0 auto; display: flex; align-items: center; gap: 34px;
  min-height: 92px; padding: 12px clamp(20px, 4vw, 58px); color: white;
  border-bottom: 1px solid rgba(255,255,255,.45); transition: background .2s, color .2s, min-height .2s, box-shadow .2s;
}
.site-header.is-scrolled, .site-header.is-open { min-height: 76px; background: var(--cream); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.brand { flex: 0 0 auto; }
.brand img { width: 170px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.2)); transition: width .2s; }
.site-header.is-scrolled .brand img { width: 140px; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(18px, 2.3vw, 38px); flex: 1; }
.main-nav a { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.main-nav a:not(.nav-order):hover { color: var(--gold); }
.nav-order { padding: 13px 17px; border: 2px solid currentColor; }
.nav-order:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; padding: 8px; border: 0; background: transparent; color: inherit; }
.menu-toggle span:not(.sr-only) { display: block; width: 27px; height: 2px; margin: 6px auto; background: currentColor; }

.hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; background: var(--ink); color: white; }
.hero-gallery, .hero-gallery img, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-gallery img { object-fit: cover; opacity: 0; transform: scale(1.04); transition: opacity .9s ease, transform 4s ease; }
.hero-gallery img:first-child { object-position: center center; }
.hero-gallery img:nth-child(2) { object-position: center 44%; }
.hero-gallery img.is-active { opacity: 1; transform: scale(1); }
.hero-scrim {
  background:
    linear-gradient(rgba(18, 12, 10, .58), rgba(18, 12, 10, .68)),
    radial-gradient(circle at center, rgba(18, 12, 10, .08), rgba(18, 12, 10, .55));
}
.hero-content { position: relative; display: grid; place-items: center; width: min(940px, calc(100% - 40px)); padding-top: 92px; text-align: center; }
.hero-kicker, .eyebrow { margin: 0 0 17px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { display: grid; margin: 0; font-family: var(--serif); font-size: clamp(76px, 12.5vw, 170px); font-weight: 400; line-height: .76; letter-spacing: -.05em; text-transform: uppercase; text-shadow: 0 3px 12px rgba(0,0,0,.82), 0 8px 35px rgba(0,0,0,.58); }
.hero h1 strong { color: var(--gold); font-weight: 400; }
.hero-tagline { max-width: 680px; margin: 30px 0 0; color: white; font-family: var(--serif); font-size: clamp(21px, 2.1vw, 30px); font-weight: 700; line-height: 1.35; text-shadow: 0 2px 12px rgba(0,0,0,.9); }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 22px; border: 2px solid transparent; font-size: 12px; font-weight: 800; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; transition: background .2s, color .2s, border .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: #f0bd67; }
.button-red { background: var(--red); color: white; }
.button-red:hover { background: var(--red-dark); }
.button-ink { background: var(--ink); color: white; }
.button-outline { border-color: white; color: white; }
.button-outline:hover { background: white; color: var(--ink); }
.button-outline-dark { border-color: var(--ink); color: var(--ink); }
.motion-toggle { margin-top: 25px; padding: 4px; border: 0; background: transparent; color: rgba(255,255,255,.75); font-size: 11px; text-decoration: underline; cursor: pointer; }

.action-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--gold); border-block: 2px solid var(--ink); }
.action-strip a { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 78px; border-right: 2px solid var(--ink); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-align: center; text-decoration: none; text-transform: uppercase; transition: background .2s; }
.action-strip a:last-child { border-right: 0; }
.action-strip a:hover { background: var(--paper); }

.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; background: var(--cream); border-bottom: 2px solid var(--ink); }
.split-alt { background: var(--paper); }
.split-alt .split-copy { order: 2; }
.split-copy { display: grid; align-content: center; justify-items: start; padding: clamp(50px, 8vw, 118px); }
.split-copy h2, .visit-copy h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(52px, 6.2vw, 92px); font-weight: 400; line-height: .9; letter-spacing: -.04em; text-transform: uppercase; }
.split-copy > p:not(.eyebrow), .visit-copy > p:not(.eyebrow) { max-width: 530px; margin: 0 0 30px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.split-image { min-height: 560px; overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.split:hover .split-image img { transform: scale(1.025); }
#story .split-image img { object-position: 58% center; }

.visit-section { display: grid; grid-template-columns: minmax(0, 1fr) 460px; gap: 60px; align-items: center; width: min(1220px, calc(100% - 44px)); margin: 0 auto; padding: 110px 0; }
.visit-card { padding: 40px; border: 2px solid var(--ink); background: var(--gold); box-shadow: 12px 12px 0 var(--red); }
.card-label { margin: 0 0 24px; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.visit-card address { padding: 20px 0; border-block: 1px solid rgba(29,23,21,.28); font-family: var(--serif); font-size: 32px; font-style: normal; line-height: 1.25; }
.visit-card .phone { display: inline-block; margin: 22px 0; font-family: var(--serif); font-size: 27px; text-decoration: none; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.site-footer { display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 35px; padding: 36px clamp(20px, 4vw, 58px); background: var(--red); color: white; }
.site-footer img { width: 165px; }
.site-footer p { margin: 0; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-footer nav { display: flex; gap: 25px; }
.site-footer nav a { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.mobile-actions { display: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { min-height: 78px; }
  .brand img, .site-header.is-scrolled .brand img { width: 128px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 78px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 24px 28px; background: var(--cream); color: var(--ink); border-bottom: 2px solid var(--ink); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .nav-order { margin-top: 14px; padding: 15px !important; border: 2px solid var(--ink) !important; font-family: var(--sans) !important; font-size: 12px !important; font-weight: 800 !important; letter-spacing: .1em !important; text-align: center; text-transform: uppercase !important; }
  .action-strip, .split, .visit-section { grid-template-columns: 1fr; }
  .action-strip a { min-height: 61px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .action-strip a:last-child { border-bottom: 0; }
  .split-alt .split-copy { order: 0; }
  .split-image { min-height: 500px; }
  .visit-section { gap: 50px; padding: 80px 0 110px; }
  .site-footer { grid-template-columns: 1fr; padding-bottom: 95px; }
  .site-footer nav { flex-wrap: wrap; }
  .mobile-actions { position: fixed; z-index: 40; inset: auto 0 0; display: grid; grid-template-columns: .7fr 1.3fr; border-top: 2px solid var(--ink); }
  .mobile-actions a { display: grid; place-items: center; min-height: 60px; background: var(--gold); border-right: 2px solid var(--ink); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
  .mobile-actions a:last-child { border: 0; background: var(--red); color: white; }
}

@media (max-width: 560px) {
  .hero-content { padding-top: 74px; }
  .hero-scrim { background: linear-gradient(rgba(18,12,10,.63), rgba(18,12,10,.76)); }
  .hero h1 { font-size: clamp(64px, 21vw, 96px); line-height: .82; }
  .hero-tagline { max-width: 330px; font-size: 20px; }
  .hero-actions { display: grid; width: min(100%, 330px); }
  .button { width: 100%; }
  .split { min-height: 0; }
  .split-copy { padding: 64px 22px; }
  .split-copy h2, .visit-copy h2 { font-size: 14vw; }
  .split-image { min-height: 430px; }
  .visit-section { width: calc(100% - 40px); }
  .visit-card { padding: 28px 22px; box-shadow: 8px 8px 0 var(--red); }
  .visit-card address { font-size: 27px; }
  .card-actions { grid-template-columns: 1fr; }
  .site-footer img { width: 150px; }
}

@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 { opacity: 1; transform: none; }
}
