/* Minari Restaurant & Banquet — design system (Task.md + brand deck) */
:root {
  --c-orange: #e15717;
  --c-gold: #d4af37;
  --c-brown: #3b2a1d;
  --c-black: #111111;
  --c-beige: #d9c7a3;
  --c-white: #f8f4ef;
  --c-muted: rgba(217, 199, 163, 0.65);
  --font-heading: "Cinzel", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sub: "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", "Poppins", system-ui, sans-serif;
  --max-w: 72rem;
  --header-h: 4.25rem;
  --radius: 0.5rem;
  --shadow-gold: 0 0 0 1px rgba(212, 175, 55, 0.45), 0 0 24px rgba(225, 87, 23, 0.12);
  --pattern-gold: linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.07) 0%,
      transparent 40%,
      rgba(225, 87, 23, 0.05) 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(212, 175, 55, 0.04) 0 1px,
      transparent 1px 40px
    );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--c-beige);
  background: var(--c-black);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.footer-name,
.section-title,
.hero__title,
.value-card__title,
.faq-question,
.h3--footer {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--c-beige);
}

h3,
.h3 {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--c-gold);
}

a {
  color: var(--c-gold);
  text-decoration: none;
  text-underline-offset: 0.2em;
  transition: color 0.2s, box-shadow 0.2s;
}
a:hover {
  color: #e8c85c;
}
a:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--c-black);
  color: var(--c-gold);
  font-weight: 600;
  border: 1px solid var(--c-gold);
  border-radius: var(--radius);
}
.skip-link:focus {
  left: 0.5rem;
  outline: none;
}

.text-gold {
  color: var(--c-gold);
}
.nowrap {
  white-space: nowrap;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 2.5rem;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(59, 42, 29, 0.5);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  position: relative;
  align-items: center;
  justify-content: center;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--c-gold);
  position: relative;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-bars::before {
  top: -6px;
}
.nav-toggle-bars::after {
  top: 6px;
}
.site-header.is-open .nav-toggle-bars {
  background: transparent;
}
.site-header.is-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header.is-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}
.nav-list a {
  color: var(--c-beige);
  font-size: 0.88rem;
  font-weight: 500;
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-list a:hover,
.nav-list a[aria-current="true"] {
  color: var(--c-gold);
}
.nav-cta {
  margin-left: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 2px solid var(--c-gold);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-align: center;
  line-height: 1.2;
}
.btn--small {
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
}
.btn--primary {
  background: var(--c-orange);
  color: #fff;
  border-color: var(--c-gold);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  background: #c84a12;
  color: #fff;
  transform: translateY(-1px);
}
.btn--secondary {
  background: rgba(17, 17, 17, 0.6);
  color: var(--c-beige);
  border-color: var(--c-gold);
}
.btn--secondary:hover {
  background: rgba(59, 42, 29, 0.85);
  color: #fff;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 56rem);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      180deg,
      rgba(17, 17, 17, 0.22) 0%,
      rgba(17, 17, 17, 0.4) 45%,
      rgba(17, 17, 17, 0.68) 100%
    ),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(225, 87, 23, 0.16), transparent 55%),
    var(--c-black);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  opacity: 0.95;
}
.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.hero .section-inner {
  padding: 0 1.25rem;
}

.hero__kicker {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin: 0 0 0.75rem;
}

