/* ============================================================
   EL SOMBRERO — Main Stylesheet
   Plain CSS · No framework · Mobile-first
   ============================================================ */

/* ---- Design Tokens ---------------------------------------- */
:root {
  --espresso:      #110b04;
  --dark-brown:    #1e1208;
  --mid-brown:     #2c1a0c;
  --warm-brown:    #3d2510;
  --rust:          #8b2e0f;
  --chili:         #c0392b;
  --gold:          #d9a441;
  --bright-gold:   #f5c15d;
  --cream:         #fdf5e6;
  --light-cream:   #fff9f0;
  --muted-cream:   #e8d5b0;
  --white:         #ffffff;
  --text-dark:     #1e1208;
  --text-muted:    rgba(30,18,8,0.68);
  --serif:         "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --accent-serif:  "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:          "Montserrat", Arial, sans-serif;
  --radius:        8px;
  --shadow-sm:     0 4px 16px rgba(0,0,0,0.18);
  --shadow-md:     0 12px 36px rgba(0,0,0,0.28);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.38);
  --transition:    180ms ease;
  --header-h:      80px;
}

/* ---- Base Reset ------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.05;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

/* ---- Skip Link -------------------------------------------- */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--bright-gold);
  color: var(--espresso);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius);
  transform: translateY(-200%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---- Layout Helpers --------------------------------------- */
.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-heading {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 56px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--cream);
}

.section-heading-dark h2 {
  color: var(--dark-brown);
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--muted-cream);
}

.section-heading-dark p:not(.eyebrow) {
  color: var(--text-muted);
}

/* ---- Screen reader only ---------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- Eyebrow Label --------------------------------------- */
.eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  font-family: var(--accent-serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
  color: var(--bright-gold);
  letter-spacing: 0.01em;
}

.eyebrow-dark {
  color: var(--rust);
}

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--bright-gold);
  border-color: var(--bright-gold);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(253,245,230,0.6);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(253,245,230,0.12);
  border-color: var(--cream);
}

.btn-dark {
  background: var(--dark-brown);
  color: var(--cream);
  border-color: var(--gold);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--gold);
  color: var(--espresso);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark-brown);
  border-color: var(--dark-brown);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  background: var(--dark-brown);
  color: var(--cream);
}

.btn-full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ---- Gold Divider ----------------------------------------- */
.gold-divider {
  width: 64px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 20px 0;
  border-radius: 2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(17,11,4,0.96);
  border-bottom: 1px solid rgba(217,164,65,0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  gap: 24px;
}

/* Logo */
.brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted-cream);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--bright-gold);
}

.site-nav .nav-cta {
  background: var(--gold);
  color: var(--espresso);
  padding: 8px 18px;
  border-radius: var(--radius);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--bright-gold);
  color: var(--espresso);
}

/* Nav social icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(245,193,93,0.3);
}

.nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--bright-gold);
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}

.nav-social-link svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.nav-social-link:hover,
.nav-social-link:focus-visible {
  color: var(--bright-gold);
  background: rgba(245,193,93,0.12);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(245,193,93,0.45);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--cream);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 240ms ease, opacity 240ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: min(740px, calc(100svh - var(--header-h)));
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--cream);
  margin-top: 8px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-copy h1 span {
  display: block;
}

.hero-text {
  margin-top: 20px;
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--muted-cream);
  line-height: 1.75;
}

/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(17,11,4,0.55);
  color: var(--cream);
  border: 1px solid rgba(245,193,93,0.5);
  border-radius: 50%;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  transition: background var(--transition), color var(--transition),
              transform 240ms ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: var(--bright-gold);
  color: var(--espresso);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 32px;
  height: 4px;
  padding: 0;
  background: rgba(253,245,230,0.4);
  border: none;
  border-radius: 99px;
  cursor: pointer;
  transition: background 220ms ease, width 220ms ease;
}

.hero-dot.is-active {
  width: 48px;
  background: var(--bright-gold);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--light-cream);
  color: var(--text-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: var(--gold);
  color: var(--espresso);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.1;
}

.badge-number {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-year {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
}

.about-copy h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--dark-brown);
  line-height: 1.1;
}

.about-copy p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 32px 0;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid rgba(30,18,8,0.12);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--dark-brown);
}

.pillar-icon {
  font-size: 1.25rem;
}

/* ============================================================
   FEATURED MENU
   ============================================================ */
