@charset "UTF-8";

:root {
  color-scheme: light;
  --paper: #f5f1e8;
  --paper-deep: #ebe3d3;
  --ink: #292321;
  --muted: #6e625b;
  --wine: #5b172a;
  --wine-dark: #39101d;
  --wine-light: #7a3543;
  --olive: #596448;
  --line: #d7cbbb;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --page-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button { font: inherit; }
::selection { color: #fff9ed; background: var(--wine); }
.skip-link {
  position: fixed;
  z-index: 20;
  top: 8px;
  left: 12px;
  padding: 10px 14px;
  color: #fffaf1;
  background: var(--wine-dark);
  text-decoration: none;
  font-size: 12px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.topline {
  height: 34px;
  padding: 0 5.25vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--wine-dark);
  color: #f3ebde;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.topline-note { opacity: .77; font-weight: 500; }
.site-header {
  position: relative;
  z-index: 5;
  min-height: 90px;
  padding: 0 5.25vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  border-bottom: 1px solid rgba(91, 23, 42, .12);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 11px;
  color: var(--wine);
  text-decoration: none;
}
.brand-mark { width: 31px; height: 38px; flex: none; }
.brand-name { font: 22px/1 var(--serif); letter-spacing: -.045em; }
.brand-name strong { font-weight: 700; }
.primary-navigation { display: flex; align-items: center; gap: clamp(24px, 3.3vw, 52px); }
.primary-navigation a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #483d39;
  text-decoration: none;
  font-size: 12px;
  font-weight: 650;
  transition: color .18s ease;
}
.primary-navigation a:hover, .primary-navigation a:focus-visible { color: var(--wine-light); }
.primary-navigation .nav-call {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 15px;
  padding: 12px 17px;
  color: var(--paper);
  background: var(--wine);
  border-radius: 3px;
}
.nav-call span { font-size: 16px; line-height: .8; }
.menu-toggle { display: none; }

.hero {
  min-height: min(750px, calc(100svh - 124px));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  overflow: hidden;
  background: var(--paper);
}
.hero-copy {
  align-self: center;
  min-width: 0;
  width: min(100%, 800px);
  padding: 70px clamp(32px, 4vw, 60px) 68px clamp(36px, 5.5vw, 128px);
  justify-self: start;
}
.eyebrow {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: #9c6741; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin-bottom: 26px;
  color: var(--wine-dark);
  font: 500 clamp(52px, 5.1vw, 75px)/.99 var(--serif);
  letter-spacing: -.052em;
}
h1 em, h2 em { color: var(--wine); font-weight: 400; }
.hero-intro { max-width: 395px; margin-bottom: 31px; color: #695f59; font-size: 15px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.button {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 21px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button span { font-size: 17px; font-weight: 400; }
.button-dark { color: #fffaf1; background: var(--wine); }
.button-dark:hover { background: var(--wine-dark); }
.button-light { color: var(--wine-dark); background: var(--paper); }
.button-light:hover { background: white; }
.text-link {
  position: relative;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--wine);
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
}
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.text-link:hover::after, .text-link:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.hero-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 52px;
  color: #584b45;
  font-size: 11px;
  line-height: 1.55;
}
.hero-address small { color: var(--muted); font-size: 11px; }
.pin-icon { width: 16px; height: 21px; flex: none; margin-top: 1px; color: var(--wine); }

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: min(750px, calc(100svh - 124px));
  display: grid;
  align-items: end;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: #372b27;
  color: #fff8ed;
}
.hero-picture { position: absolute; inset: 0; overflow: hidden; }
.hero-picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.9) contrast(1.02) brightness(1.08);
  transition: transform .8s cubic-bezier(.2,.65,.3,1);
}
.hero-visual:hover .hero-picture img { transform: scale(1.025); }
.hero-visual::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(24, 15, 12, .38), transparent 27%, rgba(24, 15, 12, .04) 48%, rgba(24, 15, 12, .7));
  pointer-events: none;
}
.visual-place {
  position: absolute;
  z-index: 1;
  top: clamp(22px, 3vw, 42px);
  right: clamp(22px, 3vw, 42px);
  padding: 9px 12px;
  color: #fff8ed;
  background: rgba(38, 27, 23, .58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.visual-place i { color: #e2c092; font-style: normal; padding: 0 3px; }
.visual-caption {
  position: absolute;
  z-index: 1;
  bottom: clamp(24px, 4vw, 54px);
  left: clamp(26px, 4vw, 54px);
  max-width: min(88%, 370px);
  padding: 15px 19px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--wine-dark);
  background: rgba(248, 244, 235, .96);
  border-left: 3px solid var(--wine);
  box-shadow: 0 12px 38px rgba(23, 12, 10, .16);
}
.visual-caption-mark { color: var(--wine); font: 31px/.9 var(--serif); }
.visual-caption strong { display: block; font: 20px/1.15 var(--serif); }
.visual-caption small { display: block; margin-top: 4px; color: #61564e; font: 11px/1.4 var(--sans); }
.promise-strip {
  min-height: 79px;
  padding: 20px 8.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 42px);
  background: #ece5d8;
  color: #534740;
  font: italic 15px var(--serif);
  text-align: center;
}
.promise-strip i { width: 4px; height: 4px; flex: none; border-radius: 50%; background: var(--wine-light); }
.promise-strip span { min-width: 0; flex: 0 1 auto; }

.section { width: min(100% - 11vw, var(--page-width)); margin: 0 auto; }
.bodega {
  padding-top: 128px;
  padding-bottom: 132px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 9%;
}
.section-heading, .bodega-content, .events-title-block, .events-details, .visit-copy { min-width: 0; }
.section-heading .eyebrow { margin-bottom: 22px; }
.section h2, .events h2 {
  margin: 0;
  color: var(--wine-dark);
  font: 500 clamp(41px, 4.2vw, 59px)/1.03 var(--serif);
  letter-spacing: -.045em;
}
.body-large { color: #675d56; font-size: 14px; line-height: 1.8; }
.bodega-content { padding-top: 15px; }
.bodega-content > .body-large { max-width: 495px; margin-bottom: 31px; }
.shelf-list { border-top: 1px solid var(--line); }
.shelf-item {
  min-height: 65px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font: 20px var(--serif);
  color: var(--wine-dark);
}
.shelf-number { color: #76553f; font: 10px var(--sans); letter-spacing: .09em; }
.shelf-detail { color: var(--muted); font: 11px var(--sans); text-align: right; }
.shelf-cta { margin-top: 25px; }

.shop-story { padding-top: 18px; padding-bottom: 128px; }
.shop-story-head {
  margin-bottom: 43px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr);
  align-items: end;
  gap: 8%;
}
.shop-story-head .eyebrow { margin-bottom: 18px; }
.shop-story-head h2 { font-size: clamp(45px, 4.5vw, 62px); }
.shop-story-intro { max-width: 400px; margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.photo-gallery { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(0, .72fr); align-items: end; gap: 18px; }
.photo-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: #3b302b;
  color: #fff8ed;
}
.photo-card-main { height: clamp(430px, 42vw, 550px); }
.photo-card-detail { height: clamp(340px, 34vw, 445px); }
.photo-card picture { position: absolute; inset: 0; }
.photo-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .65s cubic-bezier(.2,.65,.3,1); }
.photo-card-main img { object-position: center 52%; filter: saturate(.88) brightness(1.04); }
.photo-card-detail img { object-position: center 38%; filter: saturate(.82) contrast(1.04) brightness(1.06); }
.photo-card:hover img { transform: scale(1.035); }
.photo-card::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(22, 14, 12, .12) 55%, rgba(22, 14, 12, .77));
  pointer-events: none;
}
.photo-card figcaption { position: absolute; z-index: 1; right: 25px; bottom: 25px; left: 25px; display: grid; gap: 10px; }
.photo-card figcaption > span { color: #f0d4ac; font-size: 9px; font-weight: 750; letter-spacing: .16em; }
.photo-card figcaption i { padding: 0 5px; font-style: normal; }
.photo-card figcaption strong { font: 28px/1.08 var(--serif); font-weight: 400; letter-spacing: -.02em; }
.events {
  position: relative;
  overflow: hidden;
  background: var(--wine-dark);
  color: #f8f0e3;
}
.events-pattern {
  position: absolute;
  top: -210px;
  right: -110px;
  width: 590px;
  aspect-ratio: 1;
  border: 1px solid rgba(235, 212, 180, .12);
  border-radius: 50%;
}
.events-pattern::before, .events-pattern::after { position: absolute; inset: 44px; border: 1px solid rgba(235, 212, 180, .12); border-radius: 50%; content: ""; }
.events-pattern::after { inset: 95px; }
.events-inner {
  position: relative;
  width: min(100% - 11vw, var(--page-width));
  margin: 0 auto;
  padding: 112px 0 116px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 12%;
}
.eyebrow-light { color: #e7d3b7; }
.eyebrow-light .eyebrow-dot { background: #c9a06f; }
.events h2 { margin-bottom: 23px; color: #fff8eb; font-size: clamp(43px, 4.8vw, 67px); }
.events h2 em { color: #d7b78d; }
.events-title-block > p:not(.eyebrow) { max-width: 340px; margin-bottom: 28px; color: #d8c7bb; font-size: 13px; line-height: 1.75; }
.events-details { padding-top: 30px; }
.event-detail { display: grid; grid-template-columns: 43px 1fr; gap: 17px; padding: 0 0 22px; margin-bottom: 23px; border-bottom: 1px solid rgba(243, 229, 209, .22); }
.detail-mark { padding-top: 4px; color: #d3b287; font: italic 15px var(--serif); }
.event-detail h3 { margin: 0 0 7px; color: #fff8eb; font: 24px var(--serif); }
.event-detail p { max-width: 400px; margin: 0; color: #d2c2b8; font-size: 12px; line-height: 1.75; }
.event-note {
  max-width: 440px;
  margin: 7px 0 0 60px;
  padding: 14px 16px;
  border-left: 2px solid #d3b287;
  background: rgba(255, 255, 255, .055);
  color: #eadcc8;
  font-size: 12px;
  line-height: 1.65;
}
.event-note strong { color: #fff8eb; }

.visit {
  padding-top: 127px;
  padding-bottom: 128px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 10%;
}
.visit-copy .eyebrow { margin-bottom: 21px; }
.visit-copy h2 { margin-bottom: 22px; }
.visit-copy .body-large { max-width: 380px; margin-bottom: 25px; }
address { color: var(--wine-dark); font: 20px/1.45 var(--serif); font-style: normal; }
address span { color: var(--muted); font: 11px/1.7 var(--sans); }
.visit-actions { margin-top: 25px; display: flex; flex-wrap: wrap; align-items: center; gap: 23px; }
.map-card {
  position: relative;
  min-height: 395px;
  overflow: hidden;
  display: block;
  background: var(--wine-dark);
  color: #fff8eb;
  text-decoration: none;
  isolation: isolate;
}
.map-card::before {
  position: absolute;
  z-index: -1;
  top: -105px;
  right: -80px;
  width: min(82%, 370px);
  aspect-ratio: 1;
  border: 1px solid rgba(235, 212, 180, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(235, 212, 180, .035), 0 0 0 70px rgba(235, 212, 180, .035);
  content: "";
  transition: transform .45s ease;
}
.map-card:hover::before { transform: scale(1.04); }
.location-index {
  position: absolute;
  top: 28px;
  left: 30px;
  color: #d8c6ac;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .16em;
}
.location-index i { padding: 0 5px; color: #d3b287; font-style: normal; }
.location-watermark {
  position: absolute;
  top: 8px;
  right: 28px;
  color: rgba(248, 240, 227, .08);
  font: 220px/.9 var(--serif);
  letter-spacing: -.08em;
  user-select: none;
}
.location-pin { position: absolute; top: 148px; right: 83px; width: 38px; color: #d3b287; }
.location-pin svg { display: block; width: 100%; fill: currentColor; }
.location-pin circle { fill: var(--wine-dark); }
.location-card-copy { position: absolute; right: 30px; bottom: 82px; left: 30px; display: grid; gap: 5px; }
.location-kicker { color: #d3b287; font-size: 9px; font-weight: 750; letter-spacing: .16em; }
.location-card-copy strong { max-width: 420px; color: #fff8eb; font: 24px/1.2 var(--serif); font-weight: 400; }
.location-card-copy small { color: #d8c7bb; font-size: 11px; }
.map-open {
  position: absolute;
  right: auto;
  bottom: 20px;
  left: 30px;
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--wine-dark);
  background: var(--paper);
  font-size: 10px;
  font-weight: 700;
}
.map-open b { font-size: 15px; font-weight: 400; line-height: .8; transition: transform .2s ease; }
.map-card:hover .map-open b { transform: translate(2px, -2px); }

.site-footer {
  min-height: 105px;
  padding: 24px 5.25vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.brand-footer .brand-mark { width: 25px; height: 30px; }
.brand-footer .brand-name { font-size: 18px; }
.site-footer > p { margin: 0; color: var(--muted); font: italic 13px var(--serif); }
.footer-contact { display: flex; gap: 24px; }
.footer-contact a { min-height: 24px; display: inline-flex; align-items: center; color: var(--wine); font-size: 11px; font-weight: 700; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

:focus-visible { outline: 2px solid #a95d47; outline-offset: 4px; }

@media (min-width: 1450px) {
  .hero { min-height: 770px; }
  .hero h1 { font-size: clamp(58px, 4.4vw, 68px); }
}
@media (max-width: 1000px) {
  .site-header { min-height: 78px; }
  .hero { min-height: 660px; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); }
  .hero-copy { padding: 55px clamp(28px, 4vw, 40px) 50px clamp(36px, 5.5vw, 55px); }
  .hero h1 { font-size: clamp(44px, 5vw, 54px); }
  .hero-visual { min-height: 570px; }
  .bodega, .events-inner, .visit { gap: 6%; }
  .section, .events-inner { width: min(100% - 12vw, var(--page-width)); }
  .shelf-item { grid-template-columns: 30px 1fr; gap: 9px; font-size: 18px; }
  .shelf-detail { grid-column: 2; text-align: left; padding: 0 0 11px; margin-top: -15px; }
  .map-card { min-height: 345px; }
}
@media (max-width: 940px) {
  .hero { min-height: 0; grid-template-columns: minmax(0, 1fr); }
  .hero-copy { width: min(100%, 1060px); padding: 68px max(5.25vw, 36px) 38px; justify-self: center; }
  .hero h1 { font-size: clamp(56px, 8vw, 72px); }
  .hero-intro { max-width: 460px; }
  .hero-address { margin-top: 30px; }
  .hero-visual { min-height: clamp(430px, 62vw, 590px); }
}
@media (max-width: 860px) {
  .site-header { min-height: 72px; }
  .bodega, .events-inner, .visit { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .bodega { padding-top: 92px; padding-bottom: 92px; }
  .bodega-content { max-width: 720px; padding-top: 0; }
  .events-inner { padding: 86px 0 90px; }
  .events-details { max-width: 700px; padding-top: 0; }
  .visit { padding-top: 92px; padding-bottom: 92px; }
  .visit-copy { max-width: 690px; }
  .map-card { min-height: clamp(340px, 50vw, 430px); }
  .menu-toggle {
    min-height: 44px;
    padding: 6px 0 6px 14px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    border: 0;
    color: var(--wine-dark);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle-label { font-size: 11px; font-weight: 700; }
  .menu-toggle-icon { width: 20px; display: grid; gap: 5px; }
  .menu-toggle-icon i { height: 1px; display: block; background: var(--wine); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .primary-navigation {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    padding: 9px 25px 22px;
    display: none;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px rgba(48, 28, 20, .07);
  }
  .primary-navigation.is-open { display: flex; flex-direction: column; }
  .primary-navigation a { min-height: 44px; padding: 12px 2px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 13px; }
  .primary-navigation .nav-call { width: fit-content; margin-top: 13px; padding: 12px 16px; border: 0; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .topline { height: 30px; padding: 0 20px; font-size: 9px; }
  .topline-note { display: none; }
  .site-header { min-height: 70px; padding: 0 20px; }
  .brand-mark { width: 27px; height: 33px; }
  .brand-name { font-size: 20px; }
  .primary-navigation { padding-right: 20px; padding-left: 20px; }
  .primary-navigation a { padding: 14px 2px; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { width: 100%; padding: 63px 25px 43px; justify-self: stretch; }
  .eyebrow { margin-bottom: 20px; font-size: 10px; }
  .hero h1 { margin-bottom: 20px; font-size: clamp(50px, 12vw, 66px); }
  .hero-intro { max-width: 430px; margin-bottom: 25px; font-size: 14px; }
  .hero-actions { gap: 19px; }
  .button { min-height: 48px; padding: 0 15px; }
  .hero-address { margin-top: 30px; font-size: 10px; }
  .hero-visual { min-height: clamp(270px, 68vw, 420px); }
  .visual-place { top: 15px; right: 15px; padding: 8px 10px; font-size: 9px; }
  .visual-caption { bottom: 16px; left: 16px; max-width: 88%; padding: 11px 13px; gap: 11px; }
  .visual-caption-mark { font-size: 27px; }
  .visual-caption strong { font-size: 18px; }
  .visual-caption small { font-size: 10px; }
  .promise-strip { min-height: 0; padding: 18px 15px; gap: 12px; font-size: 12px; }
  .promise-strip span { max-width: none; flex: 1 1 0; }
  .promise-strip i { width: 3px; height: 3px; }
  .section { width: auto; margin: 0 25px; }
  .bodega { padding-top: 75px; padding-bottom: 77px; grid-template-columns: 1fr; gap: 22px; }
  .section h2 { font-size: clamp(41px, 10vw, 54px); }
  .bodega-content { padding-top: 0; }
  .body-large { font-size: 13px; }
  .shop-story { padding-top: 5px; padding-bottom: 78px; }
  .shop-story-head { grid-template-columns: minmax(0, 1fr); gap: 16px; margin-bottom: 28px; }
  .shop-story-head h2 { font-size: clamp(41px, 10vw, 54px); }
  .shop-story-intro { max-width: 430px; margin: 0; font-size: 13px; }
  .photo-gallery { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .photo-card-main { height: clamp(370px, 110vw, 500px); }
  .photo-card-detail { height: clamp(270px, 75vw, 360px); }
  .photo-card figcaption { right: 20px; bottom: 20px; left: 20px; }
  .photo-card figcaption strong { font-size: 25px; }
  .shelf-item { min-height: 62px; grid-template-columns: 27px 1fr auto; gap: 7px; font-size: 17px; }
  .shelf-detail { grid-column: auto; padding: 0; margin: 0; text-align: right; font-size: 10px; }
  .shelf-cta { margin-top: 20px; }
  .events-inner { width: auto; margin: 0 25px; padding: 74px 0 77px; grid-template-columns: 1fr; gap: 43px; }
  .events h2 { font-size: clamp(47px, 11vw, 60px); }
  .events-title-block > p:not(.eyebrow) { max-width: 390px; }
  .events-details { padding-top: 0; }
  .event-detail { grid-template-columns: 34px 1fr; gap: 12px; padding-bottom: 18px; margin-bottom: 19px; }
  .event-detail h3 { font-size: 22px; }
  .event-detail p { font-size: 12px; }
  .event-note { margin-left: 46px; font-size: 13px; }
  .visit { padding-top: 75px; padding-bottom: 76px; grid-template-columns: 1fr; gap: 32px; }
  .visit-copy h2 { font-size: clamp(43px, 10vw, 54px); }
  .visit-actions { gap: 20px; }
  .map-card { min-height: 300px; }
  .location-index { top: 21px; left: 22px; font-size: 8px; }
  .location-watermark { top: 31px; right: 12px; font-size: clamp(148px, 54vw, 190px); }
  .location-pin { top: 122px; right: 46px; width: 32px; }
  .location-card-copy { right: 22px; bottom: 77px; left: 22px; }
  .location-card-copy strong { font-size: clamp(18px, 5vw, 22px); }
  .map-open { bottom: 18px; left: 22px; min-height: 42px; }
  .site-footer { padding: 23px 25px; display: grid; grid-template-columns: 1fr auto; gap: 12px; }
  .site-footer > p { grid-column: 1; grid-row: 2; font-size: 12px; }
  .footer-contact { grid-column: 2; grid-row: 1 / span 2; flex-direction: column; justify-content: center; gap: 11px; }
}
@media (max-width: 390px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .shelf-item { grid-template-columns: 23px 1fr; }
  .shelf-detail { grid-column: 2; text-align: left; padding-bottom: 9px; margin-top: -14px; }
  .promise-strip { gap: 8px; font-size: 10px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-contact { grid-column: 1; grid-row: 3; flex-direction: row; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
