/* ============================================================
   Go For Hibachi — "Ember & Copper" design system  (v2 rebuild)
   Plain CSS, no build step. Shared across every page.
   Typography:  Anton (display) · Playfair Display (serif accent) · Inter (UI/body)
   Rhythm:      alternating deep-night / warm-cream sections
   ============================================================ */

:root {
  /* ---- Night / charcoal ---- */
  --night:    #0c0a09;
  --night-2:  #120e0b;
  --char:     #17110d;
  --char-2:   #1f1712;
  --char-3:   #2a201a;

  /* ---- Fire ---- */
  --ember:    #ff5a1f;
  --ember-2:  #ff8a3d;
  --flame:    #e23b17;
  --red:      #c02c1b;

  /* ---- Metals ---- */
  --copper:   #c88348;
  --copper-2: #e0a668;
  --gold:     #e8b45a;
  --gold-2:   #f3cf86;

  /* ---- Warm light ---- */
  --cream:    #f6efe3;
  --cream-2:  #efe3d1;
  --paper:    #fffaf3;
  --ink:      #1a1310;   /* text on light */
  --ink-soft: #5b4f45;

  /* ---- On-dark text ---- */
  --cream-txt: #f7efe2;
  --muted:     rgba(247, 239, 226, 0.68);
  --muted-2:   rgba(247, 239, 226, 0.45);
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.14);

  /* ---- Gradients ---- */
  --fire:  linear-gradient(102deg, #e23b17 0%, #ff5a1f 42%, #ff8a3d 72%, #e8b45a 100%);
  --fire-soft: linear-gradient(120deg, rgba(226,59,23,.22), rgba(255,138,61,.14));
  --copper-grad: linear-gradient(120deg, #b8702f, #e0a668);
  --smoke: radial-gradient(1200px 620px at 50% -8%, rgba(226,59,23,0.30), transparent 60%),
           radial-gradient(920px 520px at 88% 6%, rgba(255,138,61,0.18), transparent 55%),
           radial-gradient(760px 480px at 6% 30%, rgba(200,131,72,0.12), transparent 60%);

  /* ---- Type ---- */
  --font-display: "Anton", "Oswald", "Arial Narrow", sans-serif;
  --font-serif:   "Playfair Display", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius:   20px;
  --radius-sm:12px;
  --shadow-dark: 0 26px 70px -34px rgba(0,0,0,0.9);
  --shadow-lift: 0 30px 80px -40px rgba(226,59,23,0.55);
  --shadow-soft: 0 24px 60px -34px rgba(60,30,10,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--night);
  color: var(--cream-txt);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(255,90,31,0.35); color: #fff; }

/* ---------- Type helpers ---------- */
.gradient-text {
  background: var(--fire);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.serif-em { font-family: var(--font-serif); font-style: italic; font-weight: 600; color: var(--gold-2); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 880px; }
.container-gallery { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 20px; }
.section { padding: 74px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 110px 0; } }
.section-tight { padding-top: 0; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(232,180,90,0.42);
  background: rgba(232,180,90,0.07);
  color: var(--gold-2);
  font-family: var(--font-body); font-weight: 700;
  font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.28em;
  padding: 7px 16px; border-radius: 999px;
}
.eyebrow::before { content: "🔥"; font-size: 12px; }
.eyebrow.plain::before { content: none; }

.section-head { max-width: 780px; margin: 0 auto; text-align: center; }
.section-head.left { margin: 0; text-align: left; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.3rem, 5.4vw, 4rem); line-height: 0.94; letter-spacing: 0.005em;
  color: var(--cream-txt); margin: 20px 0 0;
}
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 20px; }
.section-head .eyebrow { margin-bottom: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.11em;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  border: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--fire); color: #241206; box-shadow: 0 20px 50px -18px rgba(226,59,23,0.7); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 60px -14px rgba(255,138,61,0.65); }
.btn-secondary { background: transparent; border: 2px solid rgba(232,180,90,0.7); color: var(--gold-2); }
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(232,180,90,0.12); }
.btn-ghost { background: rgba(255,255,255,0.04); border: 1px solid var(--line-2); color: var(--cream-txt); }
.btn-ghost:hover { border-color: rgba(232,180,90,0.6); color: var(--gold-2); transform: translateY(-2px); }
.btn-dark { background: #1a1310; color: var(--cream); }
.btn-dark:hover { background: #241a14; transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 0.72rem; }
.btn-lg { padding: 17px 36px; font-size: 0.86rem; }
.btn-block { width: 100%; }

/* on light sections buttons keep contrast */
.light .btn-ghost { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.14); color: var(--ink); }
.light .btn-ghost:hover { border-color: var(--flame); color: var(--flame); }
.light .btn-secondary { border-color: rgba(200,131,72,0.6); color: #a5541f; }
.light .btn-secondary:hover { background: rgba(226,59,23,0.06); color: #8f3f14; }

/* ---------- Cards ---------- */
.card {
  position: relative; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border-radius: var(--radius); box-shadow: var(--shadow-dark);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.card-glow:hover { transform: translateY(-6px); border-color: rgba(232,180,90,0.5); box-shadow: 0 0 0 1px rgba(232,180,90,0.32), var(--shadow-lift); }
.card-topbar::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; border-radius: var(--radius) var(--radius) 0 0; background: var(--fire); }
.pad { padding: 30px; }
.card h3 { font-family: var(--font-body); font-weight: 800; letter-spacing: 0.01em; color: var(--cream-txt); font-size: 1.22rem; margin: 12px 0 8px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.icon-lg { font-size: 1.9rem; display: inline-block; }
.icon-badge { width: 54px; height: 54px; border-radius: 15px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; background: var(--fire-soft); border: 1px solid rgba(255,138,61,0.3); }

/* ---------- LIGHT sections ---------- */
.light { background: var(--cream); color: var(--ink); }
.light::before, .light::after { content: none; }
.light .section-head h2 { color: var(--ink); }
.light .section-head p { color: var(--ink-soft); }
.light .eyebrow { color: #a5541f; border-color: rgba(200,131,72,0.4); background: rgba(200,131,72,0.08); }
.light p { color: var(--ink-soft); }
.light h1, .light h2, .light h3, .light h4 { color: var(--ink); }
.light .card { background: var(--paper); border-color: rgba(30,20,12,0.09); box-shadow: var(--shadow-soft); }
.light .card p { color: var(--ink-soft); }
.light .card-glow:hover { border-color: rgba(226,59,23,0.4); box-shadow: 0 0 0 1px rgba(226,59,23,0.18), 0 34px 80px -40px rgba(160,70,20,0.5); }
.light .step-num, .light .price-tag { color: var(--ink); }
.light .list-line { border-color: rgba(30,20,12,0.12); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease, box-shadow .4s;
  background: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(12,10,9,0.92); backdrop-filter: blur(12px); border-bottom-color: var(--line); box-shadow: 0 10px 30px -20px rgba(0,0,0,0.9); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 14px; }
@media (min-width: 768px){ .header-inner { height: 96px; } }
.brand { display: flex; align-items: center; gap: 12px; align-self: flex-start; position: relative; z-index: 2; }
.brand img { height: 88px; width: auto; border-radius: 0; box-shadow: none; margin-top: 5px; filter: drop-shadow(0 7px 16px rgba(0,0,0,0.55)); }
@media (min-width: 768px){ .brand img { height: 128px; margin-top: 6px; } }
.brand-name { display: none; font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.28rem; color: var(--cream-txt); }
.nav { display: none; align-items: center; gap: 2px; }
@media (min-width: 1024px){ .nav { display: flex; } }
.nav a { font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.78rem; color: var(--muted); padding: 9px 13px; border-radius: 999px; transition: color .2s; position: relative; }
.nav a:hover, .nav a.active { color: var(--gold-2); }
.nav a.active::after { content:""; position:absolute; left:13px; right:13px; bottom:3px; height:2px; border-radius:2px; background: var(--fire); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { display: none; }
@media (min-width: 640px){ .header-cta .btn { display: inline-flex; } }
.header-phone { display: none; font-family: var(--font-body); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.02em; color: var(--gold-2); white-space: nowrap; padding: 6px 4px; transition: color .2s; }
.header-phone:hover { color: var(--ember-2); }
@media (min-width: 1024px){ .header-phone { display: inline-flex; align-items: center; } }
.hamburger { display: inline-flex; flex-direction: column; gap: 5px; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line-2); border-radius: 50%; background: rgba(255,255,255,0.03); cursor: pointer; }
@media (min-width: 1024px){ .hamburger { display: none; } }
.hamburger span { width: 22px; height: 2px; background: var(--cream-txt); transition: transform .3s, opacity .3s; border-radius: 2px; }
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 74px 0 0 0; z-index: 40; background: var(--night); background-image: var(--smoke); padding: 26px 22px 40px; transform: translateX(100%); transition: transform .35s ease; overflow-y: auto; display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a.m-link { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: 1.75rem; color: var(--cream-txt); padding: 13px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a.m-link:hover, .mobile-menu a.m-link.active { color: var(--gold-2); }
.mobile-actions { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.mobile-actions .btn { width: 100%; }
body.menu-open { overflow: hidden; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 74px; background: var(--night); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img, .hero-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transform: scale(1.08); animation: heroZoom 22s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.16); } }
.hero-bg .overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,10,9,0.28), rgba(12,10,9,0.42) 60%, var(--night)); }
.hero-bg .overlay-side { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(12,10,9,0.5) 0%, rgba(12,10,9,0.12) 55%, transparent 100%); }
.hero-bg .smoke { position: absolute; inset: 0; background-image: var(--smoke); }
.hero canvas.embers { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.9; }
.hero-inner { position: relative; z-index: 3; padding: 60px 22px 80px; max-width: 820px; }
.hero-badge { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.hero-badge img { width: 60px; height: 60px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(232,180,90,0.55); }
.hero h1 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  line-height: 0.94; font-size: clamp(1.95rem, 7.6vw, 5.6rem); color: var(--cream-txt);
  letter-spacing: 0.004em; text-wrap: balance;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; animation: lineUp .9s cubic-bezier(.2,.8,.2,1) both; }
.hero h1 .line:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes lineUp { from { transform: translateY(105%); } to { transform: translateY(0); } }
.hero h1 .accent { font-family: var(--font-serif); font-style: italic; font-weight: 600; text-transform: none; color: transparent; background: var(--fire); -webkit-background-clip: text; background-clip: text; }
.hero p.sub { font-size: clamp(1.05rem, 2.1vw, 1.32rem); color: rgba(247,239,226,0.85); margin-top: 24px; max-width: 640px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-facts { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; margin-top: 34px; }
.hero-facts .fact { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; color: var(--muted); }
.hero-facts .fact b { color: var(--gold-2); font-weight: 700; }
.hero-facts .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 10px var(--ember); }
.hero-call { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; }
.hero-call .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--fire); color: #241206; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px -8px rgba(255,90,31,0.7); }
.meta-label { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted-2); }
.meta-value { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream-txt); letter-spacing: .01em; }
.meta-value.gold { color: var(--gold-2); }

