/* ============================================================
   FogPifkáló Burgers & Bistro — stylesheet
   Pure CSS, no framework.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
svg { display: block; }

/* ---------- Design tokens ---------- */
:root{
  --green-950:#0a140d;
  --green-900:#101f16;
  --green-800:#1c3726;
  --green-700:#28492f;
  --green-600:#375d3d;

  --cream:#f5efd6;
  --cream-70: rgba(245,239,214,.72);
  --cream-45: rgba(245,239,214,.45);
  --cream-20: rgba(245,239,214,.16);
  --cream-08: rgba(245,239,214,.07);

  --black:#0a0a08;
  --gold:#d7a34a;
  --gold-light:#f0cd8a;
  --gold-dim: rgba(215,163,74,.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;

  --ease: cubic-bezier(.16,1,.3,1);

  --font-display: 'Anton', sans-serif;
  --font-heading: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;
}

body{
  background: var(--green-950);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

body::before{
  /* subtle grain / vignette so flat green never looks dead */
  content:'';
  position: fixed; inset:0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(215,163,74,.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(215,163,74,.05), transparent 60%);
}

.wrap{ position: relative; z-index: 2; }

::selection{ background: var(--gold); color: var(--black); }

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:.72rem; letter-spacing:.28em; text-transform:uppercase;
  color: var(--gold-light); font-weight:600;
}
.eyebrow::before{
  content:''; width:26px; height:1px; background: var(--gold);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 16px 34px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight:600;
  font-size:.82rem;
  letter-spacing:.05em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 14px 34px -14px rgba(215,163,74,.55);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(215,163,74,.65); }
.btn-outline{
  border: 1px solid var(--cream-20);
  color: var(--cream);
  background: rgba(245,239,214,.03);
  backdrop-filter: blur(6px);
}
.btn-outline:hover{ border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }
.btn-sm{ padding: 11px 22px; font-size: .68rem; }

.section-tag{
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.5rem;
  transform: rotate(-3deg);
  display:inline-block;
}

[data-reveal]{
  opacity: 0; will-change: transform, opacity;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal="up"]{ transform: translateY(46px); }
[data-reveal="left"]{ transform: translateX(-50px); }
[data-reveal="right"]{ transform: translateX(50px); }
[data-reveal="scale"]{ transform: scale(.88); }
[data-reveal="fade"]{ transform: none; }
[data-reveal].is-visible{
  opacity: 1; transform: none;
}

.container{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 720px){
  .container{ padding: 0 24px; }
}

/* ============================================================
   LOADER
   ============================================================ */
.loader{
  position: fixed; inset:0; z-index: 9999;
  background: var(--green-950);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 22px;
  transition: opacity .7s ease, visibility .7s ease;
}
.loader.is-hidden{ opacity:0; visibility:hidden; }
.loader-badge{
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow:hidden;
  border: 1px solid var(--cream-20);
  opacity:0;
  animation: loaderFade .6s ease forwards;
}
.loader-badge img{ width:100%; height:100%; object-fit: cover; }
.loader-word{
  font-family: var(--font-display);
  letter-spacing: .1em;
  font-size: 1rem;
  color: var(--cream-45);
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFade .6s .15s ease forwards;
}
.loader-bar{
  width: 160px; height: 2px;
  background: var(--cream-08);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFade .5s .3s ease forwards;
}
.loader-bar::after{
  content:'';
  display:block; height:100%; width:0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: loaderFill 1.6s .4s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes loaderFade{ to{ opacity:1; } }
@keyframes loaderFill{ to{ width:100%; } }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  display:flex; align-items:center; justify-content:space-between;
  padding: 26px 48px;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.nav.is-scrolled{
  padding: 16px 48px;
  background: rgba(10,20,13,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-08);
}
.nav-brand{ display:flex; align-items:center; gap:12px; }
.nav-brand-badge{
  width: 42px; height:42px; border-radius:50%; overflow:hidden;
  border: 1px solid var(--cream-20);
  flex-shrink:0;
}
.nav-brand-badge img{ width:100%; height:100%; object-fit:cover; }
.nav-brand-text{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: .01em;
  line-height:1;
}
.nav-brand-text small{
  display:block; margin-top:4px;
  font-family: var(--font-body);
  font-size: .56rem; letter-spacing:.24em; text-transform:uppercase;
  color: var(--gold-light); font-weight:600;
}

.nav-links{
  display:flex; gap: 40px;
  font-size: .78rem; letter-spacing: .08em; text-transform:uppercase;
  color: var(--cream-70); font-weight:500;
}
.nav-links a{ position:relative; padding: 4px 0; transition: color .3s; }
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; height:1px; width:0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover{ color: var(--cream); }
.nav-links a:hover::after{ width:100%; }

.nav-right{ display:flex; align-items:center; gap:22px; }
.nav-burger{
  display:none; flex-direction:column; gap:6px; width:30px; z-index:600;
}
.nav-burger span{ display:block; height:2px; width:100%; background:var(--cream); transition: transform .35s var(--ease), opacity .35s var(--ease); }

.mobile-nav{
  position: fixed; inset:0; z-index:450;
  background: var(--green-950);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 34px;
  opacity:0; visibility:hidden; transform: translateY(-16px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.mobile-nav.is-open{ opacity:1; visibility:visible; transform: translateY(0); }
.mobile-nav a{
  font-family: var(--font-heading);
  font-size: 2.1rem; font-weight:600;
  color: var(--cream);
}
.mobile-nav a:hover{ color: var(--gold-light); }

@media (max-width: 900px){
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
  .nav-right .btn{ display:none; }
}
@media (max-width: 720px){
  .nav, .nav.is-scrolled{ padding: 20px 24px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-scroll-wrapper{
  position: relative;
}
@media (min-width: 900px){
  .hero-scroll-wrapper{ height: 175vh; }
}

.hero{
  position: relative;
  min-height: 100vh;
  display:flex; align-items:center; justify-content:center;
  overflow: hidden;
  padding: 70px 0 76px;
}
@media (min-width: 900px){
  .hero{ position: sticky; top:0; }
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 62%, rgba(215,163,74,.10), transparent 70%),
    linear-gradient(180deg, var(--green-950) 0%, var(--green-900) 55%, var(--green-950) 100%);
  z-index:0;
}
.hero-exit-overlay{
  position:absolute; inset:0; z-index:9;
  background: var(--green-950);
  opacity: 0;
  pointer-events: none;
}
.hero-exit{
  transition: transform .12s linear, opacity .12s linear;
}

.hero-wordmark{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  z-index:1; pointer-events:none;
  line-height:.82;
  text-align:center;
}
.hero-wordmark .line1{
  font-family: var(--font-display);
  text-transform:uppercase;
  font-size: clamp(28px, 4.4vw, 62px);
  letter-spacing:.14em;
  color: var(--cream-20);
  margin-bottom: .3rem;
}
.hero-wordmark .line2{
  font-family: var(--font-display);
  text-transform:uppercase;
  font-size: clamp(90px, 17vw, 260px);
  letter-spacing:-.01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,239,214,.16);
  white-space: nowrap;
}

.hero-top{
  position:absolute; top:120px; left:0; right:0;
  z-index:5;
  display:flex; align-items:flex-start; justify-content:space-between;
  padding: 0 48px;
}
.hero-badge{
  display:inline-flex; align-items:center; gap:9px;
  border:1px solid var(--cream-20);
  background: rgba(245,239,214,.04);
  border-radius:100px; padding:8px 18px 8px 14px;
  font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color: var(--gold-light);
}
.hero-badge .dot{
  width:6px; height:6px; border-radius:50%; background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ opacity:1; box-shadow:0 0 0 0 rgba(215,163,74,.5);} 50%{ opacity:.5; box-shadow:0 0 0 6px rgba(215,163,74,0);} }

.hero-stats{ display:flex; gap:34px; }
.hero-stats .stat{ text-align:right; }
.hero-stats .num{ font-family: var(--font-heading); font-weight:700; font-size:1.5rem; color: var(--cream); }
.hero-stats .lbl{ font-size:.56rem; letter-spacing:.16em; text-transform:uppercase; color: var(--cream-45); margin-top:3px; }

.hero-center{
  position:relative; z-index:4;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  margin-top: 40px;
}
.hero-figure-exit{ position:relative; }
.hero-figure{
  position:relative;
  width: min(480px, 66vw);
  margin: 6px 0 18px;
}
.hero-figure-glow{
  position:absolute; inset:6% 10%;
  background: radial-gradient(ellipse 60% 55% at 50% 55%, rgba(215,163,74,.35), transparent 70%);
  filter: blur(34px);
  z-index:0;
}
.hero-figure img{
  position:relative; z-index:1;
  width:100%; height:auto; display:block;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)) drop-shadow(0 8px 14px rgba(0,0,0,.35));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty{ 0%,100%{ transform: translateY(0px);} 50%{ transform: translateY(-16px);} }

.hero-chip{
  position:absolute; z-index:6;
  background: rgba(10,20,13,.86);
  border:1px solid var(--cream-20);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 14px 18px;
}
.hero-chip-offer{ top: 14%; left: 4%; max-width:190px; }
.hero-chip-offer .eyebrow{ font-size:.6rem; margin-bottom:6px; }
.hero-chip-offer .title{ font-family: var(--font-heading); font-weight:600; font-size:.98rem; margin-bottom:6px; }
.hero-chip-offer a{ font-size:.66rem; letter-spacing:.08em; text-transform:uppercase; color: var(--gold); }

.hero-chip-rating{ bottom: 20%; right: 4%; display:flex; align-items:center; gap:12px; }
.hero-chip-rating .stars{ color: var(--gold); font-size:1rem; letter-spacing:2px; }
.hero-chip-rating .val{ font-family: var(--font-heading); font-weight:700; font-size:1.1rem; }
.hero-chip-rating .sub{ font-size:.62rem; color: var(--cream-45); letter-spacing:.06em; text-transform:uppercase; }

@media (max-width: 900px){
  .hero-chip{ display:none; }
  .hero-top{ padding: 0 24px; top:100px; }
  .hero-stats{ gap:20px; }
}

.hero-heading{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  max-width: 780px;
  margin-bottom: 18px;
}
.hero-heading em{ font-style: italic; color: var(--gold-light); }

.hero-tagline{
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: var(--cream-70);
  transform: rotate(-1.5deg);
  margin-bottom: 30px;
  max-width: 560px;
}

.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-bottom: 46px; }

.scroll-hint{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  font-size:.6rem; letter-spacing:.2em; text-transform:uppercase; color: var(--cream-45);
}
.scroll-hint .line{
  width:1px; height:38px; position:relative; overflow:hidden;
  background: rgba(245,239,214,.12);
}
.scroll-hint .line::after{
  content:''; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse{ 0%{ top:-100%; opacity:0;} 35%{ opacity:1;} 100%{ top:100%; opacity:0;} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee{
  position:relative; z-index:2;
  border-top:1px solid var(--cream-08); border-bottom:1px solid var(--cream-08);
  background: var(--green-900);
  padding: 20px 0;
  overflow:hidden;
  white-space: nowrap;
}
.marquee-track{
  display:flex; width: max-content;
  animation: marquee 34s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0,0,0);
}
.marquee span{
  font-family: var(--font-display);
  text-transform:uppercase;
  font-size: 1.2rem;
  letter-spacing:.08em;
  color: var(--cream-20);
  padding: 0 26px;
  display:flex; flex: 0 0 auto; align-items:center; gap:26px;
  white-space: nowrap;
}
.marquee span i{ font-style:normal; color: var(--gold); font-size:.8rem; }
@keyframes marquee{ from{ transform: translate3d(0,0,0);} to{ transform: translate3d(-50%,0,0);} }

/* ============================================================
   ABOUT
   ============================================================ */
.about{
  position: relative;
  padding: 160px 0 120px;
  overflow:hidden;
}
.about-outline{
  position:absolute; top: 40px; right: -10px;
  font-family: var(--font-display);
  text-transform:uppercase;
  font-size: clamp(90px, 16vw, 220px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(215,163,74,.14);
  letter-spacing:-.02em;
  z-index:0; pointer-events:none;
  white-space:nowrap;
}

.about-grid{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 50px;
  align-items:start;
}
.about-rail{
  display:flex; flex-direction:column; gap:40px;
  border-right: 1px solid var(--cream-08);
  padding-top: 8px;
}
.about-rail .stat-num{ font-family: var(--font-heading); font-weight:700; font-size:1.9rem; color: var(--gold-light); line-height:1; }
.about-rail .stat-lbl{ font-size:.6rem; letter-spacing:.14em; text-transform:uppercase; color: var(--cream-45); margin-top:6px; max-width:110px; }

.about-copy h2{
  font-family: var(--font-heading);
  font-weight:600;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.14;
  margin: 18px 0 22px;
}
.about-copy h2 .accent{ color: var(--gold-light); font-style: italic; }
.about-copy p{
  color: var(--cream-70);
  line-height: 1.85;
  font-size: .98rem;
  max-width: 440px;
  margin-bottom: 30px;
}

.about-cards{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin-top: 8px; }
.about-card{
  background: rgba(245,239,214,.03);
  border: 1px solid var(--cream-08);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: border-color .35s, transform .35s var(--ease), background .35s;
}
.about-card:hover{ border-color: var(--gold-dim); background: rgba(215,163,74,.05); transform: translateY(-4px); }
.about-card .num{ font-family: var(--font-heading); color: var(--gold); font-size:.72rem; margin-bottom: 12px; }
.about-card h3{ font-family: var(--font-heading); font-size:1rem; font-weight:600; margin-bottom:8px; }
.about-card p{ font-size:.8rem; color: var(--cream-45); line-height:1.6; }

.about-photos{
  position:relative;
  min-height: 520px;
}
.polaroid{
  position:absolute;
  background: var(--cream);
  padding: 12px 12px 40px;
  border-radius: 4px;
  box-shadow: 0 30px 50px -20px rgba(0,0,0,.6);
  width: 240px;
  transition: transform .5s var(--ease);
}
.polaroid img{ border-radius:2px; width:100%; aspect-ratio: 4/5; object-fit:cover; }
.polaroid figcaption{
  font-family: var(--font-script);
  color: var(--green-900);
  font-size:1.1rem;
  text-align:center;
  margin-top: 10px;
}
.polaroid:hover{ transform: translateY(-8px) rotate(0deg) !important; z-index:5; }
.polaroid-1{ top: 0; left: 6%; width: 260px; transform: rotate(-7deg); z-index:2; }
.polaroid-2{ top: 16%; right: 0; width: 230px; transform: rotate(6deg); z-index:3; }
.polaroid-3{ bottom: 0; left: 22%; width: 220px; transform: rotate(3deg); z-index:1; }

@media (max-width: 1100px){
  .about-grid{ grid-template-columns: 100px 1fr; }
  .about-photos{ display:none; }
}
@media (max-width: 820px){
  .about{ padding: 120px 0 90px; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-rail{ flex-direction:row; flex-wrap:wrap; border-right:none; border-bottom:1px solid var(--cream-08); padding-bottom: 24px; gap: 28px; }
  .about-cards{ grid-template-columns: 1fr; }
}

/* ============================================================
   MENU
   ============================================================ */
.menu{ padding: 120px 0; position:relative; }
.menu-head{ display:flex; align-items:flex-end; justify-content:space-between; gap: 30px; margin-bottom: 54px; flex-wrap:wrap; }
.menu-head h2{ font-family: var(--font-heading); font-weight:600; font-size: clamp(2rem, 3.6vw, 2.9rem); margin-top:14px; max-width: 560px; line-height:1.15; }
.menu-head p{ max-width: 380px; color: var(--cream-45); font-size:.9rem; line-height:1.7; }
.menu-head p a{ color: var(--gold-light); border-bottom: 1px solid var(--gold-dim); }

.menu-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.menu-card{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  grid-column: span 3;
  grid-row: span 1;
  isolation:isolate;
}
.menu-card.big{ grid-column: span 4; grid-row: span 2; }
.menu-card.small{ grid-column: span 2; grid-row: span 2; }
.menu-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition: transform .8s var(--ease);
  z-index:-2;
}
.menu-card::after{
  content:'';
  position:absolute; inset:0; z-index:-1;
  background: linear-gradient(190deg, rgba(10,20,13,.05) 20%, rgba(8,14,10,.94) 92%);
}
.menu-card:hover img{ transform: scale(1.08); }
.menu-card-content{
  position:absolute; left:0; right:0; bottom:0; padding: 26px;
}
.menu-card .cat-num{ font-family: var(--font-heading); font-size:.7rem; color: var(--gold); margin-bottom:8px; letter-spacing:.1em; }
.menu-card h3{ font-family: var(--font-heading); font-weight:600; font-size:1.4rem; margin-bottom:8px; }
.menu-card p{ font-size:.82rem; color: var(--cream-70); line-height:1.55; max-width: 320px; margin-bottom: 12px; }
.menu-card .lnk{ font-size:.66rem; letter-spacing:.12em; text-transform:uppercase; color: var(--gold-light); display:inline-flex; align-items:center; gap:6px; }
.menu-card .lnk svg{ width:12px; height:12px; transition: transform .3s var(--ease); }
.menu-card:hover .lnk svg{ transform: translate(3px,-3px); }

.menu-cta{ display:flex; justify-content:center; margin-top: 54px; }

@media (max-width: 900px){
  .menu-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 260px; }
  .menu-card, .menu-card.big, .menu-card.small{ grid-column: span 2; grid-row: span 1; }
}

/* ============================================================
   TRUST / RATINGS BAR
   ============================================================ */
.trust{
  padding: 90px 0;
  border-top: 1px solid var(--cream-08);
  border-bottom: 1px solid var(--cream-08);
  background: var(--green-900);
}
.trust-inner{ display:flex; align-items:center; gap: 70px; flex-wrap:wrap; }
.trust-big{ flex-shrink:0; }
.trust-big .num{ font-family: var(--font-heading); font-weight:700; font-size: clamp(3.4rem,6vw,5.4rem); line-height:1; color: var(--gold-light); }
.trust-big .stars{ color: var(--gold); letter-spacing:3px; margin: 10px 0 6px; }
.trust-big .lbl{ font-size:.72rem; color: var(--cream-45); letter-spacing:.06em; }

.trust-row{ display:flex; gap: 14px; flex-wrap:wrap; flex:1; }
.trust-tile{
  background: rgba(245,239,214,.03);
  border: 1px solid var(--cream-08);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  min-width: 140px;
  transition: transform .35s var(--ease), border-color .35s;
}
.trust-tile:nth-child(2){ transform: translateY(18px); }
.trust-tile:nth-child(4){ transform: translateY(-14px); }
.trust-tile:hover{ border-color: var(--gold-dim); transform: translateY(-4px); }
.trust-tile .plat{ font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; color: var(--cream-45); margin-bottom:8px; }
.trust-tile .score{ font-family: var(--font-heading); font-weight:700; font-size:1.5rem; }
.trust-note{ font-size:.68rem; color: var(--cream-45); margin-top: 26px; max-width: 620px; line-height:1.6; }

@media (max-width: 900px){
  .trust-tile:nth-child(2), .trust-tile:nth-child(4){ transform:none; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery{ padding: 130px 0; }
.gallery-head{ margin-bottom: 50px; }
.gallery-head h2{ font-family: var(--font-heading); font-weight:600; font-size: clamp(2rem,3.6vw,2.9rem); margin-top: 14px; }

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
.g-item{
  position:relative; overflow:hidden; border-radius: var(--radius-md);
  cursor: pointer;
}
.g-item img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.g-item:hover img{ transform: scale(1.09); }
.g-item::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(200deg, transparent 50%, rgba(8,14,10,.86) 100%);
  opacity:0; transition: opacity .4s;
}
.g-item:hover::after{ opacity:1; }
.g-item .g-label{
  position:absolute; left:18px; bottom:14px;
  font-family: var(--font-heading); font-size:.9rem;
  opacity:0; transform: translateY(8px);
  transition: opacity .4s, transform .4s;
}
.g-item:hover .g-label{ opacity:1; transform:none; }

.g-item.gtall{ grid-row: span 2; }
.g-item.gwide{ grid-column: span 2; }

@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .g-item.gwide{ grid-column: span 2; }
}

/* Lightbox */
.lightbox{
  position: fixed; inset:0; z-index:1000;
  background: rgba(6,10,7,.94);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: opacity .4s ease, visibility .4s;
  padding: 40px;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox img{ max-width: min(920px,90vw); max-height:80vh; border-radius: var(--radius-md); box-shadow: 0 40px 80px rgba(0,0,0,.6); }
.lightbox-caption{ position:absolute; bottom: 60px; left:0; right:0; text-align:center; font-family: var(--font-heading); color: var(--cream-70); }
.lightbox-close{
  position:absolute; top: 34px; right: 40px;
  width:44px; height:44px; border-radius:50%;
  border:1px solid var(--cream-20); display:flex; align-items:center; justify-content:center;
  transition: border-color .3s, transform .3s;
}
.lightbox-close:hover{ border-color: var(--gold); transform: rotate(90deg); }
.lightbox-nav{
  position:absolute; top:50%; transform: translateY(-50%);
  width:48px; height:48px; border-radius:50%;
  border:1px solid var(--cream-20); display:flex; align-items:center; justify-content:center;
  transition: border-color .3s;
}
.lightbox-nav:hover{ border-color: var(--gold); }
.lightbox-prev{ left: 30px; }
.lightbox-next{ right: 30px; }

/* ============================================================
   LOCATION
   ============================================================ */
.location{
  position:relative;
  display:grid; grid-template-columns: 1fr 1.1fr;
  min-height: 640px;
}
.location-info{
  background: var(--green-900);
  padding: 100px 64px;
  position:relative;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}
.location-info::before{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 50% at 0% 100%, rgba(215,163,74,.08), transparent 70%);
}
.location-info > *{ position:relative; z-index:2; }
.location-info h2{ font-family: var(--font-heading); font-weight:600; font-size: clamp(1.9rem,3vw,2.6rem); margin: 16px 0 26px; max-width: 380px; }
.location-address{ font-size:1.05rem; line-height:1.7; margin-bottom: 30px; color: var(--cream-70); }
.location-address strong{ display:block; color: var(--cream); font-family: var(--font-heading); font-size:1.15rem; margin-bottom:4px; }

.hours{ margin-bottom: 30px; }
.hours-row{
  display:flex; justify-content:space-between; gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--cream-08);
  font-size:.86rem;
}
.hours-row span:first-child{ color: var(--cream-45); }
.hours-note{ font-size:.68rem; color: var(--cream-45); margin-top: 14px; line-height:1.6; max-width: 360px; }

.social-row{ display:flex; gap:12px; margin-top: 8px; }
.social-btn{
  width:48px; height:48px; border-radius:50%;
  border:1px solid var(--cream-20);
  display:flex; align-items:center; justify-content:center;
  transition: border-color .3s, background .3s, transform .3s;
}
.social-btn:hover{ border-color: var(--gold); background: rgba(215,163,74,.08); transform: translateY(-3px); }
.social-btn svg{ width:18px; height:18px; }

.location-map{ position:relative; background: var(--green-950); }
.location-map iframe{
  width:100%; height:100%; min-height: 420px; border:0;
  filter: grayscale(.5) invert(.92) contrast(.9);
}

@media (max-width: 900px){
  .location{ grid-template-columns: 1fr; }
  .location-info{ clip-path:none; padding: 80px 28px 60px; }
  .location-map iframe{ min-height: 360px; }
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip{
  padding: 90px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-strip h2{
  font-family: var(--font-heading); font-weight:600;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  max-width: 760px; margin: 0 auto 34px;
  line-height:1.16;
}
.cta-strip h2 em{ color: var(--gold-light); font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  border-top: 1px solid var(--cream-08);
  padding: 80px 0 30px;
  position: relative;
  overflow:hidden;
}
.footer-word{
  font-family: var(--font-display);
  text-transform:uppercase;
  font-size: clamp(60px, 12vw, 170px);
  text-align:center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,239,214,.10);
  letter-spacing:-.01em;
  margin-bottom: 50px;
  line-height:1;
}
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--cream-08);
}
.footer-brand{ display:flex; gap:14px; align-items:flex-start; }
.footer-brand-badge{ width:54px; height:54px; border-radius:50%; overflow:hidden; border:1px solid var(--cream-20); flex-shrink:0; }
.footer-brand-badge img{ width:100%; height:100%; object-fit:cover; }
.footer-brand-text h4{ font-family: var(--font-heading); font-size:1.2rem; margin-bottom:8px; }
.footer-brand-text p{ font-size:.82rem; color: var(--cream-45); line-height:1.65; max-width: 280px; }

.footer-col h5{ font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a, .footer-col p{ font-size:.88rem; color: var(--cream-70); }
.footer-col a:hover{ color: var(--gold-light); }

.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  padding-top: 28px; flex-wrap:wrap; gap:14px;
  font-size:.72rem; color: var(--cream-45);
}
.footer-bottom a{ color: var(--cream-45); }
.footer-bottom a:hover{ color: var(--gold-light); }

@media (max-width: 820px){
  .footer-grid{ grid-template-columns: 1fr; gap: 34px; }
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta{
  position: fixed; right: 28px; bottom: 28px; z-index: 400;
  display:flex; align-items:center; gap:12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  padding: 14px 22px 14px 16px;
  border-radius: 100px;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.55);
  font-size:.76rem; font-weight:700; letter-spacing:.03em; text-transform:uppercase;
  opacity:0; transform: translateY(18px) scale(.9); pointer-events:none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.float-cta.is-visible{ opacity:1; transform:none; pointer-events:auto; }
.float-cta svg{ width:20px; height:20px; }
.float-cta:hover{ transform: translateY(-3px); }

@media (max-width: 600px){
  .float-cta span{ display:none; }
  .float-cta{ padding: 14px; }
}
