/* =====================================================================
   PRIME — Steakhouse & Grill Website Template
   Plain HTML5 + CSS3 + vanilla JS. No frameworks. No build tools.
   Images load from loremflickr.com (thematic) and i.pravatar.cc (people).
   ---------------------------------------------------------------------
   REBRAND: To rebrand, edit the CSS variables in :root below.
   Change --brand (brass/gold), --charcoal, --cream and the fonts.
   Replace the name "Prime" in the HTML files + logo.
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — dark, refined, masculine-premium */
  --charcoal:     #16140f;   /* deep charcoal background          */
  --charcoal-2:   #1f1c16;   /* raised surface / cards            */
  --charcoal-3:   #2a261d;   /* hover / borders on dark           */
  --brand:        #b08d57;   /* brass / gold (primary accent)     */
  --brand-dark:   #8f6f3f;   /* darker brass for hovers           */
  --brand-light:  #cda973;   /* lighter brass / highlights        */
  --cream:        #f3ece0;   /* cream text                        */
  --cream-soft:   #cfc6b6;   /* muted cream / secondary text      */
  --ink:          #16140f;   /* near-black for text on light      */
  --muted:        #8c8475;   /* muted text on dark                */
  --white:        #ffffff;
  --line:         rgba(176, 141, 87, 0.22);  /* brass hairline    */
  --line-soft:    rgba(243, 236, 224, 0.10); /* faint cream line  */

  /* Typography */
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.30);
  --shadow-md: 0 16px 44px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.55);
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.16; font-weight: 700; color: var(--cream); }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.32rem; }
p  { color: var(--cream-soft); }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: var(--charcoal-2); }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--brand-light);
  margin-bottom: 14px;
  display: inline-block;
}
.section-head { max-width: 680px; margin: 0 auto 58px; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.lead { font-size: 1.14rem; color: var(--cream-soft); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--brand); color: var(--charcoal); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--cream); border: 1.5px solid var(--brand); }
.btn--ghost:hover { background: var(--brand); color: var(--charcoal); transform: translateY(-3px); }
.btn--light { background: var(--cream); color: var(--charcoal); }
.btn--light:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline-light { border: 1.5px solid rgba(243,236,224,.45); color: var(--cream); }
.btn--outline-light:hover { background: var(--cream); color: var(--charcoal); }

/* =====================================================================
   HEADER (shared, sticky)
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(22, 20, 15, 0.72);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s, background .3s, border-color .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(22,20,15,.94); border-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.42rem; color: var(--cream); letter-spacing: .02em; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 8px;
  display: grid; place-items: center; color: var(--charcoal);
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-dark) 100%);
  box-shadow: var(--shadow-sm);
}
.logo-mark svg { width: 24px; height: 24px; }
.logo span small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--brand-light); margin-top: 1px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-family: var(--font-body); font-weight: 500; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 4px; color: var(--cream-soft);
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: var(--cream); background: rgba(176,141,87,.12); }
.nav-menu a.active { color: var(--brand-light); background: rgba(176,141,87,.16); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; }

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 8px;
  position: relative; background: rgba(176,141,87,.12);
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 3px;
  background: var(--brand-light); transition: transform .3s var(--ease), opacity .2s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   HERO (home)
   ===================================================================== */
.hero {
  position: relative; overflow: hidden; min-height: 88vh;
  display: grid; align-items: center;
  color: var(--cream);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(22,20,15,.94) 0%, rgba(22,20,15,.78) 42%, rgba(22,20,15,.40) 100%),
    linear-gradient(0deg, rgba(22,20,15,.85) 0%, transparent 55%);
}
.hero-inner { position: relative; z-index: 1; padding: 120px 0; }
.hero-text { max-width: 640px; }
.hero-text h1 { margin-bottom: 20px; }
.hero-text .lead { margin-bottom: 34px; max-width: 540px; color: var(--cream); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: 2rem; color: var(--brand-light); display: block; }
.hero-stats .stat span { font-size: .82rem; color: var(--cream-soft); letter-spacing: .04em; }

/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.page-banner {
  position: relative; padding: 96px 0 86px; text-align: center; color: var(--cream);
  overflow: hidden;
}
.page-banner .pb-bg { position: absolute; inset: 0; z-index: 0; }
.page-banner .pb-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner .pb-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,20,15,.80), rgba(22,20,15,.90)); }
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--cream); margin-bottom: 14px; }
.page-banner p { color: var(--cream-soft); max-width: 620px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 9px; justify-content: center; align-items: center; margin-top: 20px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a { color: var(--cream-soft); }
.breadcrumb a:hover { color: var(--brand-light); }
.breadcrumb span { opacity: .5; }
.breadcrumb .current { color: var(--brand-light); }

/* =====================================================================
   CARDS / GRIDS
   ===================================================================== */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--charcoal-2); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card h3 { margin-bottom: 10px; }
.icon-badge {
  width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 20px; color: var(--brand-light);
  background: rgba(176,141,87,.12); border: 1px solid var(--line);
}