/* ---------- Marquee highlight strip ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(226,59,23,0.10), rgba(255,138,61,0.05)); overflow: hidden; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 16px; padding: 16px 0; font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.04em; color: var(--cream-txt); }
.marquee-track span::after { content: "✦"; color: var(--ember); margin: 0 30px; font-size: 0.8rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stat band ---------- */
.stat-band { background: var(--char); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
@media (min-width: 900px){ .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--char); padding: 34px 18px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; color: transparent; background: var(--fire); -webkit-background-clip: text; background-clip: text; }
.stat .lbl { display: block; margin-top: 10px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px){ .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split.rev .split-media { order: 2; } }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-dark); }
.split-media img, .split-media video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.2; transition: transform .8s ease; }
.split-media:hover img { transform: scale(1.05); }
.split-media .tagline { position: absolute; left: 18px; bottom: 18px; background: rgba(12,10,9,0.72); backdrop-filter: blur(6px); border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 16px; font-family: var(--font-display); text-transform: uppercase; font-size: 0.85rem; letter-spacing: .04em; color: var(--gold-2); }
.split h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 0.96; margin-top: 18px; }
.exp-list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.exp-item { display: flex; gap: 16px; align-items: flex-start; }
.exp-item .ei-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; background: var(--fire-soft); border: 1px solid rgba(255,138,61,0.28); }
.exp-item h4 { font-weight: 800; font-size: 1.02rem; color: var(--cream-txt); }
.light .exp-item h4 { color: var(--ink); }
.exp-item p { font-size: 0.92rem; color: var(--muted); margin-top: 2px; }
.light .exp-item p { color: var(--ink-soft); }

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 54px; counter-reset: step; }
@media (min-width: 700px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: 30px 24px; border-radius: var(--radius); border: 1px solid rgba(30,20,12,0.1); background: var(--paper); box-shadow: var(--shadow-soft); }
.step .step-num { font-family: var(--font-display); font-size: 3.2rem; line-height: 1; color: transparent; background: var(--fire); -webkit-background-clip: text; background-clip: text; display: block; }
.step h3 { font-weight: 800; font-size: 1.15rem; color: var(--ink); margin: 10px 0 6px; }
.step p { color: var(--ink-soft); font-size: 0.94rem; }
.step .ic { position: absolute; top: 26px; right: 24px; font-size: 1.5rem; opacity: 0.55; }
@media (min-width: 1024px){ .step:not(:last-child)::after { content: "→"; position: absolute; top: 50%; right: -18px; transform: translateY(-50%); color: var(--copper); font-size: 1.3rem; z-index: 2; } }

