/* ═══════════════════════════════════════════════════════════
   PIGALLE DÉLICE MONS — Stylesheet
   Palette: Gold #B5975A | Cream #FAF7F2 | Black #1A1A1A
════════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #B5975A;
  --gold-light:  #D4B98A;
  --gold-dark:   #8A6E3A;
  --gold-pale:   #F5EFE0;
  --black:       #1A1A1A;
  --black-soft:  #2C2C2C;
  --white:       #FFFFFF;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EAE0;
  --rose:        #F7EBE8;
  --dark-bg:     #1C1712;
  --dark-card:   #262016;
  --text:        #3A3530;
  --text-muted:  #7A7065;
  --border:      #E8E0D4;

  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Jost', system-ui, sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.15);

  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-dark { background: var(--dark-bg); }
.section-cream { background: var(--cream); }

.section-eyebrow {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 1.75rem;
  border-radius: 2px;
}
.gold-divider.center { margin-inline: auto; margin-bottom: 2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,151,90,.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Reveal Animations ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}
.delay-1 { transition-delay: .15s !important; }
.delay-2 { transition-delay: .3s !important; }
.delay-3 { transition-delay: .45s !important; }
.delay-4 { transition-delay: .6s !important; }


/* ══════════════════════════════ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 1.1rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: .7rem 0;
}
.nav-container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo img {
  height: 54px;
  width: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo img { height: 44px; width: 44px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}
.navbar.scrolled .nav-link { color: var(--black-soft); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--gold); }
.navbar.scrolled .nav-link:hover { color: var(--gold); }
.nav-cta {
  padding: .55rem 1.4rem;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(181,151,90,.4);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--black); }


/* ══════════════════════════════ HERO ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,23,18,.72) 0%,
    rgba(26,23,18,.45) 50%,
    rgba(181,151,90,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  margin-inline: auto;
  padding: clamp(6rem,12vw,10rem) clamp(1.5rem,5vw,3rem) clamp(4rem,8vw,7rem);
  text-align: center;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 1.5rem;
  gap: .1em;
}
.hero-title-fancy {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--white);
  text-transform: uppercase;
}
.hero-title-script {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: .02em;
}
.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-inline: auto;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-badges {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.badge-icon { font-size: 1rem; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: scrollBob 2s ease-in-out infinite;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ══════════════════════════ MARQUEE ═══ */
.marquee-strip {
  background: var(--gold);
  padding: .85rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 1.5rem;
}
.marquee-track .sep { color: rgba(255,255,255,.5); padding: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ══════════════════════════ ABOUT ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-main {
  aspect-ratio: 4/5;
}
.about-img-main img,
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-img-wrap:hover img { transform: scale(1.05); }
.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  border: 5px solid var(--white);
}
.about-gold-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .7rem;
  box-shadow: 0 4px 20px rgba(181,151,90,.5);
}
.about-badge-text strong { display: block; font-size: 1.4rem; font-weight: 700; line-height: 1; }
.about-lead {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--black-soft);
  margin-bottom: 1rem;
}
.about-body {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 2rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.about-feature strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .15rem;
}
.about-feature p {
  font-size: .85rem;
  color: var(--text-muted);
}


/* ══════════════════════════ HIGHLIGHTS ═══ */
.highlights-header {
  text-align: center;
  margin-bottom: 3rem;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.highlight-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(181,151,90,.15);
  transition: var(--transition);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  border-color: rgba(181,151,90,.4);
}
.highlight-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.highlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.highlight-card:hover .highlight-img-wrap img { transform: scale(1.08); }
.highlight-body {
  padding: 1.5rem;
}
.highlight-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(181,151,90,.12);
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.highlight-body h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
}
.highlight-body p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.highlight-price {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
}