.menu-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--mid-brown) 0%, var(--espresso) 100%);
}

.menu-section .section-heading h2 {
  color: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-brown);
  border: 1px solid rgba(217,164,65,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--warm-brown);
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.menu-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.menu-card-top h3 {
  font-size: 1.25rem;
  color: var(--cream);
}

.price {
  flex-shrink: 0;
  font-family: var(--accent-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bright-gold);
  white-space: nowrap;
}

.price em {
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.8;
}

.menu-card-body > p {
  font-size: 0.9rem;
  color: var(--muted-cream);
  line-height: 1.65;
  flex: 1;
}

.menu-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(217,164,65,0.15);
  color: var(--bright-gold);
  border: 1px solid rgba(217,164,65,0.4);
  border-radius: 99px;
}

/* ============================================================
   SPECIALS
   ============================================================ */
.specials {
  padding: 100px 0 110px;
  background: linear-gradient(160deg, #5a1a06 0%, var(--rust) 45%, #6b2010 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle diamond-tile texture */
.specials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Decorative bottom gold rule */
.specials::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--bright-gold), var(--gold), transparent);
}

.specials .section-heading {
  position: relative;
  margin-bottom: 56px;
}

.section-heading-light h2 {
  color: var(--cream);
}

.section-heading-light p:not(.eyebrow) {
  color: rgba(253,245,230,0.75);
}

.section-heading-light .eyebrow {
  color: var(--bright-gold);
}

/* Gold rule under section title */
.specials .section-heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 18px auto 0;
}

.specials-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

.special-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: rgba(17,11,4,0.6);
  border: 1px solid rgba(253,245,230,0.14);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
}

/* Card photo */
.special-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(17,11,4,0.4);
  flex-shrink: 0;
}

.special-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.special-card:hover .special-card-img img {
  transform: scale(1.05);
}

/* Inner padding wrapper */
.special-card .special-day,
.special-card h3,
.special-card p,
.special-price {
  padding-left: 24px;
  padding-right: 24px;
}

.special-day {
  display: inline-block;
  margin: 20px 0 0 24px;
  padding: 5px 14px;
  background: var(--bright-gold);
  color: var(--espresso);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 99px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.special-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-top: 14px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.special-card p {
  font-size: 0.875rem;
  color: rgba(253,245,230,0.75);
  line-height: 1.65;
  flex: 1;
  padding-bottom: 24px;
}

.special-card p strong {
  color: var(--bright-gold);
}

/* Price row — pinned to bottom of card */
.special-price {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 22px;
  margin-top: auto;
  border-top: 1px solid rgba(253,245,230,0.1);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--bright-gold);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.special-price::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Hover state */
.special-card:hover {
  background: rgba(17,11,4,0.82);
  border-color: rgba(245,193,93,0.45);
  box-shadow: 0 14px 48px rgba(0,0,0,0.5);
}

.special-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 4px 12px;
  background: var(--bright-gold);
  color: var(--espresso);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--light-cream);
}

.gallery-section .section-heading h2 {
  color: var(--dark-brown);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--warm-brown);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 400ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17,11,4,0);
  transition: background 300ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.07);
  filter: brightness(0.85);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  background: rgba(217,164,65,0.15);
}

/* ---- Lightbox -------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17,11,4,0.94);
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(253,245,230,0.1);
  color: var(--cream);
  border: 1px solid rgba(253,245,230,0.3);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}

.lightbox-close:hover {
  background: var(--bright-gold);
  color: var(--espresso);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: rgba(253,245,230,0.1);
  color: var(--cream);
  border: 1px solid rgba(253,245,230,0.3);
  border-radius: 50%;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 2rem;
  transition: background var(--transition), color var(--transition);
}

.lightbox-arrow:hover {
  background: var(--bright-gold);
  color: var(--espresso);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   LOCATION & HOURS
   ============================================================ */
.location-section {
  padding: 100px 0;
  background: var(--dark-brown);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.location-info h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
}