/* ---------- Price / menu bits ---------- */
.price-tag { font-family: var(--font-display); font-size: 3.3rem; color: var(--cream-txt); line-height: 1; }
.price-unit { font-size: 1rem; color: var(--muted-2); margin-left: 6px; font-family: var(--font-body); }
.badge-pop { position: absolute; top: 18px; right: 18px; background: var(--fire); color: #241206; font-family: var(--font-body); font-weight: 800; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.13em; padding: 6px 13px; border-radius: 999px; }
.pill { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.04); border-radius: 999px; padding: 8px 15px; font-size: 0.9rem; color: var(--cream-txt); }
.light .pill { border-color: rgba(30,20,12,0.14); background: rgba(30,20,12,0.03); color: var(--ink); }
.list-line { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.list-line:last-child { border-bottom: none; }
.list-line .p { color: var(--gold-2); font-family: var(--font-display); }
.light .list-line .p { color: #a5541f; }
.menu-sticky { position: sticky; top: 74px; z-index: 30; background: rgba(23,17,13,0.94); backdrop-filter: blur(10px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (min-width: 768px){ .menu-sticky { top: 96px; } }
.menu-sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; flex-wrap: wrap; }
.menu-sticky-inner strong { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.05rem; }
.menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.menu-tabs a { font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted); }
.menu-tabs a:hover { color: var(--gold-2); border-color: rgba(232,180,90,0.5); }

/* ---------- Occasions ---------- */
.occasion-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; margin-top: 50px; }
@media (min-width: 900px){ .occasion-grid { grid-template-columns: repeat(3, 1fr); } }
.occasion { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 240px; display: flex; align-items: flex-end; border: 1px solid var(--line); box-shadow: var(--shadow-dark); }
.occasion img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.occasion::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,7,6,0.9) 8%, rgba(9,7,6,0.28) 55%, rgba(9,7,6,0.1)); }
.occasion:hover img { transform: scale(1.08); }
.occasion .oc-body { position: relative; z-index: 2; padding: 22px; width: 100%; }
.occasion h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: 1.5rem; color: var(--cream-txt); letter-spacing: .01em; }
.occasion p { color: var(--muted); font-size: 0.86rem; margin-top: 2px; }
.occasion .oc-tag { position: absolute; z-index: 2; top: 16px; left: 16px; font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-2); background: rgba(12,10,9,0.6); border: 1px solid var(--line-2); padding: 5px 11px; border-radius: 999px; }

