:root {
  --ink: #f7f0e6;
  --paper: #12100e;
  --paper-deep: #201b17;
  --rust: #c56545;
  --rust-dark: #8e412c;
  --cream: #fff9ef;
  --muted: rgba(247, 240, 230, .66);
  --line: rgba(247, 240, 230, .18);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
img, iframe { max-width: 100%; display: block; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--cream);
  color: #1b1712;
  transform: translateY(-150%);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible {
  outline: 3px solid #f5bd50;
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  margin: auto;
  padding: 28px clamp(32px, 5vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 600; }
.brand-mark,
.footer-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 249, 239, .52);
  object-fit: cover;
  background: var(--cream);
}
nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; font-size: 14px; }
.nav-cta { padding: 10px 16px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; }

.hero {
  min-height: 100svh;
  padding: 150px max(32px, calc((100vw - var(--max)) / 2 + 32px)) 70px;
  color: var(--cream);
  background: #090807;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero-copy { width: min(650px, 52%); position: relative; z-index: 2; }
.eyebrow { margin: 0 0 20px; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, blockquote { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; letter-spacing: 0; }
h1 { margin: 0; font-size: clamp(64px, 9vw, 132px); line-height: .88; }
h1 em { color: #d17a56; font-weight: 400; }
.hero-intro { max-width: 560px; margin: 32px 0 0; font-size: clamp(18px, 2vw, 24px); color: rgba(255,249,239,.75); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 20px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 14px; }
.button-primary { background: var(--cream); color: #1b1712; }
.button-ghost { border: 1px solid rgba(255,255,255,.35); }
.hero-photo {
  position: absolute;
  z-index: 1;
  width: min(51vw, 680px);
  height: min(84vh, 800px);
  right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  top: 50%;
  margin: 0;
  transform: translateY(-45%);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
}
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9, 8, 7, .2), transparent 46%), linear-gradient(180deg, transparent 55%, rgba(9, 8, 7, .6)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 44% 52%; transform: scale(1.32); }
.scroll-note { position: absolute; z-index: 2; left: 50%; bottom: 26px; transform: translateX(-50%); margin: 0; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .55; }

section:not(.hero) { max-width: var(--max); margin: auto; padding-left: 32px; padding-right: 32px; }
.film-section { padding-top: 110px; padding-bottom: 130px; }
.section-heading { max-width: 740px; }
h2 { margin: 0; font-size: clamp(48px, 6vw, 88px); line-height: .98; }
.film-heading { max-width: none; margin-left: auto; margin-right: auto; text-align: center; }
.film-heading h2 { font-size: clamp(44px, 5vw, 72px); white-space: nowrap; }
.video-shell {
  position: relative;
  width: min(430px, 100%);
  margin: 54px auto 0;
  background: #0e0d0b;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  box-shadow: 0 28px 70px rgba(47,34,22,.22);
}
.video-shell video { width: 100%; height: 100%; object-fit: cover; }
.film-caption { max-width: 560px; margin: 20px auto 0; color: var(--muted); text-align: center; }
.film-caption a { font-weight: 700; text-underline-offset: 4px; }

.story-section { padding-top: 125px; padding-bottom: 140px; border-top: 1px solid var(--line); }
.story-content h2 { max-width: 850px; }
.story-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; margin-top: 70px; }
.story-grid p { margin-top: 0; }
.story-lead { font-family: "Instrument Serif", serif; font-size: clamp(30px, 3.4vw, 48px); line-height: 1.12; }
.story-body { padding-top: 8px; font-size: 18px; color: var(--muted); }
.story-body p + p { margin-top: 30px; }

.quote-section { max-width: none !important; padding: 130px max(32px, calc((100vw - var(--max)) / 2 + 32px)) !important; background: var(--rust); color: var(--cream); }
.quote-section blockquote { max-width: 1050px; margin: 0 auto; font-size: clamp(58px, 8vw, 120px); line-height: .94; text-align: center; }

.visit-section { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; padding-top: 130px; padding-bottom: 130px; }
.visit-copy h2 { max-width: 560px; }
.address { margin: 42px 0 0; max-width: 430px; font-size: 20px; }
.hours { margin: 10px 0 28px; color: var(--muted); }
.text-link { font-weight: 700; text-underline-offset: 5px; }
.local-gems-link { color: var(--ink); font-size: 14px; font-weight: 700; text-underline-offset: 4px; }
.local-gems-link:hover { color: var(--rust); }
.story-gems-link { display: inline-block; margin-top: 4px; }
.external-icon { white-space: nowrap; }
.service-panel { align-self: end; border-top: 1px solid var(--line); }
.service-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 18px 0; border-bottom: 1px solid var(--line); }
.service-links a { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 20px; padding: 22px 0; text-decoration: none; border-bottom: 1px solid var(--line); transition: padding .2s ease, color .2s ease; }
.service-links a:hover { padding-left: 10px; color: var(--rust); }
.service-links span { color: var(--muted); font-size: 13px; }
.service-links strong { font-size: 20px; }

.map-section { padding-top: 0; padding-bottom: 130px; }
.map-frame { min-height: 440px; overflow: hidden; background: var(--paper-deep); }
.map-frame iframe { width: 100%; height: 440px; border: 0; }