.location-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(217,164,65,0.25);
}

.location-block h3 {
  font-size: 1.1rem;
  color: var(--bright-gold);
  margin-bottom: 12px;
}

.location-block address {
  color: var(--muted-cream);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.location-block p {
  color: var(--muted-cream);
  font-size: 0.95rem;
}

.location-block a {
  color: var(--muted-cream);
  transition: color var(--transition);
}

.location-block a:hover {
  color: var(--bright-gold);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--muted-cream);
  font-size: 0.92rem;
}

.hours-table td {
  padding: 7px 0;
}

.hours-table td:first-child {
  width: 55%;
  font-weight: 600;
  color: var(--cream);
}

.hours-table tr + tr td {
  border-top: 1px solid rgba(217,164,65,0.12);
}

.map-wrap {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.map-frame {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(217,164,65,0.3);
  box-shadow: var(--shadow-md);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.7) brightness(0.78) contrast(1.1);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--light-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark-brown);
}

.contact-copy > p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

.contact-details {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 1px;
}

.contact-details a {
  color: var(--rust);
  transition: color var(--transition);
}

.contact-details a:hover {
  color: var(--chili);
}

.social-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: transparent;
  color: var(--bright-gold);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(245,193,93,0.5);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition);
}

.social-row a:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

/* Contact form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark-brown);
}

.form-group label span {
  color: var(--chili);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--light-cream);
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 0.93rem;
  border: 1px solid rgba(30,18,8,0.2);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,164,65,0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(30,18,8,0.38);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  margin-top: 20px;
}

.form-note {
  margin-top: 12px;
  font-size: 0.88rem;
  min-height: 1.4em;
  color: var(--rust);
}

.form-note.success {
  color: #2d7a3a;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--espresso);
  border-top: 1px solid rgba(217,164,65,0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 0 48px;
}

.footer-brand .footer-logo {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand > p {
  font-size: 0.88rem;
  color: var(--muted-cream);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bright-gold);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col li a,
.footer-col p,
.footer-col address {
  font-size: 0.88rem;
  color: var(--muted-cream);
  line-height: 1.65;
}

.footer-col p + p {
  margin-top: 6px;
}

.footer-col a {
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--bright-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(217,164,65,0.2);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(232,213,176,0.6);
}

.footer-credit {
  color: rgba(245,193,93,0.65);
}

.footer-credit a {
  color: var(--bright-gold);
  font-weight: 600;
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--cream);
}

/* ============================================================
   SECTION LIGHT HELPER
   ============================================================ */
.section-light {
  color: var(--text-dark);
}

/* ============================================================
   MENU CATEGORY SLIDER
   ============================================================ */
.menu-cat-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.menu-cat-track-outer {
  flex: 1;
  overflow: hidden;
}

.menu-cat-track {
  display: flex;
  gap: 24px;
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.menu-cat-card {
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  background: var(--dark-brown);
  border: 1px solid rgba(217,164,65,0.22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  cursor: default;
}

.menu-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245,193,93,0.5);
}

.menu-cat-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--mid-brown);
}

.menu-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.menu-cat-card:hover .menu-cat-img img {
  transform: scale(1.05);
}

.menu-cat-card h3 {
  padding: 16px 14px 18px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bright-gold);
  text-align: center;
  margin: 0;
}

.menu-cat-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--espresso);
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), opacity var(--transition), transform var(--transition);
  z-index: 2;
}

.menu-cat-arrow:hover:not(:disabled) {
  background: var(--bright-gold);
  transform: scale(1.08);
}

.menu-cat-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.menu-cat-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* ============================================================
   ABOUT — subheading (Our History)
   ============================================================ */
.about-subheading {
  font-family: var(--accent-serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
  color: var(--rust);
  margin-top: 10px;
  margin-bottom: 4px;
}

/* ============================================================
   BANQUET ROOM & CATERING
   ============================================================ */
.banquet-section {
  padding: 100px 0;
  background: var(--light-cream);
}

.banquet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.banquet-copy h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark-brown);
  line-height: 1.1;
}

.banquet-copy p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.banquet-copy .btn {
  margin-top: 28px;
}

.banquet-image-wrap {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  background: var(--warm-brown);
}