/* ---------- Northeast service map ---------- */
/* section ambient atmosphere (very faint fire glow + smoke texture) */
.serve { position: relative; overflow: hidden; }
.serve::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(760px 460px at 16% 8%, rgba(226,59,23,0.16), transparent 60%),
    radial-gradient(640px 480px at 90% 84%, rgba(255,138,61,0.11), transparent 62%),
    repeating-linear-gradient(128deg, rgba(255,255,255,0.014) 0 2px, transparent 2px 24px); }
.serve > .container { position: relative; z-index: 1; }

.map-wrap { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: stretch; margin-top: 50px; }
@media (min-width: 960px){ .map-wrap { grid-template-columns: 1.06fr 0.94fr; gap: 42px; } }

.ne-map { position: relative; border-radius: var(--radius); border: 1px solid rgba(232,180,90,0.22);
  background: radial-gradient(120% 130% at 50% 6%, rgba(226,59,23,0.13), transparent 55%), linear-gradient(160deg, #191410, #0b0908);
  padding: 16px; box-shadow: var(--shadow-dark), inset 0 0 70px rgba(0,0,0,0.65); overflow: hidden; }
.ne-map::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none; box-shadow: inset 0 0 0 1px rgba(232,180,90,0.07); }
.ne-map svg { width: 100%; height: auto; display: block; position: relative; z-index: 1; }
.ne-map .st { fill: rgba(247,239,226,0.045); stroke: rgba(232,180,90,0.34); stroke-width: 1.4; transition: fill .35s ease, stroke .35s ease, filter .35s ease; cursor: pointer; }
.ne-map .st:hover, .ne-map .st.on { fill: url(#gfhFire); stroke: var(--gold-2); stroke-width: 1.9; filter: drop-shadow(0 0 7px rgba(255,122,46,0.85)); }
.ne-map .st-label { fill: rgba(247,239,226,0.72); font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; pointer-events: none; text-anchor: middle; transition: fill .3s; }
.ne-map .st:hover + .st-label, .ne-map .st.on + .st-label { fill: #fff; }
.ne-map .pin { pointer-events: none; }
.ne-map .pin .core { fill: #ff7a2e; stroke: #fff2e0; stroke-width: 0.6; }
.ne-map .pin .pulse { fill: rgba(255,90,31,0.55); transform-box: fill-box; transform-origin: center; animation: pinPulse 2.4s cubic-bezier(.2,.7,.3,1) infinite; }
@keyframes pinPulse { 0% { transform: scale(0.5); opacity: 0.7; } 70% { transform: scale(2.9); opacity: 0; } 100% { transform: scale(2.9); opacity: 0; } }

.map-side { display: flex; flex-direction: column; gap: 10px; }
.map-legend { display: flex; flex-direction: column; gap: 10px; }
.map-region { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 18px; border-radius: 14px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)); cursor: pointer; overflow: hidden; transition: border-color .25s, transform .25s, box-shadow .25s; }
.map-region::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(226,59,23,0.18), rgba(255,138,61,0.07) 60%, transparent); opacity: 0; transition: opacity .3s; }
.map-region > * { position: relative; z-index: 1; }
.map-region:hover, .map-region.on { border-color: rgba(232,180,90,0.6); transform: translateX(5px); box-shadow: 0 0 0 1px rgba(232,180,90,0.25), 0 16px 36px -22px rgba(226,59,23,0.75); }
.map-region:hover::before, .map-region.on::before { opacity: 1; }
.mr-name { display: block; font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: 1.18rem; line-height: 1.04; color: var(--cream-txt); letter-spacing: 0.02em; }
.mr-sub { display: block; margin-top: 4px; font-size: 0.82rem; color: var(--muted); line-height: 1.3; }
.map-region .mr-arrow { color: var(--gold-2); font-size: 1.25rem; flex-shrink: 0; transition: transform .3s; }
.map-region:hover .mr-arrow, .map-region.on .mr-arrow { transform: translateX(6px); }
.light .map-region { background: var(--paper); border-color: rgba(30,20,12,0.1); }
.light .mr-name { color: var(--ink); }
.light .mr-sub { color: var(--ink-soft); }