/* ══════════════════════════ MENU ═══ */
.menu-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.menu-intro {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-inline: auto;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 3rem;
}
.menu-tab {
  padding: .65rem 1.6rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  transition: var(--transition);
}
.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}
.menu-category {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.cat-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.cat-icon { font-size: 1.1rem; }
.cat-desc {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.cat-separator {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  padding-bottom: .55rem;
  border-bottom: 1px dashed var(--border);
}
.menu-list li:last-child { border-bottom: none; padding-bottom: 0; }
.menu-list.compact li { padding-bottom: .35rem; }
.item-name {
  font-size: .9rem;
  color: var(--black-soft);
  font-weight: 500;
  flex: 1;
}
.item-price {
  font-family: var(--ff-serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.item-note {
  font-size: .78rem;
  color: var(--text-muted);
  display: block;
  width: 100%;
  margin-top: .1rem;
  line-height: 1.4;
}
.item-full {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .3rem;
  width: 100%;
}
.item-full .item-name { flex: 1; min-width: 120px; }
.step-block {
  margin-bottom: 1rem;
  padding: .9rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.step-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .5rem;
}
.step-options {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.featured-item {
  background: linear-gradient(135deg, var(--gold-pale), var(--cream));
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: .5rem;
}
.featured-price {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .5rem;
}
.featured-item p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.menu-note { margin-top: 2.5rem; }
.menu-delivery-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-dark));
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
}
.delivery-icon { font-size: 2.5rem; flex-shrink: 0; }
.menu-delivery-banner strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .3rem;
}
.menu-delivery-banner p {
  font-size: .87rem;
  color: var(--text-muted);
}
.menu-delivery-banner a {
  color: var(--gold-dark);
  font-weight: 600;
}


/* ── Menu cards visual ── */
.menu-cards-subtitle {
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.menu-card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  position: relative;
}
.menu-card-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
  display: block;
}
.menu-card-img:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .menu-cards-grid { grid-template-columns: 1fr; }
  .menu-card-img img { height: 280px; }
}

/* ══════════════════════════ GALLERY ═══ */
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
}
.gallery-item.gi-tall { grid-row: span 2; }
.gallery-item.gi-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,18,.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}


/* ══════════════════════════ SERVICES ═══ */
.services-header { text-align: center; margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(181,151,90,.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(181,151,90,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.service-icon-wrap {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
}


/* ══════════════════════════ CONTACT ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-block:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}
.contact-block-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-block strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .25rem;
}
.contact-block p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-block a {
  color: var(--gold-dark);
  font-weight: 600;
}
.contact-block a:hover { text-decoration: underline; }
.contact-socials {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}


/* ══════════════════════════ CTA SECTION ═══ */
.cta-section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8rem);
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,23,18,.85), rgba(181,151,90,.5));
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ══════════════════════════ FOOTER ═══ */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(181,151,90,.15);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .87rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  max-width: 280px;
}
.footer-nav strong,
.footer-contact strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a,
.footer-contact a {
  font-size: .87rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact p {
  font-size: .87rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: .4rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}


/* ══════════════════════════ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item.gi-wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images {
    aspect-ratio: 4/3;
    max-width: 500px;
    margin-inline: auto;
    padding-bottom: 5rem;
  }
  .about-img-main { aspect-ratio: 4/3; }
  .about-img-secondary { bottom: 0; right: 0; width: 45%; }
  .contact-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    color: var(--black-soft) !important;
    padding: .85rem clamp(1.25rem, 5vw, 3rem);
    font-size: .9rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-link::after { display: none; }
  .nav-cta {
    margin: .75rem clamp(1.25rem, 5vw, 3rem);
    text-align: center;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.gi-tall,
  .gallery-item.gi-wide { grid-column: span 1; grid-row: span 1; }
  .highlights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .menu-delivery-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-badges { gap: .5rem; }
  .hero-badge { font-size: .72rem; padding: .35rem .75rem; }
  .btn { padding: .75rem 1.5rem; font-size: .85rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .about-images { padding-bottom: 4rem; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