/* Product / signature cut cards (with photo) */
.product { overflow: hidden; padding: 0; }
.product .thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.product .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product:hover .thumb img { transform: scale(1.06); }
.product .thumb .tag { position: absolute; top: 14px; left: 14px; background: var(--brand); color: var(--charcoal); font-family: var(--font-body); font-weight: 700; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; box-shadow: var(--shadow-sm); }
.product .body { padding: 24px 26px 28px; }
.product .body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.product .body h3 { font-size: 1.24rem; }
.product .body .price { font-family: var(--font-head); font-weight: 700; color: var(--brand-light); font-size: 1.2rem; white-space: nowrap; }
.product .body p { font-size: .92rem; margin-top: 8px; }

/* =====================================================================
   SPLIT SECTIONS (with photo)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.split-visual {
  border-radius: var(--radius); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4 / 3;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-visual .badge-float {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(22,20,15,.86); border: 1px solid var(--line);
  color: var(--cream); padding: 14px 18px; border-radius: 10px;
  font-family: var(--font-head); font-weight: 700; box-shadow: var(--shadow-md);
  backdrop-filter: blur(4px);
}
.split-visual .badge-float small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-light); margin-top: 2px; }
.split-text h2 { margin-bottom: 18px; }
.split-text p + p { margin-top: 14px; }
.check-list { margin-top: 24px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--cream); }
.check-list li::before { content: ""; flex: none; width: 9px; height: 9px; margin-top: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(176,141,87,.18); }

/* =====================================================================
   HOURS / LOCATION STRIP
   ===================================================================== */
.strip { background: var(--charcoal-2); border: 1px solid var(--line); color: var(--cream); border-radius: var(--radius); padding: 42px; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; box-shadow: var(--shadow-md); }
.strip .item { display: flex; gap: 16px; align-items: flex-start; }
.strip .item .ic { font-size: 1.6rem; color: var(--brand-light); }
.strip .item h4 { color: var(--cream); font-size: 1.05rem; margin-bottom: 4px; }
.strip .item p { color: var(--cream-soft); font-size: .92rem; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quote-card { max-width: 800px; margin: 0 auto; text-align: center; }
.quote-card .stars { color: var(--brand); font-size: 1.2rem; letter-spacing: 4px; margin-bottom: 22px; }
.quote-card blockquote { font-family: var(--font-head); font-size: clamp(1.4rem,2.6vw,2rem); color: var(--cream); line-height: 1.45; font-weight: 500; font-style: italic; }
.quote-card .who { margin-top: 28px; display: flex; gap: 14px; align-items: center; justify-content: center; }
.quote-card .avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand); }
.quote-card .who b { font-family: var(--font-head); color: var(--cream); display: block; font-size: 1.05rem; }
.quote-card .who small { color: var(--brand-light); letter-spacing: .04em; }

.testi-grid .card .stars { color: var(--brand); letter-spacing: 2px; margin-bottom: 14px; }
.testi-grid .card p { color: var(--cream); font-style: italic; }
.testi-grid .card .who { margin-top: 20px; display: flex; align-items: center; gap: 13px; }
.testi-grid .card .avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand); }
.testi-grid .card .who b { font-family: var(--font-head); font-size: 1rem; color: var(--cream); }
.testi-grid .card .who small { color: var(--brand-light); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { text-align: center; }
.cta-band .inner {
  position: relative; overflow: hidden;
  border-radius: 18px; padding: 72px 40px; color: var(--cream); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.cta-band .inner .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .inner .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .inner .cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,20,15,.82), rgba(22,20,15,.90)); }