.map-notice { margin-top: 6px; display: flex; gap: 13px; align-items: flex-start; padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(232,180,90,0.28); background: rgba(232,180,90,0.06); }
.map-notice .mn-ic { flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--fire-soft); border: 1px solid rgba(255,138,61,0.3); font-size: 1.05rem; }
.map-notice .mn-k { font-family: var(--font-body); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; color: var(--gold-2); }
.map-notice p { font-size: 0.85rem; color: var(--muted); margin-top: 3px; }
.map-note { margin-top: 16px; font-size: 0.88rem; color: var(--muted); }
@media (prefers-reduced-motion: reduce){ .ne-map .pin .pulse { animation: none; opacity: 0.35; } }

/* ---------- Testimonials carousel ---------- */
.tcarousel { position: relative; max-width: 860px; margin: 48px auto 0; }
.tviewport { overflow: hidden; border-radius: var(--radius); }
.ttrack { display: flex; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.tslide { min-width: 100%; padding: 42px 34px; text-align: center; }
.tstars { color: var(--gold-2); letter-spacing: 3px; font-size: 1.1rem; }
.tquote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.5; color: var(--cream-txt); margin: 18px auto 0; max-width: 680px; }
.light .tquote { color: var(--ink); }
.tauthor { margin-top: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; color: var(--gold-2); }
.tmeta { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.tnav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.tbtn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255,255,255,0.04); color: var(--cream-txt); cursor: pointer; font-size: 1.2rem; transition: border-color .2s, color .2s; }
.light .tbtn { border-color: rgba(30,20,12,0.18); color: var(--ink); background: rgba(0,0,0,0.03); }
.tbtn:hover { border-color: var(--gold); color: var(--gold-2); }
.tdots { display: flex; gap: 8px; }
.tdot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(232,180,90,0.3); cursor: pointer; padding: 0; }
.tdot.on { background: var(--ember); width: 24px; border-radius: 999px; }
.placeholder-note { font-size: 0.78rem; color: var(--muted-2); margin-top: 22px; text-align: center; }