.hero__title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero__tagline {
  font-family: "Playfair Display", var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--c-beige);
  margin: 0 0 1rem;
}
.hero__support {
  font-size: 1.02rem;
  color: var(--c-muted);
  margin: 0 0 2rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Sections */
.section {
  position: relative;
  background: var(--c-black);
}
.section--pattern {
  background: var(--c-black);
  background-image: var(--pattern-gold);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.section--ink {
  background: linear-gradient(180deg, #151515 0%, var(--c-black) 100%);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--c-muted);
  font-size: 1.02rem;
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-family: var(--font-sub);
  font-weight: 500;
}
.section-head {
  margin-bottom: 0.5rem;
}
.section-lead {
  max-width: 48rem;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.text-center {
  text-align: center;
}

.prose p {
  margin: 0 0 1rem;
}
.prose .values-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--c-beige);
}
.prose .values-list li {
  margin-bottom: 0.4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.value-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.value-card {
  background: linear-gradient(145deg, rgba(59, 42, 29, 0.55) 0%, rgba(17, 17, 17, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.value-card__title {
  font-size: 1.1rem;
  font-family: var(--font-sub);
  font-weight: 600;
  color: var(--c-gold);
  margin: 0 0 0.4rem;
}
.value-card__text {
  margin: 0;
  color: var(--c-beige);
  font-size: 0.95rem;
}

/* Menu */
.menu-lede {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--c-muted);
}
.menu-architecture {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.menu-block {
  background: rgba(59, 42, 29, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.menu-block:hover {
  border-color: rgba(225, 87, 23, 0.45);
  box-shadow: 0 0 20px rgba(225, 87, 23, 0.1);
}
.menu-block .h3 {
  margin-top: 0;
  color: var(--c-beige);
  font-size: 1.05rem;
  font-family: var(--font-heading);
}
.menu-block__desc {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin: 0.35rem 0 0.75rem;
}
.menu-hero {
  font-size: 0.88rem;
  color: var(--c-gold);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
  font-family: var(--font-sub);
}
.menu-feat {
  list-style: none;
  margin: 0;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.5rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.5);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-beige);
}
.menu-feat li {
  position: relative;
  padding-left: 1.1rem;
}
.menu-feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  background: var(--c-orange);
  border-radius: 1px;
  box-shadow: 0 0 6px var(--c-orange);
}

/* Celebrations */
.celebration-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0.75rem;
}
.celebration-item {
  padding: 0.9rem 1.1rem;
  background: rgba(59, 42, 29, 0.5);
  border-left: 3px solid var(--c-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
}

/* Ambience */
.ambience-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}
.ambience-copy p {
  color: var(--c-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.ambience-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}
.ambience-figure__img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .ambience-layout {
    grid-template-columns: 1fr;
  }
}

/* Experience */
.experience-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}
.exp-card {
  padding: 1.1rem 1.25rem;
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Gallery */
.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.25rem;
}
.gallery-tile figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--c-brown);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-tile figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(225, 87, 23, 0.2);
  border-color: rgba(225, 87, 23, 0.35);
}
.gallery-thumb {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  font: inherit;
  line-height: 0;
  color: inherit;
  text-align: left;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.gallery-thumb:focus-visible {
  outline: 2px solid var(--c-orange, #e15717);
  outline-offset: 3px;
}
.gallery-thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  pointer-events: none;
}
.gallery-tile figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  font-family: var(--font-sub);
}

/* Gallery lightbox */
.lightbox[open] {
  display: flex;
  width: 100%;
  max-width: 100vw;
  min-height: 100%;
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  overflow: auto;
}
.lightbox[open] .lightbox__content {
  position: relative;
  z-index: 1;
  max-width: min(100%, 64rem);
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  cursor: default;
}
.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(85vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  background: #0a0a0a;
}
.lightbox__close {
  position: absolute;
  top: -0.5rem;
  right: 0.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.92);
  color: var(--c-gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  font-family: system-ui, sans-serif;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: var(--c-orange, #e15717);
  color: #fff;
  outline: none;
}
.lightbox__close:focus-visible {
  box-shadow: 0 0 0 2px #fff;
}
.lightbox__cap:empty {
  display: none;
}
.lightbox__cap {
  margin: 0;
  font-size: 0.9rem;
  color: var(--c-beige);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-sub, sans-serif);
  text-align: center;
  max-width: 60ch;
  line-height: 1.4;
}

/* AI facts */
.ai-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
}
.ai-fact {
  padding: 1.1rem 1.25rem;
  background: rgba(59, 42, 29, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.6;
}
.ai-fact .h3 {
  font-size: 0.95rem;
  margin-top: 0;
  color: var(--c-gold);
}

/* FAQ */
.faq-accordion {
  max-width: 42rem;
  margin: 0 auto;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(17, 17, 17, 0.6);
}
.faq-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  margin: 0;
  font-size: 0;
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: rgba(59, 42, 29, 0.35);
  color: var(--c-beige);
  border: none;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-trigger:hover {
  background: rgba(59, 42, 29, 0.55);
}
.faq-chevron {
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid var(--c-gold);
  border-bottom: 2px solid var(--c-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: -0.2rem;
  transition: transform 0.2s;
}
.faq-item.is-open .faq-chevron {
  transform: rotate(225deg);
  margin-top: 0.15rem;
}
.faq-panel {
  padding: 0 1.25rem 1.1rem;
  color: var(--c-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  background: rgba(17, 17, 17, 0.4);
}
.faq-panel[hidden] {
  display: none;
}

/* Contact */
.section--contact {
  background: var(--c-brown);
  background-image: var(--pattern-gold);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-card {
  font-style: normal;
  padding: 1.5rem;
  background: rgba(17, 17, 17, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}
.contact-card p {
  margin: 0 0 0.5rem;
}
.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}
.map-embed {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: var(--aspect, 16 / 10);
  background: #0a0a0a;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-note {
  margin: 0.6rem 0 0;
  color: var(--c-muted);
  font-size: 0.8rem;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--c-muted);
}
.footer-kicker {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin: 0 0 0.5rem;
  font-family: var(--font-sub);
  font-weight: 600;
}
.footer-name {
  font-size: 1.4rem;
  color: var(--c-beige);
  margin: 0 0 0.75rem;
}
.footer-seo {
  max-width: 40rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.h3--footer {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-gold);
  margin: 0 0 0.6rem;
}
.footer-nav,
.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav li,
.footer-social li {
  margin-bottom: 0.4rem;
}
.footer-nav a,
.footer-social a {
  color: var(--c-beige);
  font-size: 0.88rem;
}
.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
  margin: 0;
}

/* Mobile */
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem;
    gap: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    z-index: 90;
  }
  .site-header.is-open .site-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .nav-cta {
    margin-left: 0;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .menu-feat {
    grid-template-columns: 1fr;
  }
  .contact-ctas,
  .hero__ctas {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .map-embed {
    min-height: 14rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 860px) {
  .hero__image {
    object-position: center 62%;
  }
}