.banquet-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   FOOTER / CONTACT SECTION
   ============================================================ */

/* Top info band */
.footer-contact-band {
  background: var(--dark-brown);
  border-top: 1px solid rgba(217,164,65,0.4);
  padding: 72px 0 56px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-col .footer-logo {
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted-cream);
  line-height: 1.7;
  max-width: 260px;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.footer-detail-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bright-gold);
}

.footer-detail-row > span:last-child {
  font-size: 0.82rem;
  color: var(--muted-cream);
  line-height: 1.5;
}

.footer-contact-col h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bright-gold);
  margin: 0 0 4px;
}

.footer-contact-col address,
.footer-contact-col p {
  font-size: 0.88rem;
  color: var(--muted-cream);
  line-height: 1.65;
  margin: 0;
}

.footer-contact-col a {
  color: var(--muted-cream);
  transition: color var(--transition);
}

.footer-contact-col a:hover {
  color: var(--bright-gold);
}

.footer-contact-col .hours-table td {
  color: var(--muted-cream);
  font-size: 0.85rem;
}

.footer-contact-col .hours-table td:first-child {
  color: var(--cream);
  font-size: 0.85rem;
}

.footer-directions-btn {
  margin-top: 8px;
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.76rem;
  border-color: rgba(232,213,176,0.5);
  color: var(--muted-cream);
  align-self: flex-start;
}

.footer-directions-btn:hover {
  background: rgba(232,213,176,0.1);
  border-color: var(--muted-cream);
  color: var(--cream);
  transform: none;
}

.footer-map-col .map-frame {
  aspect-ratio: 4/3;
}

/* Contact Us form band */
.footer-contact-form-band {
  background: var(--espresso);
  padding: 72px 0;
  border-top: 1px solid rgba(217,164,65,0.2);
}

.footer-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.footer-form-heading {
  padding-top: 8px;
}

.footer-form-heading .eyebrow {
  color: var(--bright-gold);
}

.footer-form-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--cream);
  margin-top: 10px;
}

.footer-form-heading > p {
  margin-top: 16px;
  color: var(--muted-cream);
  font-size: 0.97rem;
  line-height: 1.75;
}

.footer-contact-form-band .contact-form {
  background: var(--dark-brown);
  border: 1px solid rgba(217,164,65,0.2);
}

.footer-contact-form-band .form-group label {
  color: var(--muted-cream);
}

.footer-contact-form-band .form-group input,
.footer-contact-form-band .form-group select,
.footer-contact-form-band .form-group textarea {
  background: var(--mid-brown);
  color: var(--cream);
  border-color: rgba(217,164,65,0.2);
}

.footer-contact-form-band .form-group input::placeholder,
.footer-contact-form-band .form-group textarea::placeholder {
  color: rgba(232,213,176,0.35);
}