/* ---------- Gallery / mosaic ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 8px 0 36px; }
.filter-btn { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.76rem; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); color: var(--muted); cursor: pointer; transition: all .2s; }
.filter-btn:hover { color: var(--gold-2); border-color: rgba(232,180,90,0.5); }
.filter-btn.active { background: var(--fire); color: #241206; border-color: transparent; }
.masonry { column-count: 2; column-gap: 14px; }
@media (min-width: 768px){ .masonry { column-count: 3; } }
@media (min-width: 1100px){ .masonry { column-count: 4; } }
.tile { break-inside: avoid; margin-bottom: 14px; position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; background: var(--char); }
.tile img, .tile video { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.tile:hover img, .tile:hover video { transform: scale(1.07); }
.tile .cat { position: absolute; left: 10px; bottom: 10px; z-index: 3; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-2); background: rgba(12,10,9,0.66); border: 1px solid var(--line-2); padding: 4px 9px; border-radius: 999px; opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s; }
.tile:hover .cat { opacity: 1; transform: none; }
.tile .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.18); }
.tile .play span { width: 48px; height: 48px; border-radius: 50%; background: var(--fire); color: #241206; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: 0 8px 24px -6px rgba(255,90,31,0.7); }

/* home mosaic (fixed rows, feature first) */
.mosaic { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 44px; grid-auto-rows: 150px; }
@media (min-width: 760px){ .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; } }
.mosaic a { position: relative; overflow: hidden; border-radius: 14px; border: 1px solid var(--line); display: block; }
.mosaic a img, .mosaic a video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mosaic a:hover img, .mosaic a:hover video { transform: scale(1.08); }
.mosaic a .cat { position: absolute; left: 10px; bottom: 10px; z-index: 3; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-2); background: rgba(12,10,9,0.66); border: 1px solid var(--line-2); padding: 4px 9px; border-radius: 999px; opacity: 0; transition: opacity .25s; }
.mosaic a:hover .cat { opacity: 1; }
.mosaic a { min-height: 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,0.93); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img, .lightbox video { max-width: 92vw; max-height: 86vh; border-radius: 10px; }
.lightbox .close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255,255,255,0.12); color: #fff; font-size: 1.5rem; cursor: pointer; }
.lightbox .close:hover { background: rgba(255,255,255,0.22); }

