/* ============================================================
   AURUM — Luxury Restaurant
   Archetype 02: Editorial Dark Warm
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg-base:       #1a1410;
  --bg-surface:    #221c16;
  --bg-elevated:   #2b2318;
  --bg-card:       #312820;

  --gold:          #c9a84c;
  --gold-light:    #e2c97e;
  --gold-dim:      #8a6d2f;
  --gold-line:     rgba(201, 168, 76, 0.25);

  --text-primary:  #f0e8d8;
  --text-secondary:#b8a890;
  --text-muted:    #7a6a58;

  --serif:         'Cormorant Garamond', Georgia, serif;
  --sans:          'Jost', system-ui, sans-serif;

  --nav-h:         80px;
  --max-w:         1200px;
  --section-pad:   clamp(60px, 8vw, 110px);

  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ---------- Typography Scale ---------- */
.t-display {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.t-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
}
.t-h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}
.t-h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
}
.t-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.section { padding-block: var(--section-pad); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ---------- Gold Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 1.5rem;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-line);
}
.divider-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---------- Section Header ---------- */
.section-header {
  margin-bottom: 3.5rem;
}
.section-header .t-label { margin-bottom: 0.75rem; display: block; }
.section-header .t-h2 { color: var(--text-primary); }
.section-header p {
  max-width: 540px;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}
.section-header.text-center p { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg-base);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-line);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 0;
  letter-spacing: 0.15em;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(26, 20, 16, 0.97);
  box-shadow: 0 1px 0 var(--gold-line);
  backdrop-filter: blur(12px);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.nav-logo span { color: var(--text-primary); font-weight: 300; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none; border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: var(--nav-h); left: 0;
  width: 100%; height: 0;
  background: rgba(26,20,16,0.98);
  overflow: hidden;
  transition: height 0.4s var(--ease);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { height: calc(100vh - var(--nav-h)); }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text-primary);
  transition: color 0.25s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(139,90,43,0.12) 0%, transparent 50%);
  z-index: 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(201,168,76,0.04) 79px,
      rgba(201,168,76,0.04) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(201,168,76,0.04) 79px,
      rgba(201,168,76,0.04) 80px
    );
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 720px; padding-block: 120px 60px; }
.hero-content .t-label { margin-bottom: 1.5rem; display: block; }
.hero-content .t-display { margin-bottom: 1.8rem; }
.hero-content .t-display em {
  font-style: italic;
  color: var(--gold);
}
.hero-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); }
}

