/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --fire:       #FF5722;
  --fire-hi:    #FF7043;
  --gold:       #FFA726;
  --ember:      #BF360C;
  --cold:       #78909C;
  --cold-light: #B0BEC5;
  --cold-bg:    #ECEFF1;

  --dark-0:     #1A0F07;
  --dark-1:     #221409;
  --dark-2:     #2C1B0E;
  --dark-3:     #381F10;

  --cream-0:    #FFFCF7;
  --cream-1:    #FAF5EE;
  --cream-2:    #F2E9DC;
  --cream-3:    #E8DDD0;

  --text-light: #F5EEE4;
  --text-dark:  #1A1510;
  --muted-light: rgba(245,238,228,0.5);
  --muted-dark:  rgba(26,21,16,0.55);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', system-ui, sans-serif;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  animation: page-in .35s ease-out both;
}

@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

h1, h2, h3, h4 {
  font-family: 'Jost', system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s cubic-bezier(.23,1,.32,1), transform .75s cubic-bezier(.23,1,.32,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .75s cubic-bezier(.23,1,.32,1), transform .75s cubic-bezier(.23,1,.32,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .75s cubic-bezier(.23,1,.32,1), transform .75s cubic-bezier(.23,1,.32,1);
}
.reveal.in, .reveal-left.in, .reveal-right.in {
  opacity: 1;
  transform: translate(0,0);
}
.d1 { transition-delay: .1s !important; }
.d2 { transition-delay: .2s !important; }
.d3 { transition-delay: .3s !important; }
.d4 { transition-delay: .4s !important; }
.d5 { transition-delay: .5s !important; }
.d6 { transition-delay: .6s !important; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: .9rem 2.2rem;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s cubic-bezier(.23,1,.32,1), background .35s cubic-bezier(.23,1,.32,1), color .35s cubic-bezier(.23,1,.32,1), border-color .35s cubic-bezier(.23,1,.32,1);
  position: relative;
  will-change: transform;
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: .88rem; }
.btn:active { transform: scale(0.97); transition: transform 100ms ease-out; }

.btn-fire {
  background: linear-gradient(140deg, var(--fire) 0%, #FF8C5A 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255,87,34,.5), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-fire:hover {
  box-shadow: 0 14px 48px rgba(255,87,34,.7), inset 0 1px 0 rgba(255,255,255,.15);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(245,238,228,.28);
}
.btn-ghost:hover {
  border-color: var(--fire);
  color: var(--fire);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(26,21,16,.2);
}
.btn-ghost-dark:hover {
  border-color: var(--fire);
  color: var(--fire);
  transform: translateY(-2px);
}

.btn-ember {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 8px 32px rgba(191,54,12,.4), inset 0 1px 0 rgba(255,255,255,.1);
}
.btn-ember:hover {
  box-shadow: 0 14px 48px rgba(191,54,12,.6), inset 0 1px 0 rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--fire);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-ghost-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5vw;
  transition: padding .4s ease, background .4s ease, backdrop-filter .4s ease;
}
#nav.scrolled {
  background: rgba(15,13,10,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .9rem 5vw;
  border-bottom: 1px solid rgba(255,87,34,.08);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; cursor: pointer; }
.nav-logo-text {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(245,238,228,.55);
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--fire); }

.nav-book {
  background: transparent;
  border: 1.5px solid rgba(255,87,34,.55);
  color: var(--fire-hi);
  padding: .48rem 1.4rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
}
.nav-book:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
  box-shadow: 0 0 24px rgba(255,87,34,.5);
}

/* Hamburger button (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  margin-left: .5rem;
  transition: background .2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(255,87,34,.1); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .3s cubic-bezier(.23,1,.32,1), opacity .25s ease;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 490;
  background: rgba(15,13,10,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 70px 5vw 1.75rem;
  border-bottom: 1px solid rgba(255,87,34,.14);
}
.mobile-menu.open {
  display: block;
  animation: menu-in .3s cubic-bezier(.23,1,.32,1);
}
@keyframes menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu-links {
  list-style: none;
  padding: 0; margin: 0;
}
.mobile-menu-links li { border-bottom: 1px solid rgba(245,238,228,.07); }
.mobile-menu-links li:first-child { border-top: 1px solid rgba(245,238,228,.07); }
.mobile-menu-links a {
  display: block;
  padding: .9rem 0;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(245,238,228,.75);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.mobile-menu-links a:hover, .mobile-menu-links a.active { color: var(--fire); padding-left: .35rem; }

/* ═══════════════════════════════════════════
   EYEBROW
═══════════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--fire);
  margin-bottom: .9rem;
}

/* Eyebrow with line (hero variant) */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: hero-up .8s cubic-bezier(.23,1,.32,1) .15s forwards;
}
.eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--fire);
}
.hero-eyebrow span {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--fire);
}