.footer-contact-form-band .form-group select option {
  background: var(--mid-brown);
  color: var(--cream);
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .map-wrap {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .banquet-grid {
    gap: 48px;
  }

  .footer-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  /* Header / hamburger */
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 12px 16px;
    background: rgba(17,11,4,0.98);
    border: 1px solid rgba(217,164,65,0.3);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(253,245,230,0.08);
    border-radius: 0;
    font-size: 0.82rem;
  }

  .site-nav a:last-of-type {
    border-bottom: none;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    padding: 12px 18px;
    border-radius: var(--radius);
    text-align: center;
    justify-content: center;
  }

  .nav-social {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(253,245,230,0.08);
    padding-top: 10px;
    margin-top: 6px;
    justify-content: center;
    gap: 8px;
  }

  .nav-social-link {
    width: 48px;
    height: 48px;
    color: var(--bright-gold);
    border: 1px solid rgba(245,193,93,0.3);
  }

  .nav-social-link svg {
    width: 28px;
    height: 28px;
  }

  /* Hero */
  .hero {
    min-height: 520px;
    height: auto;
    padding: 80px 0 60px;
    align-items: flex-end;
  }

  .hero-copy {
    max-width: 100%;
    padding: 28px 24px 32px;
    background: rgba(17,11,4,0.8);
    border: 1px solid rgba(217,164,65,0.25);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .button-row {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-arrow {
    top: auto;
    bottom: 24px;
    transform: none;
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .hero-arrow:hover,
  .hero-arrow:focus-visible {
    transform: none;
  }

  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }

  .hero-dots {
    bottom: 80px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about {
    padding: 72px 0;
  }

  .about-image-wrap {
    max-width: 500px;
    margin-inline: auto;
  }

  .about-pillars {
    gap: 12px;
  }

  /* Menu */
  .menu-section {
    padding: 72px 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }

  /* Menu cat slider — 2 cards on mobile */
  .menu-cat-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  /* Specials */
  .specials {
    padding: 72px 0 80px;
  }

  .specials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Banquet */
  .banquet-section {
    padding: 72px 0;
  }

  .banquet-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .banquet-image-wrap {
    max-width: 500px;
    margin-inline: auto;
  }

  /* Footer contact */
  .footer-contact-band {
    padding: 56px 0 44px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-contact-form-band {
    padding: 56px 0;
  }

  .footer-form-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Contact */
  .contact-section {
    padding: 72px 0;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 56px 0 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* Section inner */
  .section-inner,
  .header-inner {
    width: calc(100% - 32px);
  }

  .section-heading {
    margin-bottom: 40px;
  }

  /* Lightbox */
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 2rem;
  }

  /* Menu cat slider — 1 card on small mobile */
  .menu-cat-card {
    flex: 0 0 100%;
  }

  /* Specials — single column stacked */
  .specials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 400px;
    margin-inline: auto;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    min-height: 48px;
    font-size: 0.76rem;
    padding: 0 20px;
  }

  .contact-form {
    padding: 24px 16px;
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 550ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 550ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings inside grids */
.specials-grid .reveal:nth-child(2) { transition-delay: 60ms; }
.specials-grid .reveal:nth-child(3) { transition-delay: 120ms; }
.specials-grid .reveal:nth-child(4) { transition-delay: 180ms; }
.specials-grid .reveal:nth-child(5) { transition-delay: 240ms; }

.footer-contact-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.footer-contact-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.footer-contact-grid .reveal:nth-child(4) { transition-delay: 240ms; }

/* ============================================================
   HOVER LIFT — Menu category cards
   ============================================================ */
.menu-cat-card {
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 260ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 260ms ease;
}

.menu-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

/* ============================================================
   HOVER LIFT — Daily Special cards
   ============================================================ */
.special-card {
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
              background 280ms ease,
              border-color 280ms ease,
              box-shadow 280ms ease;
}

.special-card:hover {
  transform: translateY(-6px);
}

/* ============================================================
   SMOOTH TRANSITIONS — Buttons
   ============================================================ */
.btn {
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 200ms ease,
              box-shadow 200ms ease;
}

.btn:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* ============================================================
   SMOOTH TRANSITIONS — Nav social icons
   ============================================================ */
.nav-social-link {
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.nav-social-link:hover {
  transform: scale(1.15);
}

/* ============================================================
   SMOOTH TRANSITIONS — Footer social buttons
   ============================================================ */
.social-row a {
  transition: background 220ms ease, color 220ms ease,
              border-color 220ms ease, transform 200ms ease;
}

.social-row a:hover {
  transform: translateY(-2px);
}

/* ============================================================
   PREFERS-REDUCED-MOTION OVERRIDE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .menu-cat-card,
  .special-card,
  .btn,
  .nav-social-link,
  .social-row a {
    transition: none;
  }

  .menu-cat-card:hover,
  .special-card:hover,
  .btn:hover,
  .nav-social-link:hover,
  .social-row a:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.18);
  padding: 20px 24px;
  animation: cookieSlideUp 400ms ease forwards;
}

.cookie-banner[hidden] {
  display: none;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 240px;
}

.cookie-banner-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 6px;
}

.cookie-banner-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid var(--espresso);
  transition: background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.cookie-btn-outline {
  background: transparent;
  color: var(--espresso);
}

.cookie-btn-outline:hover {
  background: var(--espresso);
  color: #fff;
}

.cookie-btn-primary {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

.cookie-btn-primary:hover {
  background: var(--rust);
  border-color: var(--rust);
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 0;
  }
}