.instagram-section { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; padding-top: 105px; padding-bottom: 105px; border-top: 1px solid var(--line); }
.instagram-section h2 { max-width: 650px; }
.instagram-card { width: min(410px, 100%); display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; margin-top: 38px; padding: 22px; border: 1px solid var(--line); text-decoration: none; background: rgba(255,255,255,.04); }
.ig-symbol { font-size: 40px; }
.instagram-card small { display: block; color: var(--muted); }
.instagram-card strong { font-size: 18px; }

footer { max-width: none; margin: auto; padding: 35px clamp(32px, 5vw, 88px) 50px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); color: var(--muted); }
footer > div { display: flex; align-items: center; gap: 12px; color: var(--ink); }
footer .footer-mark { border-color: var(--line); }
footer p { margin: 0; }
.back-to-top { font-weight: 700; color: var(--ink); text-underline-offset: 4px; }

@media (max-width: 820px) {
  .site-header { padding: 22px 20px; }
  .brand { gap: 9px; }
  .brand-text { font-size: 13px; }
  nav { gap: 14px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero-copy { width: 100%; }
  .hero-photo { width: 72vw; height: 54vh; right: -34vw; top: 56%; opacity: .42; }
  section:not(.hero) { padding-left: 20px; padding-right: 20px; }
  .film-section { padding-top: 80px; padding-bottom: 95px; }
  .film-heading,
  .film-caption,
  .visit-copy,
  .instagram-section,
  footer { text-align: center; }
  .hero-actions,
  .visit-copy,
  footer,
  footer > div { justify-content: center; }
  .address { margin-left: auto; margin-right: auto; }
  .video-shell { margin-top: 36px; max-height: 78vh; }
  .story-section { grid-template-columns: 1fr; gap: 24px; padding-top: 90px; padding-bottom: 95px; }
  .story-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 45px; }
  .quote-section { padding-top: 95px !important; padding-bottom: 95px !important; }
  .visit-section { grid-template-columns: 1fr; gap: 65px; padding-top: 90px; padding-bottom: 90px; }
  .map-section { padding-bottom: 90px; }
  .map-frame { min-height: 390px; }
  .map-frame iframe { height: 390px; }
  .instagram-section { align-items: center; flex-direction: column; padding-top: 80px; padding-bottom: 80px; }
  .instagram-card { margin-top: 0; }
  footer { padding-left: 20px; padding-right: 20px; align-items: center; gap: 25px; flex-direction: column; }
}

@media (max-width: 560px) {
  .site-header { padding: 16px; }
  .brand-mark,
  .footer-mark { width: 32px; height: 32px; }
  .brand-text { font-size: 12px; }
  .nav-cta { padding: 7px 10px; font-size: 12px; }
  .hero {
    min-height: 100svh;
    padding: max(138px, 20svh) 20px 68px;
    align-items: flex-start;
  }
  h1 { font-size: 56px; }
  h2 { font-size: 42px; }
  .hero .eyebrow { margin-bottom: 20px; font-size: 10px; letter-spacing: .14em; }
  .hero-intro { margin-top: 32px; font-size: 17px; line-height: 1.5; }
  .hero-actions { justify-content: flex-start; gap: 10px; margin-top: 38px; }
  .button { min-height: 44px; padding: 11px 15px; font-size: 13px; }
  .scroll-note { bottom: 22px; color: var(--cream); font-size: 10px; opacity: .82; }
  .film-section { padding-top: 64px; padding-bottom: 68px; }
  .film-heading h2 { font-size: 40px; }
  .video-shell { width: min(320px, 100%); margin-top: 28px; max-height: none; }
  .film-caption { margin-top: 14px; font-size: 14px; }
  .story-section { padding-top: 66px; padding-bottom: 70px; }
  .story-grid { gap: 24px; margin-top: 34px; }
  .story-lead { font-size: 30px; }
  .story-body { padding-top: 0; font-size: 16px; }
  .story-body p + p { margin-top: 20px; }
  .quote-section { padding-top: 68px !important; padding-bottom: 68px !important; }
  .quote-section blockquote { font-size: 52px; }
  .visit-section { gap: 44px; padding-top: 66px; padding-bottom: 68px; }
  .address { margin-top: 28px; font-size: 18px; }
  .hours { margin-bottom: 22px; font-size: 14px; }
  .local-gems-link { max-width: 290px; font-size: 13px; line-height: 1.45; }
  .service-label { padding: 14px 0; font-size: 10px; }
  .service-panel { text-align: center; }
  .service-links a {
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    padding: 17px 0;
    text-align: left;
  }
  .service-links span { grid-column: 1 / -1; }
  .service-links strong { font-size: 18px; }
  .service-links b { align-self: center; }
  .hero-photo { width: 86vw; height: 47vh; right: -49vw; }
  .map-section { padding-bottom: 68px; }
  .map-frame { min-height: 280px; }
  .map-frame iframe { height: 280px; }
  .instagram-section { gap: 26px; padding-top: 66px; padding-bottom: 66px; }
  .instagram-card { width: min(300px, 100%); gap: 12px; padding: 13px 14px; text-align: left; }
  .ig-symbol { font-size: 28px; }
  .instagram-card small { font-size: 11px; }
  .instagram-card strong { font-size: 15px; }
  footer { gap: 18px; padding-top: 28px; padding-bottom: 34px; font-size: 14px; }
  .film-heading h2 { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