/* ---------- CARDS ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-line);
}
.card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.75rem; }
.card-body .t-label { margin-bottom: 0.5rem; display: block; }
.card-body .t-h3 { margin-bottom: 0.75rem; }
.card-price {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold);
  margin-top: 1rem;
}

/* ---------- MENU ITEMS ---------- */
.menu-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  transition: background 0.2s;
}
.menu-item:first-child { border-top: 1px solid rgba(201,168,76,0.08); }
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.menu-item-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---------- FORM ---------- */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(201,168,76,0.12);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a6d2f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-line);
  padding-block: 3.5rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.footer-brand .nav-logo { font-size: 1.9rem; margin-bottom: 1rem; display: block; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-socials { display: flex; gap: 1.25rem; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all 0.25s;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-line);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero .t-label { display: block; margin-bottom: 0.75rem; }
.page-hero-num {
  position: absolute;
  right: clamp(20px, 5vw, 60px);
  bottom: 0;
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 300;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding-block: 2.5rem;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- QUOTE ---------- */
.quote-block {
  background: var(--bg-surface);
  border-left: 2px solid var(--gold);
  padding: 2.5rem 3rem;
  margin-block: 3rem;
}
.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.quote-block cite {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ---------- ACCORDION (FAQ) ---------- */
.accordion-item {
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  gap: 1rem;
  transition: color 0.25s;
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-icon {
  width: 22px; height: 22px;
  border: 1px solid var(--gold-line);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.accordion-item.open .accordion-body { max-height: 400px; }
.accordion-body p {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---------- ANIMATE ON SCROLL ---------- */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.anim.visible { opacity: 1; transform: none; }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(26, 20, 16, 0.97);
  border-top: 1px solid var(--gold-line);
  backdrop-filter: blur(12px);
  padding: 1.5rem clamp(20px, 5vw, 60px);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}
.cookie-banner-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.cookie-banner-text a:hover { opacity: 0.75; }
.cookie-banner-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  padding: 0.7rem 1.6rem;
  background: var(--gold);
  color: var(--bg-base);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-decline {
  padding: 0.7rem 1.6rem;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.15);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.cookie-btn-decline:hover {
  border-color: var(--gold-dim);
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; gap: 1.25rem; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept,
  .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ---------- IMAGES & VISUAL COMPONENTS ---------- */

/* Full-bleed hero with real photo */
.hero-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.hero-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(16,11,8,0.88) 0%, rgba(16,11,8,0.55) 55%, rgba(16,11,8,0.3) 100%),
    linear-gradient(to top, rgba(16,11,8,0.7) 0%, transparent 40%);
}

/* Page hero photo band */
.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.page-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(16,11,8,0.92) 40%, rgba(16,11,8,0.55) 100%),
              linear-gradient(to top, rgba(16,11,8,0.8) 0%, transparent 50%);
}

/* Photo split — image fills one grid column */
.photo-col {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.photo-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.photo-col:hover img { transform: scale(1.04); }

/* Gold-framed photo */
.photo-framed {
  position: relative;
  display: inline-block;
}
.photo-framed img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.85);
}
.photo-framed::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  right: 14px; bottom: 14px;
  border: 1px solid var(--gold-dim);
  z-index: -1;
  pointer-events: none;
}
.photo-framed::after {
  content: '';
  position: absolute;
  top: 14px; left: 14px;
  right: -14px; bottom: -14px;
  border: 1px solid rgba(201,168,76,0.15);
  z-index: -1;
  pointer-events: none;
}

/* Dish card image */
.card .card-img img {
  filter: brightness(0.9) saturate(0.9);
}
.card:hover .card-img img {
  filter: brightness(1) saturate(1);
}

/* Full-width section photo band */
.photo-band {
  position: relative;
  height: clamp(320px, 45vw, 580px);
  overflow: hidden;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.65) saturate(0.7);
}
.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,20,16,0.3) 0%, rgba(26,20,16,0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 6px;
}
.gallery-grid .g1 { grid-column: span 7; grid-row: span 2; }
.gallery-grid .g2 { grid-column: span 5; }
.gallery-grid .g3 { grid-column: span 5; }
.gallery-grid .g4 { grid-column: span 4; }
.gallery-grid .g5 { grid-column: span 4; }
.gallery-grid .g6 { grid-column: span 4; }

.gallery-grid > div {
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}
.gallery-grid > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.85) saturate(0.75);
}
.gallery-grid > div:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(0.9);
}

/* Team portrait */
.team-portrait {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--gold-line);
}
.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85) saturate(0.7);
  transition: filter 0.4s;
}
.team-portrait:hover img { filter: brightness(0.95) saturate(0.85); }

/* Lazy-load fade-in */
img.lazy {
  opacity: 0;
  transition: opacity 0.6s ease;
}
img.lazy.loaded { opacity: 1; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid .g1 { grid-column: span 12; min-height: 320px; }
  .gallery-grid .g2,
  .gallery-grid .g3 { grid-column: span 6; }
  .gallery-grid .g4,
  .gallery-grid .g5,
  .gallery-grid .g6 { grid-column: span 4; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .quote-block { padding: 1.75rem; }
  .photo-col { min-height: 320px; }
  .hero-img-bg { background-attachment: scroll; }
  .gallery-grid .g4,
  .gallery-grid .g5,
  .gallery-grid .g6 { grid-column: span 6; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .gallery-grid .g2,
  .gallery-grid .g3,
  .gallery-grid .g4,
  .gallery-grid .g5,
  .gallery-grid .g6 { grid-column: span 12; }
}
