/* ═══════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

:root {
  --gold:       #c9a84c;
  --gold-lt:    #e8cc7a;
  --gold-dk:    #8a6a20;
  --gold-glow:  rgba(201,168,76,0.18);
  --ink:        #0c0b08;
  --ink2:       #1a1810;
  --charcoal:   #242018;
  --stone:      #6b5f4e;
  --cream:      #f8f3ea;
  --parchment:  #f0e8d5;
  --white:      #fdfaf4;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  background: linear-gradient(135deg, #1c1a12 0%, #252010 50%, #1c1a12 100%);
  border: 1px dashed rgba(201,168,76,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(201,168,76,0.4);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.img-placeholder svg { opacity: 0.3; }
.img-placeholder-label { opacity: 0.7; }

/* ── GOLD LINE UTILITY ── */
.gold-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-lt) 50%, var(--gold) 70%, transparent 100%);
  opacity: 0.45;
}

/* ── ORNAMENT ── */
.orn {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.orn-line { flex:1; max-width:60px; height:1px; background: linear-gradient(90deg, transparent, var(--gold)); opacity:.5; }
.orn-line.r { background: linear-gradient(270deg, transparent, var(--gold)); }
.orn-diamond {
  width:7px; height:7px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#nav {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  transition: background 0.5s, border-color 0.5s;
}

#nav.scrolled {
  background: rgba(12,11,8,0.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

.nav-logo { height: 46px; width: auto; display: block; mix-blend-mode: lighten; }

.nav-links { display:flex; align-items:center; gap:38px; list-style:none; }

.nav-links a {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248,243,234,0.5);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-lt); }

.nav-book {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.45);
  padding: 11px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.nav-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}
.nav-book:hover { color: var(--ink); }
.nav-book:hover::before { transform: scaleX(1); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2.2s ease, transform 12s ease;
}
.hero-slide.on { opacity: 1; transform: scale(1.0); }

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, rgba(12,11,8,0.65) 100%),
    linear-gradient(to bottom, rgba(12,11,8,0.5) 0%, rgba(12,11,8,0.1) 35%, rgba(12,11,8,0.1) 55%, rgba(12,11,8,0.85) 100%);
}

.hero-frame {
  position: absolute;
  inset: 28px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(201,168,76,0.22);
}
.hero-frame::before, .hero-frame::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.6;
}
.hero-frame::before { top:-1px; left:-1px; border-width: 2px 0 0 2px; }
.hero-frame::after  { bottom:-1px; right:-1px; border-width: 0 2px 2px 0; }

.hero-frame-tr, .hero-frame-bl {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.6;
  z-index: 3;
  pointer-events: none;
}
.hero-frame-tr { top:27px; right:27px; border-width: 2px 2px 0 0; }
.hero-frame-bl { bottom:27px; left:27px; border-width: 0 0 2px 2px; }

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px 120px;
  pointer-events: none;
}

.hero-logo-wrap {
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  animation: fadeUp 1.4s 0.3s cubic-bezier(0.16,1,0.3,1) forwards;
  filter: drop-shadow(0 0 60px rgba(201,168,76,0.4));
  pointer-events: auto;
}

.hero-logo-wrap img {
  width: auto;
  max-width: min(620px, 78vw);
  height: auto;
  mix-blend-mode: lighten;
}

.hero-tagline {
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.9s both;
}

.hero-tagline-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-tagline-line { width: 50px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); opacity:.5; flex-shrink: 0; }
.hero-tagline-line.r { background: linear-gradient(270deg, transparent, var(--gold)); }

.hero-tagline-text {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.75);
}

.hero-cta {
  margin-top: 42px;
  opacity: 0;
  animation: fadeUp 1s 1.2s both;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  pointer-events: auto;
}

.hero-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.hero-btn-primary {
  background: var(--gold);
  color: var(--ink);
  font-weight: 400;
}
.hero-btn-primary:hover { background: var(--gold-lt); }

.hero-btn-ghost {
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-lt);
}
.hero-btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.6s both;
  pointer-events: none;
}

.hero-scroll-text {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
}

.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(201,168,76,0.5), transparent);
  animation: scrollPulse 2s 2s infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity:0.5; transform: scaleY(1) translateY(0); }
  50%      { opacity:1;   transform: scaleY(0.85) translateY(6px); }
}

/* progress bar */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(201,168,76,0.1);
  z-index: 5;
}
.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  width: 0%;
}

/* ═══════════════════════════════════════
   GOLD STRIP
═══════════════════════════════════════ */
.gold-strip {
  background: linear-gradient(135deg, #1a1508 0%, #231d0c 50%, #1a1508 100%);
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.gs-item {
  flex: 1;
  min-width: 180px;
  padding: 26px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.gs-item + .gs-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.3), transparent);
}