.cta-band .inner > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream); margin-bottom: 14px; }
.cta-band p { color: var(--cream-soft); max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* =====================================================================
   TEAM / CHEF
   ===================================================================== */
.team-card { text-align: center; padding: 0; overflow: hidden; }
.team-card .photo { aspect-ratio: 1; overflow: hidden; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover .photo img { transform: scale(1.05); }
.team-card .info { padding: 22px 20px 26px; }
.team-card h3 { font-size: 1.18rem; margin-bottom: 3px; }
.team-card .role { color: var(--brand-light); font-family: var(--font-body); font-weight: 600; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.team-card p { font-size: .9rem; margin-top: 12px; }

/* =====================================================================
   MENU PAGE
   ===================================================================== */
.menu-cat { margin-bottom: 64px; }
.menu-cat:last-child { margin-bottom: 0; }
.menu-cat-head { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.menu-cat-head .ic { width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center; font-size: 1.6rem; color: var(--brand-light); background: rgba(176,141,87,.12); border: 1px solid var(--line); }
.menu-cat-head h2 { font-size: 1.8rem; }
.menu-cat-head p { font-size: .9rem; }

/* Menu items with thumbnail photo */
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 44px; }
.menu-item { display: flex; gap: 16px; align-items: flex-start; }
.menu-item .mthumb { width: 86px; height: 86px; flex: none; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.menu-item .mthumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-item .mbody { flex: 1; min-width: 0; }
.menu-item .top { display: flex; align-items: baseline; gap: 10px; }
.menu-item .name { font-family: var(--font-head); font-weight: 700; color: var(--cream); font-size: 1.1rem; }
.menu-item .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu-item .price { font-family: var(--font-head); font-weight: 700; color: var(--brand-light); font-size: 1.1rem; white-space: nowrap; }
.menu-item .desc { font-size: .86rem; margin-top: 4px; }
.menu-item .badge { font-size: .6rem; background: rgba(176,141,87,.2); color: var(--brand-light); padding: 2px 9px; border-radius: 4px; font-family: var(--font-body); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; vertical-align: middle; }

/* =====================================================================
   GALLERY PAGE
   ===================================================================== */
.gallery-group { margin-bottom: 56px; }
.gallery-group h2 { margin-bottom: 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.tile {
  border-radius: var(--radius-sm); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  aspect-ratio: 1;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile::after {
  content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 14px 12px; font-family: var(--font-head); font-size: .9rem; font-weight: 600; color: var(--cream);
  background: linear-gradient(transparent, rgba(22,20,15,.85)); text-align: left;
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s;
}
.tile:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.tile:hover img { transform: scale(1.07); }
.tile:hover::after { opacity: 1; transform: translateY(0); }
.tile.wide { grid-column: span 2; aspect-ratio: 2 / 1; }

.gallery-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.gallery-tabs a { padding: 10px 22px; border-radius: 4px; font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; background: var(--charcoal-2); border: 1px solid var(--line); color: var(--cream-soft); transition: background .2s, color .2s; }
.gallery-tabs a:hover { background: var(--brand); color: var(--charcoal); }

/* =====================================================================
   RESERVATIONS PAGE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 19px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .info-item:last-of-type { border-bottom: none; }
.contact-info .info-item .ic { width: 48px; height: 48px; flex: none; border-radius: 10px; display: grid; place-items: center; font-size: 1.3rem; color: var(--brand-light); background: rgba(176,141,87,.12); border: 1px solid var(--line); }
.contact-info .info-item h4 { margin-bottom: 3px; }
.contact-info .info-item p, .contact-info .info-item a { color: var(--cream-soft); font-size: .95rem; }
.contact-info .info-item a:hover { color: var(--brand-light); }

.form { background: var(--charcoal-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-light); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--cream); background: var(--charcoal);
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(176,141,87,.20); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b08d57'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field.error input, .field.error textarea, .field.error select { border-color: #d9685f; }
.field .msg { color: #e08a82; font-size: .8rem; margin-top: 6px; display: none; }
.field.error .msg { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }
.form-success { display: none; background: rgba(176,141,87,.14); border: 1px solid var(--line); color: var(--brand-light); padding: 15px 18px; border-radius: var(--radius-sm); font-family: var(--font-head); font-weight: 600; margin-bottom: 20px; }
.form-success.show { display: block; }

.map-placeholder {
  margin-top: 32px; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; position: relative;
  border: 1px solid var(--line);
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.map-placeholder::after { content: ""; position: absolute; inset: 0; background: rgba(22,20,15,.45); }
.map-placeholder .pin { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; text-align: center; }
.map-placeholder .pin .label { font-family: var(--font-head); font-weight: 700; color: var(--cream); font-size: 1.1rem; }
.map-placeholder .pin small { color: var(--cream-soft); display: block; margin-top: 4px; }

/* =====================================================================
   FOOTER (shared)
   ===================================================================== */
.site-footer { background: #100e0a; color: var(--cream-soft); padding: 76px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; }
.footer-grid h4 { color: var(--cream); font-size: 1rem; margin-bottom: 20px; letter-spacing: .02em; }
.footer-brand .logo { color: var(--cream); margin-bottom: 18px; }
.footer-brand .logo span small { color: var(--brand-light); }
.footer-brand p { font-size: .92rem; max-width: 290px; }
.footer-col a, .footer-col p { display: block; color: var(--cream-soft); font-size: .92rem; padding: 5px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--brand-light); padding-left: 5px; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a { width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center; background: rgba(176,141,87,.1); border: 1px solid var(--line); padding: 0; color: var(--brand-light); transition: background .2s, color .2s; }
.socials a:hover { background: var(--brand); color: var(--charcoal); padding-left: 0; }
.socials a svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: 50px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; }
.footer-bottom a:hover { color: var(--brand-light); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
/* Fallback: if JS disabled, show everything */
.no-js .reveal { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .menu-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 66px 0; }
  /* Mobile nav */
  .hamburger { display: block; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(22,20,15,.98); padding: 16px 20px 26px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 14px 16px; font-size: .9rem; }
  .nav-cta .btn { display: none; }
  .strip { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-stats { gap: 28px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 90px 0; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .tile.wide { grid-column: span 1; aspect-ratio: 1; }
  .container { padding: 0 18px; }
  .cta-band .inner { padding: 48px 24px; }
}