/* ---------- Forms ---------- */
.form-card { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)); border-radius: var(--radius); padding: 30px; }
.light .form-card { background: var(--paper); border-color: rgba(30,20,12,0.1); box-shadow: var(--shadow-soft); }
.field { margin-bottom: 17px; }
.field label { display: block; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.74rem; color: var(--gold-2); margin-bottom: 7px; }
.light .field label { color: #a5541f; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(0,0,0,0.32); border: 1px solid var(--line-2); border-radius: 11px;
  color: var(--cream-txt); padding: 13px 15px; font-size: 1rem; font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s;
}
.light .field input, .light .field select, .light .field textarea { background: #fff; border-color: rgba(30,20,12,0.16); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(232,180,90,0.16); }
.field input[type="date"], .field input[type="time"], .field select { cursor: pointer; }
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(0.85); opacity: 0.8; cursor: pointer; }
.light .field input[type="date"]::-webkit-calendar-picker-indicator,
.light .field input[type="time"]::-webkit-calendar-picker-indicator { filter: none; }
.field textarea { min-height: 118px; resize: vertical; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 600px){ .field-row { grid-template-columns: 1fr 1fr; } }
.checks { display: grid; gap: 9px; grid-template-columns: 1fr 1fr; }
.checks label { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 400; text-transform: none; color: var(--cream-txt); font-size: 0.95rem; letter-spacing: 0; margin: 0; }
.light .checks label { color: var(--ink); }
.checks input { width: auto; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.dropzone { border: 2px dashed rgba(232,180,90,0.45); border-radius: 14px; padding: 34px 20px; text-align: center; cursor: pointer; transition: background .2s, border-color .2s; }
.dropzone:hover, .dropzone.drag { background: rgba(232,180,90,0.07); border-color: var(--gold); }
.dropzone .dz-icon { font-size: 2rem; }
.file-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.file-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 12px; font-size: 0.82rem; }
.light .file-chip { background: rgba(30,20,12,0.05); border-color: rgba(30,20,12,0.14); }
.file-chip button { background: none; border: none; color: var(--red); cursor: pointer; font-size: 1rem; }
.progress { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.12); overflow: hidden; margin-top: 14px; display: none; }
.progress.show { display: block; }
.progress > div { height: 100%; width: 0; background: var(--fire); transition: width .2s; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 10px; }
.light .form-note { color: var(--ink-soft); }
.form-msg { margin-top: 14px; padding: 14px 16px; border-radius: 11px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: rgba(16,185,129,0.14); border: 1px solid rgba(16,185,129,0.4); color: #34d399; }
.form-msg.err { background: rgba(239,68,68,0.14); border: 1px solid rgba(239,68,68,0.4); color: #f87171; }

/* ---------- Book Now layout ---------- */
.book-layout { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 1000px){ .book-layout { grid-template-columns: 1.55fr 1fr; align-items: start; } }
.book-summary { position: sticky; top: 100px; }
.summary-card { border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-dark); }
.summary-card .sc-head { background: var(--fire); color: #241206; padding: 22px 24px; }
.summary-card .sc-head h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: 1.5rem; color: #241206; }
.summary-card .sc-head p { color: #3a1c08; font-size: 0.86rem; font-weight: 600; }
.summary-card .sc-body { background: var(--char-2); padding: 22px 24px; }
.sc-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.sc-row:last-of-type { border-bottom: none; }
.sc-row .k { color: var(--muted); font-size: 0.86rem; }
.sc-row .v { font-weight: 700; color: var(--cream-txt); text-align: right; }
.sc-est { margin-top: 14px; padding-top: 16px; border-top: 1px dashed var(--line-2); display: flex; justify-content: space-between; align-items: baseline; }
.sc-est .lbl { font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; color: var(--muted); }
.sc-est .amt { font-family: var(--font-display); font-size: 2rem; color: var(--gold-2); }
.trust-points { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.trust-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.trust-points li::before { content: "✓"; color: var(--ember); font-weight: 800; }

/* ---------- Contact cards ---------- */
.contact-cards { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 560px){ .contact-cards { grid-template-columns: 1fr 1fr; } }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; background: rgba(255,255,255,0.03); }
.contact-card .cc-ic { font-size: 1.5rem; }
.contact-card .cc-k { font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; color: var(--gold-2); margin-top: 10px; }
.contact-card .cc-v { font-size: 1.05rem; color: var(--cream-txt); margin-top: 3px; }
.contact-card a.cc-v:hover { color: var(--gold-2); }

/* ---------- Calculator ---------- */
.calc-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.light .calc-row { border-color: rgba(30,20,12,0.12); }
.calc-row label { font-weight: 700; }
.calc-row small { display: block; color: var(--muted); font-weight: 400; font-size: 0.8rem; }
.light .calc-row small { color: var(--ink-soft); }
.stepper { display: inline-flex; align-items: center; gap: 8px; }
.stepper button { width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.05); color: var(--cream-txt); font-size: 1.2rem; cursor: pointer; }
.light .stepper button { border-color: rgba(30,20,12,0.16); background: rgba(30,20,12,0.03); color: var(--ink); }
.stepper button:hover { border-color: var(--gold); color: var(--gold-2); }
.stepper input { width: 56px; text-align: center; background: transparent; border: none; color: inherit; font-family: var(--font-display); font-size: 1.35rem; }
.calc-total { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold-2); }
.light .calc-total { color: #a5541f; }

/* ---------- Service area cards ---------- */
.area-card { position: relative; overflow: hidden; }
.area-abbr { position: absolute; top: -14px; right: -4px; font-family: var(--font-display); font-size: 5.6rem; color: rgba(255,255,255,0.05); pointer-events: none; }
.area-card:hover .area-abbr { color: rgba(255,138,61,0.12); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip { border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); border-radius: 999px; padding: 5px 12px; font-size: 11px; color: var(--muted); }
.light .chip { border-color: rgba(30,20,12,0.14); color: var(--ink-soft); }
.fee-box { margin-top: 18px; border: 1px solid rgba(232,180,90,0.25); background: rgba(232,180,90,0.06); border-radius: 12px; padding: 13px 15px; }
.fee-box .lbl { font-family: var(--font-body); font-weight: 800; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-2); }
.light .fee-box .lbl { color: #a5541f; }
.fee-box p { font-size: 0.84rem; color: var(--muted); margin-top: 4px; }
.light .fee-box p { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,0.03); margin-bottom: 12px; overflow: hidden; }
.light .faq-item { background: var(--paper); border-color: rgba(30,20,12,0.1); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--cream-txt); font-family: var(--font-body); font-weight: 700; font-size: 1.04rem; padding: 19px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.light .faq-q { color: var(--ink); }
.faq-q .plus { color: var(--gold-2); font-size: 1.5rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 19px; color: var(--muted); }
.light .faq-a p { color: var(--ink-soft); }

/* ---------- Info sidebar / timeline ---------- */
.info-card { border: 1px solid var(--line); background: rgba(255,255,255,0.03); border-radius: var(--radius); padding: 26px; }
.info-card .row { padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-card .row:last-child { border-bottom: none; }
.info-card .k { font-family: var(--font-body); font-weight: 800; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.16em; color: var(--gold-2); }
.info-card .v { font-size: 1.05rem; color: var(--cream-txt); margin-top: 3px; }
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content:""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: var(--fire); }
.tl-item { position: relative; padding: 0 0 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content:""; position: absolute; left: -28px; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 4px rgba(226,59,23,0.22); }
.tl-item h4 { font-weight: 800; color: var(--cream-txt); font-size: 1.05rem; }
.light .tl-item h4 { color: var(--ink); }
.tl-item p { color: var(--muted); font-size: 0.92rem; }
.light .tl-item p { color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; padding: 100px 0; text-align: center; background: var(--char); }
.cta-band .smoke { position: absolute; inset: 0; background-image: var(--smoke); }
.cta-band canvas.embers { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.7; }
.cta-band .inner { position: relative; z-index: 2; }
.cta-band h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.1rem, 5.4vw, 4rem); color: var(--cream-txt); max-width: 820px; margin: 0 auto; line-height: 0.96; text-wrap: balance; }
/* strong color CTA variant */
.cta-color { background: var(--fire); }
.cta-color .smoke { background-image: radial-gradient(900px 500px at 50% 120%, rgba(0,0,0,0.4), transparent 60%); mix-blend-mode: multiply; }
.cta-color h2, .cta-color p { color: #241206 !important; }
.cta-color .btn-primary { background: #1a1310; color: var(--cream); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6); }
.cta-color .btn-primary:hover { background: #241a14; }
.cta-color .btn-secondary { border-color: rgba(36,18,6,0.55); color: #241206; }
.cta-color .btn-secondary:hover { background: rgba(36,18,6,0.08); }
.cta-color .btn-ghost { border-color: rgba(36,18,6,0.4); color: #241206; background: rgba(255,255,255,0.14); }

/* ---------- Footer ---------- */
.site-footer { position: relative; border-top: 1px solid var(--line); background: var(--night-2); }
.site-footer::before { content:""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--fire); }
.footer-grid { display: grid; gap: 40px; padding: 66px 0; grid-template-columns: 1fr; }
@media (min-width: 768px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer-grid h3 { font-family: var(--font-body); font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; color: var(--gold-2); margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--muted); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .fb-inner { display: flex; flex-direction: column; gap: 8px; padding: 22px 0; font-size: 0.78rem; color: var(--muted-2); text-align: center; }
@media (min-width: 640px){ .footer-bottom .fb-inner { flex-direction: row; justify-content: space-between; text-align: left; } }

/* ---------- Floating contact ---------- */
.floating { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.floating a, .floating button { width: 56px; height: 56px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; box-shadow: 0 12px 30px -8px rgba(0,0,0,0.65), 0 0 0 2px rgba(255,255,255,0.08); transition: transform .2s; }
.floating a:hover, .floating button:hover { transform: scale(1.1); }
.fc-call { background: var(--fire); color: #241206; }
.fc-sms { background: #2f6df0; }
.fc-toggle { background: var(--flame); }
.fc-toggle.open { background: #f26d3b; }
.floating .fc-item { transition: opacity .2s, transform .2s; }
.floating.collapsed .fc-item { display: none; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

.two-col { display: grid; gap: 34px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px){ .two-col { grid-template-columns: 1fr 1fr; } }
.contact-cols { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 992px){ .contact-cols { grid-template-columns: 1.5fr 1fr; } }
.rounded-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 640px){ .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px){ .grid-3 { grid-template-columns: 1fr 1fr 1fr; } .grid-4 { grid-template-columns: repeat(4,1fr); } }
.step-num { font-family: var(--font-display); font-size: 3rem; color: rgba(255,138,61,0.4); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 128px 0 46px; background: var(--night); background-image: var(--smoke); text-align: center; overflow: hidden; }
@media (min-width: 768px){ .page-hero { padding: 160px 0 56px; } }
.page-hero.with-photo { padding: 150px 0 60px; }
.page-hero.with-photo .ph-bg { position: absolute; inset: 0; }
.page-hero.with-photo .ph-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.page-hero.with-photo .ph-bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,10,9,0.34), rgba(12,10,9,0.5) 55%, var(--night)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.5rem, 6.4vw, 4.4rem); color: var(--cream-txt); line-height: 0.95; text-wrap: balance; margin-top: 6px; }
.page-hero p { color: var(--muted); max-width: 660px; margin: 20px auto 0; font-size: 1.06rem; }
.breadcrumbs { font-size: 0.8rem; color: var(--muted-2); margin-bottom: 16px; }
.breadcrumbs a:hover { color: var(--gold-2); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-bg img, .hero-bg video { animation: none; transform: none; }
}