.gs-label {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
}

.gs-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(248,243,234,0.8);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════
   STORY SECTION
═══════════════════════════════════════ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.story-photo {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  min-height: 500px;
}

.story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transform: scale(1.08);
  transition: transform 14s ease, opacity 0.6s;
  display: block;
  position: absolute;
  inset: 0;
}

.story-photo:hover img { transform: scale(1.0); opacity: 0.85; }

.story-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.story-photo-lines {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
  opacity: 0.25;
  z-index: 2;
}

.story-copy {
  background: var(--ink2);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.story-copy::before {
  content: '';
  position: absolute;
  top: 48px; right: 48px;
  width: 40px; height: 40px;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-right: 1px solid rgba(201,168,76,0.3);
}

.story-copy::after {
  content: '';
  position: absolute;
  bottom: 48px; left: 48px;
  width: 40px; height: 40px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  border-left: 1px solid rgba(201,168,76,0.3);
}

.eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
}

.eyebrow-line { width: 22px; height: 1px; background: var(--gold); opacity: 0.6; flex-shrink: 0; }

.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 10px;
}

.section-h i { font-style: italic; color: var(--gold-lt); }

.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(201,168,76,0.55);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.body-copy {
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(248,243,234,0.55);
  max-width: 44ch;
  margin-bottom: 38px;
}

.avpn-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
  width: fit-content;
  margin-bottom: 36px;
}

.avpn-icon { font-size: 1.6rem; line-height: 1; }

.avpn-text { display: flex; flex-direction: column; gap: 3px; }

.avpn-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0rem;
  color: var(--gold-lt);
  letter-spacing: 0.04em;
}

.avpn-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
}

.gold-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 14px 30px;
  width: fit-content;
  transition: all 0.32s;
  position: relative;
  overflow: hidden;
}

.gold-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.gold-btn:hover { color: var(--ink); }
.gold-btn:hover::before { transform: translateX(0); }
.gold-btn span { position: relative; z-index: 1; }
.gold-btn-arrow { position: relative; z-index: 1; transition: transform 0.3s; }
.gold-btn:hover .gold-btn-arrow { transform: translateX(5px); }

/* ═══════════════════════════════════════
   GALLERY STRIP
═══════════════════════════════════════ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 320px;
  overflow: hidden;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}

.gallery-cell img,
.gallery-cell .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.4s ease;
  opacity: 0.65;
  position: absolute;
  inset: 0;
}

.gallery-cell:hover img,
.gallery-cell:hover .img-placeholder { transform: scale(1.08); opacity: 0.85; }

.gallery-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,8,0.5) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s;
}

.gallery-cell-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  transition: color 0.3s;
}

.gallery-cell:hover .gallery-cell-label { color: var(--gold-lt); }

/* ═══════════════════════════════════════
   MENU
═══════════════════════════════════════ */
.menu-section {
  background: var(--ink);
  padding: 108px 80px;
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: 'PIZZE';
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22vw;
  font-weight: 600;
  color: rgba(201,168,76,0.028);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.04em;
  z-index: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 16px;
}

.menu-link-all {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding-bottom: 3px;
  transition: all 0.3s;
}
.menu-link-all:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

.menu-divider { margin-bottom: 52px; position: relative; z-index: 1; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

.menu-item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 22px;
  align-items: start;
  transition: background 0.25s;
  cursor: default;
}

.menu-item:nth-child(odd) { padding-right: 60px; }
.menu-item:nth-child(even) { padding-left: 60px; border-left: 1px solid rgba(201,168,76,0.1); }

.menu-item:hover .menu-item-name { color: var(--gold-lt); }

.menu-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(201,168,76,0.3);
  padding-top: 4px;
}

.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.menu-item-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.0rem;
  color: rgba(248,243,234,0.38);
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   FULL-BLEED OVEN SECTION
═══════════════════════════════════════ */
.oven {
  position: relative;
  height: 72vh;
  min-height: 460px;
  overflow: hidden;
  background: var(--ink);
}

.oven img {
  width: 100%; height: 120%;
  object-fit: cover;
  opacity: 0.55;
  transform: translateY(-10%);
  display: block;
  position: absolute;
  inset: 0;
}

/* oven image placeholder */
.oven-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #181408, #221c0b, #181408);
}

.oven-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,11,8,0.3) 0%, rgba(12,11,8,0.15) 40%, rgba(12,11,8,0.7) 100%);
  z-index: 1;
}

.oven-frame {
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(201,168,76,0.18);
  pointer-events: none;
  z-index: 2;
}
.oven-frame::before, .oven-frame::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border-color: rgba(201,168,76,0.6);
  border-style: solid;
}
.oven-frame::before { top:-1px; left:-1px; border-width: 2px 0 0 2px; }
.oven-frame::after  { bottom:-1px; right:-1px; border-width: 0 2px 2px 0; }