/* ═══════════════════════════════════════════
   HERO PARTICLES
═══════════════════════════════════════════ */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; }
.hp { position: absolute; border-radius: 50%; animation: fp var(--d, 5s) ease-in-out infinite; animation-delay: var(--del, 0s); }
.hp.fire { background: radial-gradient(circle, rgba(255,87,34,.85) 0%, rgba(255,87,34,0) 70%); }
.hp.gold { background: radial-gradient(circle, rgba(255,167,38,.85) 0%, rgba(255,167,38,0) 70%); }
@keyframes fp {
  0%, 100% { transform: translateY(0) scale(1); opacity: .22; }
  50% { transform: translateY(-26px) scale(1.25); opacity: .65; }
}

/* ═══════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════ */
#marquee {
  background: var(--fire);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.m-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0 1.4rem;
  white-space: nowrap;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.88);
}
.m-dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

/* ═══════════════════════════════════════════
   PULL QUOTE (shared classes)
═══════════════════════════════════════════ */
.pq-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.pq-open {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 5.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: -1.5rem;
  opacity: .65;
}
.pq-text {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
.pq-text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pq-attr {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted-light);
}
.pq-attr strong { color: var(--text-light); }

/* ═══════════════════════════════════════════
   TESTIMONIALS (shared card styles)
═══════════════════════════════════════════ */
.testimonials-header {
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
}
.testimonials-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--text-dark);
  margin: .8rem 0;
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.t-card {
  background: #fff;
  border: 1px solid rgba(26,21,16,.07);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(26,21,16,.06);
  transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s cubic-bezier(.23,1,.32,1), border-color .4s cubic-bezier(.23,1,.32,1);
  position: relative;
  overflow: hidden;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(26,21,16,.12);
  border-color: rgba(255,87,34,.2);
}
.t-card::after {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 2.5px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  opacity: 0;
  transition: opacity .35s;
}
.t-card:hover::after { opacity: 1; }
.t-q-mark {
  font-family: 'Jost', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: .5rem;
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .45;
}
.t-text {
  font-size: .9rem;
  font-style: italic;
  color: rgba(26,21,16,.65);
  line-height: 1.82;
  margin-bottom: 1.75rem;
}
.t-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26,21,16,.07);
}
.t-ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.t-name { font-size: .9rem; font-weight: 600; color: var(--text-dark); display: block; }
.t-role { font-size: .75rem; color: var(--muted-dark); }

/* ═══════════════════════════════════════════
   CTA FIRE BANNER
═══════════════════════════════════════════ */
#cta-fire {
  background: linear-gradient(135deg, #C0390B 0%, var(--fire) 45%, #FF8C5A 100%);
  padding: 6.5rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-fire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
#cta-fire::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  opacity: .06;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.cta-inner h2 em { font-style: italic; }
.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   BOOKING FORM (shared components)
═══════════════════════════════════════════ */
.booking-inner { max-width: 720px; margin: 0 auto; }
.booking-header { text-align: center; margin-bottom: 3rem; }
.booking-header h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: var(--text-dark);
  margin: .8rem 0 1rem;
}
.booking-header p {
  font-size: .975rem;
  color: var(--muted-dark);
  line-height: 1.7;
}
.urgency-bar {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: rgba(255,87,34,.08);
  border: 1px solid rgba(255,87,34,.2);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: .85rem;
  color: rgba(191,54,12,.9);
  line-height: 1.5;
}
.form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .4rem; }
.fg label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(26,21,16,.55);
}
.fg input, .fg select, .fg textarea {
  background: #fff;
  border: 1.5px solid rgba(26,21,16,.12);
  border-radius: var(--r-sm);
  padding: .82rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none;
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(255,87,34,.1);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(26,21,16,.3); }
.fg textarea { resize: vertical; min-height: 115px; }
.form-foot { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.form-foot .btn { width: 100%; text-align: center; padding: 1.1rem; font-size: .95rem; }
.form-note { font-size: .75rem; color: var(--muted-dark); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--dark-0);
  padding: 4.5rem 5vw 2rem;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.footer-brand-name {
  font-family: 'Jost', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: .7rem;
}
.footer-brand p {
  font-size: .875rem;
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.4rem;
}
.f-socials { display: flex; gap: .5rem; }
.f-soc {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,238,228,.55);
  text-decoration: none;
  font-size: .75rem; font-weight: 700;
  transition: all .25s;
  cursor: pointer;
}
.f-soc:hover { background: var(--fire); border-color: var(--fire); color: #fff; }
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(245,238,228,.28);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(245,238,228,.45);
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}
.footer-col ul li a:hover { color: var(--fire); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .73rem; color: rgba(245,238,228,.22); }

