:root {
  --ink: #1b120c;
  --muted: #6a5a48;
  --paper: #f9f0dd;
  --paper-2: #fbf3e2;
  --cream: #efe1c6;
  --olive: #556238;
  --olive-deep: #3d4926;
  --tomato: #8b2c1f;
  --wine: #3f1613;
  --wine-2: #2a0f0c;
  --terra: #a35a2a;
  --gold: #b6863d;
  --gold-2: #d7b072;
  --line: rgba(31, 20, 12, 0.14);
  --line-strong: rgba(31, 20, 12, 0.28);
  --shadow-sm: 0 6px 18px -8px rgba(31, 20, 12, 0.28);
  --shadow-md: 0 20px 50px -20px rgba(31, 20, 12, 0.35);
  --shadow-lg: 0 36px 90px -30px rgba(31, 20, 12, 0.45);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Baskerville", "Hoefler Text", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-h: 72px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 100% -10%, rgba(163, 90, 42, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(85, 98, 56, 0.08), transparent 60%),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
::selection {
  background: var(--wine);
  color: var(--paper);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}
h1 em,
h2 em,
h3 em {
  font-style: italic;
  font-weight: 500;
}
p {
  margin: 0;
}
.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  padding: 12px clamp(16px, 4vw, 44px);
  color: #fff8e9;
  background: linear-gradient(to bottom, rgba(20, 12, 8, 0.7), rgba(20, 12, 8, 0));
  transition: background .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(28, 18, 12, 0.94);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid rgba(215, 176, 114, 0.6);
  border-radius: 50%;
  background: rgba(255, 248, 233, 0.06);
}
.brand-mark svg {
  width: 22px;
  height: 22px;
}
.brand-text {
  line-height: 1;
}
.brand-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.brand-text small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 248, 233, 0.72);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a {
  text-decoration: none;
  transition: color .25s var(--ease);
}
.nav-links a:hover {
  color: var(--gold-2);
}
.nav-links .nav-call {
  padding: 9px 14px;
  color: #fff8e9;
  background: rgba(139, 44, 31, 0.85);
  border: 1px solid rgba(215, 176, 114, 0.4);
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-links .nav-call:hover {
  color: #fff8e9;
  background: var(--tomato);
  transform: translateY(-1px);
}
.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--wine-2);
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transform: scale(1.02);
}
.hero-shade {
  background:
    radial-gradient(1200px 700px at 15% 90%, rgba(42, 15, 12, 0.9), transparent 60%),
    linear-gradient(180deg, rgba(20, 10, 6, 0.55), rgba(20, 10, 6, 0) 30%),
    linear-gradient(180deg, rgba(20, 10, 6, 0) 40%, rgba(20, 10, 6, 0.85));
}
.hero-seal {
  position: absolute;
  right: clamp(18px, 5vw, 60px);
  top: calc(var(--header-h) + 12px);
  z-index: 2;
  width: clamp(88px, 12vw, 132px);
  color: rgba(215, 176, 114, 0.85);
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}
.hero-seal svg {
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  padding: clamp(140px, 22vh, 220px) clamp(18px, 5vw, 44px) clamp(56px, 9vh, 108px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow-rule {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.hero .eyebrow {
  color: var(--gold-2);
}
h1 {
  max-width: 1040px;
  margin-bottom: 26px;
  color: #fff5e2;
  font-size: clamp(44px, 7.2vw, 100px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
h1 em {
  color: var(--gold-2);
  font-style: italic;
  font-weight: 500;
}
h2 {
  margin-bottom: 20px;
  color: var(--wine);
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.04;
  text-wrap: balance;
}
h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: #f5e6cf;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
}
.hero-foot {
  margin-top: 22px;
  color: rgba(255, 245, 226, 0.68);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.button .btn-ico {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.button.primary {
  color: #fff5e2;
  background: var(--tomato);
  border-color: var(--tomato);
  box-shadow: 0 14px 30px -12px rgba(139, 44, 31, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.button.primary:hover {
  background: #7a2519;
  border-color: #7a2519;
  transform: translateY(-1px);
  box-shadow: 0 20px 36px -14px rgba(139, 44, 31, 0.6);
}
.button.ghost {
  color: #fff8e9;
  background: rgba(255, 248, 233, 0.06);
  border-color: rgba(255, 248, 233, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.button.ghost:hover {
  background: rgba(255, 248, 233, 0.14);
  border-color: rgba(255, 248, 233, 0.8);
  transform: translateY(-1px);
}
.button.secondary {
  color: var(--wine);
  background: #fffaf1;
  border-color: rgba(31, 20, 12, 0.18);
  box-shadow: var(--shadow-sm);
}
.button.secondary:hover {
  background: #fff;
  border-color: var(--wine);
  transform: translateY(-1px);
}
.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 4px clamp(16px, 4vw, 44px);
  background:
    linear-gradient(180deg, var(--cream), var(--paper-2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick-strip div {
  padding: 22px 20px;
  border-right: 1px dashed var(--line);
  text-align: center;
}
.quick-strip div:last-child {
  border-right: 0;
}
.quick-strip span,
.hours span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.quick-strip strong {
  font-family: var(--serif);
  font-size: clamp(19px, 2.3vw, 24px);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.hours strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 44px);
}
.section-grid.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}
.section-copy p:not(.eyebrow):not(.menu-intro):not(.gallery-note) {
  max-width: 640px;
  color: var(--muted);
  font-size: 17.5px;
  line-height: 1.7;
}
.section-copy p + p {
  margin-top: 14px;
}
.lead-p::first-letter {
  float: left;
  margin: 6px 10px 0 0;
  color: var(--tomato);
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 0.85;
}
.feature-photo {
  position: relative;
  aspect-ratio: 4 / 4.6;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.feature-photo.tall {
  aspect-ratio: 4 / 5.1;
}
.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.feature-photo:hover img {
  transform: scale(1.03);
}
.feature-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  color: #fff8e9;
  background: rgba(31, 20, 12, 0.75);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ornament {
  display: flex;
  justify-content: center;
  color: var(--gold);
  opacity: 0.7;
  padding: 8px 24px 22px;
}
.ornament svg {
  width: min(220px, 60%);
  height: 20px;
}
.menu-band {
  position: relative;
  padding: clamp(80px, 10vw, 130px) clamp(18px, 5vw, 44px) clamp(90px, 12vw, 140px);
  color: #fff5e2;
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(163, 90, 42, 0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(85, 98, 56, 0.16), transparent 60%),
    linear-gradient(180deg, var(--wine), var(--wine-2));
}
.menu-band h2 {
  color: #fff5e2;
}
.menu-band .eyebrow {
  color: var(--gold-2);
}
.menu-intro {
  max-width: 620px;
  margin: 12px auto 0;
  color: rgba(255, 245, 226, 0.78);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
}
.centered {
  max-width: 830px;
  margin: 0 auto 48px;
  text-align: center;
}
.centered .eyebrow {
  justify-content: center;
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(215, 176, 114, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 248, 233, 0.03);
  backdrop-filter: blur(2px);
}
.menu-list article {
  position: relative;
  min-height: 240px;
  padding: 32px 26px 30px;
  border-right: 1px solid rgba(215, 176, 114, 0.18);
  background: transparent;
  transition: background .3s var(--ease);
}
.menu-list article:last-child {
  border-right: 0;
}
.menu-list article:hover {
  background: rgba(255, 248, 233, 0.05);
}
.menu-list article::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.menu-list article:hover::before {
  opacity: 0.9;
  transform: translateY(0);
}
.menu-list span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}
.menu-list h3 {
  color: #fff5e2;
  font-size: 20px;
}
.menu-list p {
  margin-top: 10px;
  color: rgba(255, 245, 226, 0.78);
  font-size: 14.5px;
  line-height: 1.6;
}
.gallery {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 44px);
}
.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}
.gallery-head h2 {
  max-width: 640px;
  margin: 8px 0 0;
}
.gallery-note {
  max-width: 300px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
}
.photo-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  grid-auto-rows: 240px;
  gap: 14px;
}
.photo-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.photo-grid figure:hover img {
  transform: scale(1.05);
}
.photo-grid figure:first-child {
  grid-row: span 2;
}
.photo-grid figure:nth-child(2) {
  grid-column: span 2;
}
.visit {
  position: relative;
  padding: clamp(78px, 10vw, 128px) clamp(18px, 5vw, 44px) clamp(96px, 12vw, 140px);
  color: #fff8ea;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(215, 176, 114, 0.16), transparent 60%),
    linear-gradient(180deg, var(--olive), var(--olive-deep));
}
.visit-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.visit-copy {
  max-width: 620px;
}
.visit .eyebrow {
  color: var(--gold-2);
}
.visit h2 {
  color: #fff8ea;
}
.visit p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 248, 234, 0.86);
  font-size: 17.5px;
  line-height: 1.65;
}
.hours {
  display: grid;
  gap: 0;
  padding: 8px 4px;
  background: rgba(255, 248, 233, 0.06);
  border: 1px solid rgba(215, 176, 114, 0.28);
  border-radius: var(--radius);
}
.hours div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border-bottom: 1px dashed rgba(215, 176, 114, 0.22);
}
.hours div:last-child {
  border-bottom: 0;
}
.hours span {
  margin-bottom: 0;
  color: rgba(255, 248, 234, 0.72);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.hours strong {
  color: #fff8ea;
}
.visit-actions {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 40px);
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 44px);
  color: rgba(211, 199, 184, 0.9);
  background: #140d0b;
}
.footer p {
  margin: 0;
  color: rgba(211, 199, 184, 0.9);
  font-size: 13.5px;
  line-height: 1.5;
}
.footer .footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff8e9;
  letter-spacing: -0.005em;
}
.footer .footer-note {
  color: rgba(211, 199, 184, 0.62);
  font-style: italic;
}
.mobile-actions {
  display: none;
}
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  .feature-photo img,
  .photo-grid img {
    transition: none;
  }
}
@media (max-width: 900px) {
  :root {
    --header-h: 62px;
  }
  .site-header {
    padding: 10px 16px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand-mark svg {
    width: 20px;
    height: 20px;
  }
  .brand-text strong {
    font-size: 18px;
  }
  .brand-text small {
    margin-top: 3px;
    font-size: 9.5px;
  }
  .nav-links {
    gap: 10px;
  }
  .nav-links a:not(.nav-call) {
    display: none;
  }
  .nav-links .nav-call {
    padding: 7px 12px;
    font-size: 11.5px;
  }
  .hero {
    min-height: 88vh;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(20, 10, 6, 0.55), rgba(20, 10, 6, 0) 30%),
      linear-gradient(180deg, rgba(20, 10, 6, 0) 30%, rgba(20, 10, 6, 0.9));
  }
  .hero-seal {
    top: calc(var(--header-h) + 8px);
    right: 14px;
    width: 80px;
  }
  .hero-content {
    padding: 120px 18px 60px;
  }
  h1 {
    font-size: clamp(38px, 10.5vw, 60px);
    line-height: 1.03;
  }
  .hero-copy {
    font-size: 17px;
  }
  .quick-strip,
  .section-grid,
  .section-grid.reverse,
  .visit-inner {
    grid-template-columns: 1fr;
  }
  .quick-strip {
    padding: 0;
  }
  .quick-strip div {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px dashed var(--line);
    text-align: left;
  }
  .quick-strip div:last-child {
    border-bottom: 0;
  }
  .section-grid,
  .gallery,
  .visit,
  .menu-band {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section-grid {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 34px;
  }
  .section-grid.reverse .feature-photo {
    order: 2;
  }
  .feature-photo {
    aspect-ratio: 4 / 3.6;
  }
  .feature-photo.tall {
    aspect-ratio: 4 / 4.2;
  }
  .menu-band {
    padding-top: 68px;
    padding-bottom: 72px;
  }
  .centered {
    margin-bottom: 32px;
  }
  .menu-list {
    grid-template-columns: 1fr;
  }
  .menu-list article {
    min-height: 0;
    padding: 22px 22px 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 176, 114, 0.18);
  }
  .menu-list article:last-child {
    border-bottom: 0;
  }
  .menu-list article::before {
    display: none;
  }
  .menu-list span {
    margin-bottom: 12px;
  }
  .gallery {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .gallery-head {
    display: block;
  }
  .gallery-note {
    margin-top: 14px;
    max-width: 100%;
  }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 10px;
  }
  .photo-grid figure:first-child,
  .photo-grid figure:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }
  .visit {
    padding-top: 68px;
    padding-bottom: 76px;
  }
  .visit-inner {
    gap: 26px;
  }
  .visit-copy {
    max-width: none;
  }
  .visit-actions {
    justify-content: flex-start;
    margin-top: 22px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 26px 18px calc(96px + env(safe-area-inset-bottom));
  }
  .mobile-actions {
    position: fixed;
    z-index: 40;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    padding: 6px;
    gap: 6px;
    border: 1px solid rgba(215, 176, 114, 0.35);
    border-radius: var(--radius-pill);
    background: rgba(27, 18, 12, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 44px -14px rgba(0, 0, 0, 0.55);
  }
  .mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 50px;
    color: #fff8e9;
    background: transparent;
    border-radius: var(--radius-pill);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background .2s var(--ease);
  }
  .mobile-actions a:first-child {
    background: var(--tomato);
  }
  .mobile-actions a:active {
    background: rgba(215, 176, 114, 0.18);
  }
  .mobile-actions svg {
    opacity: 0.95;
  }
}
@media (max-width: 520px) {
  .hero-actions .button,
  .visit-actions .button {
    width: 100%;
  }
  .hero-actions {
    gap: 10px;
  }
  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .mobile-actions a span {
    font-size: 12px;
  }
}