.oven-tr, .oven-bl {
  position: absolute;
  width: 24px; height: 24px;
  border-color: rgba(201,168,76,0.6);
  border-style: solid;
  z-index: 2;
  pointer-events: none;
}
.oven-tr { top:31px; right:31px; border-width: 2px 2px 0 0; }
.oven-bl { bottom:31px; left:31px; border-width: 0 0 2px 2px; }

.oven-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  padding: 40px;
}

.oven-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.oven-eyebrow-line { width: 28px; height: 1px; background: rgba(201,168,76,0.4); }

.oven-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--cream);
  max-width: 24ch;
  line-height: 1.3;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.oven-quote em { font-style: normal; color: var(--gold-lt); }

/* ═══════════════════════════════════════
   ATMOSPHERE / PHOTO TRIO
═══════════════════════════════════════ */
.photo-trio {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px;
  gap: 0;
}

.photo-trio-cell {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.photo-trio-cell img,
.photo-trio-cell .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.7s ease, opacity 0.4s ease;
}

.photo-trio-cell:hover img,
.photo-trio-cell:hover .img-placeholder { transform: scale(1.06); opacity: 0.8; }

.photo-trio-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  font-size: 0.56rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
}

/* ═══════════════════════════════════════
   HOURS + CONTACT
═══════════════════════════════════════ */
.info-section {
  background: var(--ink2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
}

.info-col {
  padding: 88px 72px;
  position: relative;
}

.info-col + .info-col::before {
  content: '';
  position: absolute;
  left: 0; top: 60px; bottom: 60px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.2), transparent);
}

.hours-list {
  margin-top: 40px;
  list-style: none;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  gap: 12px;
}

.hours-row:first-child { border-top: 1px solid rgba(201,168,76,0.08); }

.h-day {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(248,243,234,0.45);
  flex-shrink: 0;
}

.h-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  color: var(--cream);
  text-align: right;
  line-height: 1.5;
}

.hours-note {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.0rem;
  color: rgba(201,168,76,0.45);
  line-height: 1.7;
}

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

.c-field-label {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
  margin-bottom: 8px;
}

.c-field-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  line-height: 1.45;
  transition: color 0.3s;
  display: block;
}

a.c-field-val:hover { color: var(--gold-lt); }

.social-row {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  transition: color 0.3s;
}

.social-row:hover { color: var(--gold-lt); }

.social-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,0.25);
  display: grid;
  place-items: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

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

.social-icon svg { fill: currentColor; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(201,168,76,0.18);
}

.footer-top {
  padding: 52px 80px 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  mix-blend-mode: lighten;
  opacity: 0.6;
}

.footer-logo .img-placeholder {
  position: relative;
  width: 120px;
  height: 40px;
  font-size: 0.5rem;
}

.footer-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-cert {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.0rem;
  color: rgba(201,168,76,0.45);
  letter-spacing: 0.04em;
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-addr {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(248,243,234,0.3);
  line-height: 1.7;
}

.footer-bottom {
  padding: 20px 80px;
  border-top: 1px solid rgba(201,168,76,0.08);
  display: flex;
  justify-content: center;
}

.footer-copy {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248,243,234,0.18);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.38s; }
.d4 { transition-delay: 0.52s; }

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
@keyframes fadeUp {
  to { opacity:1; transform: translateY(0) scale(1); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  #nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 80px 24px 120px; }

  .story { grid-template-columns: 1fr; }
  .story-photo { height: 60vw; min-height: 280px; }
  .story-copy { padding: 60px 32px; }
  .story-copy::before, .story-copy::after { display: none; }

  .gallery-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-cell { height: 180px; }

  .menu-section { padding: 72px 28px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd),
  .menu-item:nth-child(even) { padding-left: 0; padding-right: 0; border-left: none; }

  .photo-trio { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-trio-cell { height: 200px; }
  .photo-trio-cell:first-child { grid-column: 1 / -1; height: 240px; }

  .info-section { grid-template-columns: 1fr; }
  .info-col { padding: 60px 32px; }
  .info-col + .info-col::before { display: none; }

  .footer-top { grid-template-columns: 1fr; text-align: center; padding: 40px 32px 28px; }
  .footer-right { text-align: center; }
  .footer-logo { display: flex; justify-content: center; }
  .footer-bottom { padding: 20px 24px; }
}

@media (max-width: 560px) {
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-cell { height: 200px; }
  .photo-trio { grid-template-columns: 1fr; }
  .photo-trio-cell, .photo-trio-cell:first-child { height: 200px; grid-column: auto; }
  .gs-item { min-width: 100%; }
}