/* ═══════════════════════════════════════════
   STATS SECTION HEADER
═══════════════════════════════════════════ */
.stats-header { text-align: center; margin-bottom: 4rem; }
.stats-header h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); color: var(--text-light); margin: .8rem 0 1rem; }
.stats-header h2 em { font-style: italic; color: var(--fire); }
.stats-header p { font-size: .975rem; color: var(--muted-light); line-height: 1.75; max-width: 600px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   SHARED KEYFRAMES
═══════════════════════════════════════════ */
@keyframes hero-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — NAV COLLAPSE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  #nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-2 { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════
   GALLERY ITEM — shared .gi styles (homepage strip + /gallery page)
═══════════════════════════════════════════ */
.gi {
  position: relative;
  overflow: hidden;
  background: #181818;
  cursor: zoom-in;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 700ms cubic-bezier(0.23, 1, 0.32, 1);
}
.gi.in { clip-path: inset(0 0 0% 0); }

/* Shimmer skeleton */
.gi::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.045) 50%, transparent 65%);
  background-size: 250% 100%;
  animation: gi-shimmer 1.6s linear infinite;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.gi.img-loaded::before { opacity: 0; animation: none; }
@keyframes gi-shimmer {
  from { background-position: 250% 0; }
  to   { background-position: -250% 0; }
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease, transform .65s cubic-bezier(.23,1,.32,1);
}
.gi.img-loaded img { opacity: 1; }

/* Fire gradient + zoom on hover */
.gi::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,87,34,.55) 0%, rgba(0,0,0,.2) 45%, transparent 75%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .gi:hover img  { transform: scale(1.07); }
  .gi:hover::after { opacity: 1; }
}

/* Caption overlay */
.gi-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .8rem 1rem .65rem;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  z-index: 5;
}
.gi:hover .gi-caption { opacity: 1; transform: translateY(0); }
.gic-type {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--fire);
  margin-bottom: .15rem;
}
.gic-meta {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  letter-spacing: .03em;
}

/* Lightbox */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lb-overlay.open { display: flex; animation: lb-fade .2s ease; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lb-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  cursor: default;
  animation: lb-scale .22s cubic-bezier(.23,1,.32,1);
}
@keyframes lb-scale { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.22); }

/* ═══════════════════════════════════════════
   TEMPERATURE DIAL  (shared across pages)
═══════════════════════════════════════════ */
.temp-dial {
  display: flex;
  align-items: center;
  gap: .875rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.td-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-light);
  flex-shrink: 0;
}
.td-track {
  position: relative;
  width: 160px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--cold), var(--fire));
  flex-shrink: 0;
}
.td-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 8px rgba(255,87,34,.7);
  animation: tempOscillate 4s ease-in-out infinite;
}
@keyframes tempOscillate {
  0%, 100% { left: calc(80% - 5px); background: var(--fire); box-shadow: 0 0 8px rgba(255,87,34,.7); }
  50%       { left: calc(12% - 5px); background: var(--cold); box-shadow: 0 0 8px rgba(120,144,156,.7); }
}

/* Booking variant — dot stays near the hot end, pulses warmly */
.td-dot.td-dot-hot {
  animation: tempHot 3s ease-in-out infinite;
}
@keyframes tempHot {
  0%, 100% { left: calc(87% - 5px); background: var(--fire); box-shadow: 0 0 14px rgba(255,87,34,.9); }
  50%       { left: calc(73% - 5px); background: var(--gold); box-shadow: 0 0 8px rgba(255,167,38,.65); }
}

/* ═══════════════════════════════════════════
   TOUCH DEVICE — DISABLE HOVER TRANSFORMS
   Prevents sticky elevated state on tap
═══════════════════════════════════════════ */
@media (hover: none) {
  .btn:hover,
  .btn-fire:hover,
  .btn-ghost:hover,
  .btn-ghost-dark:hover,
  .btn-white:hover,
  .btn-ghost-white:hover {
    transform: none;
  }
  .t-card:hover {
    transform: none;
    box-shadow: 0 4px 24px rgba(26,21,16,.06);
    border-color: rgba(26,21,16,.07);
  }
  .t-card:hover::after { opacity: 0; }
  .nav-book:hover { background: transparent; box-shadow: none; }
}
