:root {
  --background: #1b1613;
  --foreground: #dccfb8;
  --card: rgba(39, 31, 27, 0.88);
  --card-solid: #241d1a;
  --muted: #a29179;
  --border: rgba(93, 74, 60, 0.65);
  --primary: #d7a137;
  --primary-light: #e5c173;
  --primary-dark: #8f5f1c;
  --accent: #8d4031;
  --shadow: 0 0 30px rgba(215, 161, 55, 0.08), 0 10px 30px rgba(0, 0, 0, 0.42);
  --shadow-ember: 0 0 40px rgba(141, 64, 49, 0.16), 0 10px 34px rgba(0, 0, 0, 0.5);
}

@font-face { font-family: "Cinzel"; src: url("../fonts/cinzel_5.2.7_latin-400-normal.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Cinzel Decorative"; src: url("../fonts/cinzel-decorative_5.2.8_latin-400-normal.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Crimson Text"; src: url("../fonts/crimson-text_5.2.6_latin-400-normal.woff2") format("woff2"); font-display: swap; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font: 400 18px/1.7 "Crimson Text", Georgia, serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0 0 1rem; font-family: "Cinzel", serif; line-height: 1.15; letter-spacing: 0.03em; }
h1, .footer-title, .brand-title { font-family: "Cinzel Decorative", "Cinzel", serif; }
p { margin: 0 0 1.1rem; }
::selection { background: rgba(215, 161, 55, 0.3); color: #f4ead7; }

.bg-wood-grain {
  background-image: repeating-linear-gradient(90deg, rgba(113, 79, 49, 0.05) 0, transparent 1px, transparent 4px);
}
.site-shell { min-height: 100vh; }
.site-main { overflow: hidden; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(860px, 100%); }
.gradient-heading, .hero h1 {
  background: linear-gradient(135deg, #f1dba2, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--primary);
  font: 600 0.76rem/1.4 "Cinzel", serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.eyebrow-center { text-align: center; }
.text-link {
  color: var(--primary);
  font: 600 0.8rem/1 "Cinzel", serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section { padding: 6rem 0; }
.section-muted {
  background: rgba(39, 31, 27, 0.45);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-head.compact { margin-bottom: 2rem; }
.section-head.align-left { margin-left: 0; text-align: left; }
.section-head h1, .section-head h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 1rem; }
.section-head p { color: rgba(220, 207, 184, 0.78); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(27, 22, 19, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.brand { display: flex; align-items: center; gap: 0.9rem; color: var(--foreground); }
.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.brand:hover .brand-logo { transform: scale(1.05); }
.brand-copy { display: flex; flex-direction: column; }
.brand-title { color: var(--primary); font-size: 1.1rem; line-height: 1; }
.brand-subtitle {
  color: rgba(220, 207, 184, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}
.site-nav-desktop { display: flex; align-items: center; gap: 1rem; }
.menu { list-style: none; margin: 0; padding: 0; }
.primary-menu { display: flex; align-items: center; gap: 0.15rem; }
.primary-menu li { position: relative; }
.primary-menu a, .footer-menu a, .mobile-menu a {
  display: block;
  padding: 0.75rem 0.9rem;
  color: rgba(220, 207, 184, 0.72);
  font: 600 0.82rem/1 "Cinzel", serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.primary-menu a:hover, .primary-menu .current-menu-item > a, .footer-menu a:hover, .mobile-menu a:hover { color: var(--primary); }
.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--foreground);
  font: 600 0.8rem/1 "Cinzel", serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mobile-toggle-close { display: none; }
.mobile-toggle[aria-expanded="true"] .mobile-toggle-open { display: none; }
.mobile-toggle[aria-expanded="true"] .mobile-toggle-close { display: inline; }
.site-nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(27, 22, 19, 0.98);
  backdrop-filter: blur(14px);
}
.site-nav-mobile.is-open { display: block; }
.mobile-menu { display: grid; gap: 0.15rem; padding: 0.8rem 0 0.3rem; }
.mobile-menu a { padding-left: 0; padding-right: 0; border-bottom: 1px solid rgba(93, 74, 60, 0.35); }
.mobile-cta { width: 100%; margin: 1rem 0 1.2rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.15rem;
  border-radius: 0.35rem;
  font: 600 0.82rem/1 "Cinzel", serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.28s ease;
}
.button-hero {
  min-height: 3rem;
  padding: 1rem 1.8rem;
  color: #1b150f;
  background: linear-gradient(135deg, #f0c967, var(--primary), var(--primary-dark));
  border: 1px solid rgba(215, 161, 55, 0.45);
  box-shadow: var(--shadow-ember);
}
.button-hero:hover { color: #1b150f; filter: brightness(1.03); }
.button-secondary {
  border: 2px solid rgba(215, 161, 55, 0.38);
  color: var(--primary);
  background: transparent;
}
.button-secondary:hover { background: rgba(215, 161, 55, 0.08); }
.button-ghost { color: var(--foreground); background: transparent; }
.button-ghost:hover { color: var(--primary); background: rgba(255, 255, 255, 0.04); }
.button-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.button-row-left { justify-content: flex-start; }
.header-cta { margin-left: 0.5rem; }
.section-cta, .social-center { text-align: center; margin-top: 2.2rem; }
.social-center { display: flex; justify-content: center; gap: 1.5rem; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27, 22, 19, 0.72), rgba(27, 22, 19, 0.5), #1b1613 95%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-top: 6rem;
  text-align: center;
}
.hero-logo {
  width: 112px;
  height: 112px;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  box-shadow: var(--shadow-ember);
}
.hero h1 { font-size: clamp(3rem, 7vw, 5.8rem); margin-bottom: 1rem; }
.hero-text { max-width: 640px; margin: 0 auto 2rem; color: rgba(220, 207, 184, 0.82); font-size: 1.2rem; }
.scroll-indicator {
  margin-top: 2rem;
  color: rgba(215, 161, 55, 0.55);
  font-size: 1.5rem;
  letter-spacing: 0.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

.two-column, .card-grid.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}
.card-grid.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.card-stack, .menu-items { display: grid; gap: 1rem; }
.card,
.media-card,
.legal-card,
.past-event-hero {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card { padding: 1.55rem; }
.feature-card:hover,
.menu-item-card:hover,
.gallery-card:hover,
.gallery-tile:hover,
.event-card:hover { border-color: rgba(215, 161, 55, 0.35); }
.media-card { position: relative; }
.media-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.6rem 0.9rem;
  background: rgba(36, 29, 26, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--primary);
  font: 600 0.78rem/1 "Cinzel", serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.feature-band {
  position: relative;
  height: 24rem;
  overflow: hidden;
}
.feature-band img { width: 100%; height: 100%; object-fit: cover; }
.feature-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1b1613, rgba(27, 22, 19, 0.2), transparent);
}
.feature-card h3, .info-card h3, .event-preview h3, .review-card h3 { color: var(--primary); font-size: 1.02rem; }
.info-card h3, .info-card h2, .contact-card h2, .event-card h2, .gallery-card h2, .menu-category h2 { color: var(--primary); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.data-table td { padding: 0.8rem 0; border-bottom: 1px solid rgba(93, 74, 60, 0.45); }
.data-table td:last-child { text-align: right; color: var(--primary); font-family: "Cinzel", serif; }
.detail-list, .footer-list, .footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}
.detail-list li { display: grid; gap: 0.25rem; }
.detail-list strong { color: var(--foreground); font-family: "Cinzel", serif; font-size: 0.95rem; }
.detail-list span, .footer-copy, .footer-contact-list, .menu-description, .event-meta, .allergens, .review-text { color: var(--muted); }
.compact-list li { gap: 0.15rem; }

.event-grid {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.5rem;
  align-items: start;
}
.event-date-box {
  padding: 1rem 0.75rem;
  background: rgba(70, 56, 47, 0.35);
  border-radius: 0.35rem;
  text-align: center;
}
.event-date-box span {
  color: var(--primary);
  font: 600 0.76rem/1.5 "Cinzel", serif;
  text-transform: uppercase;
}

.menu-category + .menu-category { margin-top: 3rem; }
.menu-item-card { background: rgba(39, 31, 27, 0.55); }
.menu-item-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.menu-item-head h3 { margin-bottom: 0.25rem; font-size: 1.02rem; }
.menu-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
}
.menu-price {
  color: var(--primary);
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  white-space: nowrap;
}
.italic { font-style: italic; }

.gallery-masonry,
.gallery-grid.gallery-grid-squares {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.gallery-tile,
.gallery-thumb { padding: 0; }
.gallery-frame { overflow: hidden; }
.gallery-frame img,
.gallery-thumb img,
.past-event-hero img,
.gallery-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-tile:hover img,
.gallery-thumb:hover img,
.gallery-card:hover img { transform: scale(1.03); }
.gallery-ratio-1 { aspect-ratio: 4 / 3; }
.gallery-ratio-2 { aspect-ratio: 4 / 5; }
.gallery-ratio-3 { aspect-ratio: 3 / 4; }
.gallery-ratio-4 { aspect-ratio: 16 / 10; }
.gallery-tile p,
.gallery-thumb p { padding: 1rem 1.1rem; margin: 0; }
.gallery-card { padding: 0; }
.gallery-card-link { display: block; color: inherit; }
.gallery-card-image-wrap { aspect-ratio: 4 / 3; overflow: hidden; background: rgba(70, 56, 47, 0.25); }
.gallery-card-copy { padding: 1.25rem; }
.past-event-hero img { aspect-ratio: 16 / 10; object-fit: contain; background: linear-gradient(135deg, rgba(70,56,47,0.35), rgba(27,22,19,0.95)); }
.past-event-hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: rgba(215, 161, 55, 0.85);
  font: 600 0.76rem/1 "Cinzel", serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-side { display: grid; gap: 1.5rem; }
.contact-block { margin-bottom: 1.2rem; }
.contact-block strong { display: block; margin-bottom: 0.25rem; color: var(--foreground); font-family: "Cinzel", serif; }
.contact-button { width: 100%; margin-top: 0.5rem; }
.map-card { padding: 0; margin-top: 2rem; }
.map-preview-panel {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.map-preview-bg {
  position: absolute;
  inset: 0;
  background: url("../images/bgblurr.png") center/cover no-repeat;
  opacity: 0.45;
  filter: blur(2px);
}
.map-preview-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 214, 153, 0.1), transparent 60%);
}
.map-overlay-card {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 1.5rem;
  padding: 2rem;
  border-radius: 0.6rem;
  background: rgba(36, 29, 26, 0.84);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
}
.map-overlay-card h3 { color: var(--primary); }

.legal-card { padding: 2rem; }
.legal-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(220, 207, 184, 0.82);
}
.legal-content > * + * { margin-top: 2rem; }
.legal-content h2 {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font: 400 1.125rem/1.3 "Cinzel", serif;
  letter-spacing: 0.03em;
}
.legal-content h3,
.legal-content h4 {
  margin: 0 0 0.6rem;
  color: var(--primary-light);
  font: 600 0.95rem/1.3 "Cinzel", serif;
  letter-spacing: 0.04em;
}
.legal-content p,
.legal-content ul,
.legal-content ol {
  margin: 0;
}
.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
}
.legal-content li + li { margin-top: 0.35rem; }
.legal-content a { color: var(--primary); }
.legal-content a:hover { color: var(--primary-light); }

.review-card .stars { color: var(--primary); margin-bottom: 1rem; letter-spacing: 0.18rem; }
.review-meta {
  margin: 0;
  color: var(--primary);
  font: 600 0.74rem/1.4 "Cinzel", serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cta-section {
  background: rgba(39, 31, 27, 0.45);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-footer {
  background: var(--card-solid);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}
.footer-title { color: var(--primary); font-size: 1.4rem; }
.footer-heading {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.social-links { display: flex; gap: 1rem; margin-top: 1.4rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-menu { display: flex; gap: 0.35rem; }

.page-shell { padding-top: 8rem; }
.inner-page { min-height: 60vh; }
.entry-content { color: rgba(220, 207, 184, 0.82); }
.keiler-repeatable-item { background: #fff; padding: 0.5rem 1rem; margin-bottom: 1rem; border: 1px solid #ddd; color: #111; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-nav-desktop { display: none; }
  .mobile-toggle { display: inline-flex; }
  .brand-copy { display: none; }
  .two-column, .card-grid.two-up, .card-grid.three-up, .footer-grid, .gallery-masonry, .gallery-grid.gallery-grid-squares { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; }
  .event-date-box { max-width: 12rem; }
  .feature-band { height: 18rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .hero-content { padding-top: 7rem; }
  .hero-text { font-size: 1.05rem; }
  .button-row, .social-center { flex-direction: column; }
  .button, .button-hero, .button-secondary { width: 100%; }
  .section-head h1, .section-head h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .past-event-hero-meta { flex-direction: column; }
}
.home-hero {
  min-height: 100vh;
}
.home-hero-overlay {
  background: linear-gradient(to bottom, rgba(27,22,19,0.72), rgba(27,22,19,0.48), #1b1613 100%);
}
.home-hero-content {
  max-width: 860px;
}
.home-hero-kicker {
  letter-spacing: 0.32em;
  margin-bottom: 1rem;
}
.home-hero .hero-logo {
  box-shadow: var(--shadow-ember);
}
.home-hero .hero-text {
  max-width: 540px;
  font-size: 1.22rem;
  margin-bottom: 2.4rem;
}
.home-hero-actions .button-hero {
  min-width: 220px;
}
.home-hero-actions .button-secondary {
  min-width: 190px;
}
.home-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  color: rgba(215, 161, 55, 0.55);
  animation: bounce 2s infinite;
}
.home-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 3rem;
  align-items: center;
}
.home-about .gradient-heading {
  margin-bottom: 1.5rem;
}
.home-inline-actions {
  margin-top: 1.5rem;
}
.home-image-card {
  position: relative;
  border-radius: 0.35rem;
  overflow: visible;
}
.home-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.35rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.home-est-badge {
  position: absolute;
  left: -1rem;
  bottom: -1rem;
  padding: 0.85rem 1rem;
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
}
.home-est-badge span {
  color: var(--primary);
  font: 600 0.76rem/1 "Cinzel", serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.home-feature-card {
  min-height: 100%;
  background: rgba(39, 31, 27, 0.82);
}
.home-feature-card h3 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}
.home-feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}
.home-menu-button {
  min-width: 220px;
}
.home-photo-band {
  position: relative;
  height: 24rem;
  overflow: hidden;
}
.home-photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1b1613, rgba(27,22,19,0.25), transparent);
}
.home-practical-inner {
  max-width: 920px;
}
.home-practical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.home-info-card {
  padding: 2rem;
}
.home-info-card h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 1.4rem;
}
.home-knowledge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.home-knowledge-list li {
  display: grid;
  gap: 0.25rem;
}
.home-knowledge-list strong {
  color: var(--foreground);
  font: 600 0.92rem/1.4 "Cinzel", serif;
}
.home-knowledge-list span {
  color: var(--muted);
  font-size: 0.9rem;
}
.home-news .section-head {
  margin-bottom: 1.3rem;
}
.home-subtle {
  color: rgba(220,207,184,0.62);
  font-size: 0.9rem;
}
.home-social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.home-social-links a {
  color: var(--primary);
  font: 600 0.82rem/1 "Cinzel", serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.home-reviews-inner {
  max-width: 1180px;
}
.home-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.home-review-card {
  min-height: 100%;
  background: rgba(39, 31, 27, 0.52);
}
.home-stars {
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.18rem;
}
.home-review-text {
  color: rgba(220, 207, 184, 0.82);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.home-review-meta {
  margin: 0;
  color: var(--primary);
  font: 600 0.74rem/1.4 "Cinzel", serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.home-final-cta .section-head {
  max-width: 680px;
}

@media (max-width: 980px) {
  .home-two-col,
  .home-feature-grid,
  .home-practical-grid,
  .home-review-grid {
    grid-template-columns: 1fr;
  }
  .home-image-card {
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .home-photo-band {
    height: 18rem;
  }
  .home-scroll-indicator {
    bottom: 1.2rem;
  }
  .home-hero-actions .button-hero,
  .home-hero-actions .button-secondary,
  .home-menu-button {
    min-width: 0;
  }
}

