/* ══════════════════════════════════════════════════════════════
   MODALIKA — styles.css  v8
   Fonts | Variables | Reset | Animations | Desktop Topbar
   Nav | Mobile Header | Pages | Dot Nav | Scroll Hint
   Home | Services | Contact | Booking | Order Tracker
   Opening Badge | Mobile Order Popup
   Desktop Overrides (min-width: 769px)
   Mobile Overrides  (max-width: 768px)
══════════════════════════════════════════════════════════════ */


/* ── FONTS ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Goatjump';
  src: url('fonts/font02.woff2') format('woff2');
  font-display: swap;
}


/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:  #1c1a1a;
  --navy2: #252220;
  --cream: #f7f3ee;
  --burg:  #7a2535;
  --burg2: #5c1a27;
  --gold:  #b8975a;
}


/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  width: 100%; height: 100%; overflow: hidden;
  background: var(--navy);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}
@keyframes pulse-open {
  0%   { opacity: 1; transform: scale(1);    box-shadow: 0 0 0 0 rgba(76,175,80,0.7); }
  50%  { opacity: 0.3; transform: scale(0.85); box-shadow: 0 0 0 6px rgba(76,175,80,0); }
  100% { opacity: 1; transform: scale(1);    box-shadow: 0 0 0 0 rgba(76,175,80,0); }
}
@keyframes statusFlash {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes blink-green {
  0%   { color: #000000; }
  30%  { color: #00ff66; }
  60%  { color: #00ff66; }
  90%  { color: #000000; }
  100% { color: #000000; }
}
.order-submit.typing,
.msh-order-btn.typing {
  animation: blink-green 1.4s ease-in-out infinite;
}
.status-pulse { animation: pulse-open 1.4s ease-in-out infinite !important; }
.status-flash { animation: statusFlash 2.5s ease-in-out infinite; }


/* ── DESKTOP TOPBAR ────────────────────────────────────────── */
#desktop-topbar { display: none; }


/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%; height: 76px;
  background: rgba(28,26,26,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122,37,53,0.25);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 62px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(247,243,238,0.5); text-decoration: none;
  font-weight: 400; padding: 4px 0;
  border-bottom: 1px solid transparent; transition: all 0.3s;
}
.nav-links a:hover { color: var(--cream); border-bottom-color: rgba(122,37,53,0.4); }
.nav-links a.active-link { color: var(--cream); border-bottom-color: var(--burg); }
.nav-cta {
  background: var(--burg) !important; color: var(--cream) !important;
  padding: 9px 22px !important; border-bottom: none !important;
}
.nav-cta:hover { background: var(--burg2) !important; }


/* ── MOBILE SPLIT HEADER ───────────────────────────────────── */
#splitHeader {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; height: 44px;
  z-index: 9999; flex-direction: row;
}
.msh-book {
  flex: 1; background: var(--burg); border: none;
  border-right: 1px solid rgba(247,243,238,0.2);
  color: var(--cream); font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  cursor: pointer; padding: 0 12px;
}
.msh-order {
  flex: 1; display: flex; align-items: center;
  background: rgba(28,26,26,0.95); padding: 0 10px; gap: 6px;
}
.msh-order input {
  flex: 1; background: transparent; border: none; outline: none;
  color: rgba(247,243,238,0.9); font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; text-align: center; padding: 4px 0;
}
.msh-order input::placeholder { color: rgba(247,243,238,0.65); text-align: center; }
.msh-order-btn {
  background: none; border: none; color: var(--cream);
  font-size: 20px; cursor: pointer; padding: 0 8px;
  font-weight: 700; flex-shrink: 0;
}

/* Mobile order result popup */
#msh-result-popup {
  display: none; position: fixed; top: 54px; left: 16px; right: 16px;
  z-index: 999; background: rgba(28,26,26,0.97);
  border: 1px solid rgba(122,37,53,0.5);
  padding: 20px 18px; text-align: center; backdrop-filter: blur(10px);
}
#msh-result-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cream); margin-bottom: 8px;
}
#msh-result-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; letter-spacing: 1px; color: rgba(247,243,238,0.5);
}
.msh-close-btn {
  margin-top: 14px; background: none;
  border: 1px solid rgba(122,37,53,0.4); color: rgba(247,243,238,0.4);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; cursor: pointer;
}


/* ── PAGES ─────────────────────────────────────────────────── */
.pages { position: fixed; top: 76px; left: 0; right: 0; bottom: 0; transition: filter 0.3s; }
.pages.blurred { filter: blur(6px); }
.page { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity 0.9s ease; }
.page.active { opacity: 1; pointer-events: all; }


/* ── DOT NAV ───────────────────────────────────────────────── */
.dot-nav {
  position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
  z-index: 99; display: flex; flex-direction: column; gap: 12px;
}
.dot {
  width: 6px; height: 6px; border: 1px solid rgba(247,243,238,0.3);
  border-radius: 50%; cursor: pointer; transition: all 0.3s; background: transparent;
}
.dot.active { background: var(--burg); border-color: var(--burg); transform: scale(1.4); }


/* ── SCROLL HINT ───────────────────────────────────────────── */
.scroll-hint {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 99; font-family: 'Source Sans 3', sans-serif;
  font-size: 9px; letter-spacing: 4px; color: rgba(247,243,238,0.2);
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 30px;
  background: linear-gradient(to bottom, rgba(122,37,53,0.5), transparent);
  animation: pulse 2s ease-in-out infinite;
}


/* ══════════════════════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════════════════════ */
#page-home { position: absolute; inset: 0; background: var(--navy); }

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: right center;
  background-size: cover; background-repeat: no-repeat; background-position: right center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right,
    #1c1a1a 0%, #1c1a1a 20%,
    rgba(28,26,26,0.75) 32%, rgba(28,26,26,0.2) 42%, transparent 55%
  );
}
.home-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; padding: 0 6%; max-width: 52%;
}
.home-left { display: flex; flex-direction: column; }

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; letter-spacing: 5px; color: var(--burg);
  text-transform: uppercase; font-weight: 400;
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--burg); }

.home-headline {
  font-family: 'Goatjump', sans-serif;
  font-size: clamp(52px, 6.5vw, 90px);
  line-height: 1.0; text-transform: uppercase; color: var(--cream); margin-bottom: 24px;
}
.home-headline .accent { color: var(--burg); }

.info-strip {
  display: flex; gap: 32px; margin-top: 44px;
  padding-top: 26px; border-top: 1px solid rgba(247,243,238,0.08);
}
.info-item .val {
  font-family: 'Goatjump', sans-serif;
  font-size: 13px; color: var(--burg); text-transform: uppercase; letter-spacing: 1px;
}
.info-item .key {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; letter-spacing: 3px; color: rgba(247,243,238,0.3);
  text-transform: uppercase; margin-top: 4px; font-weight: 300;
}

/* Home page animations */
.page.active .home-left > * { animation: fadeUp 0.8s ease both; }
.page.active .eyebrow       { animation-delay: 0.1s; }
.page.active .home-headline { animation-delay: 0.2s; }
.page.active .info-strip    { animation-delay: 0.3s; }
.page.active .svc-item      { animation: fadeUp 0.7s ease both; }


/* ══════════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════════ */
#page-services { background: var(--navy); }
#page-services .hero-bg { background-position: 35% center; }

#svc-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right,
    rgba(28,26,26,0.95) 0%, rgba(28,26,26,0.95) 18%,
    rgba(28,26,26,0.60) 26%, rgba(28,26,26,0.20) 34%, transparent 42%
  );
}
#svc-bottom-fade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(28,26,26,0.3) 0%, transparent 20%);
}
#svc-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: flex-start; padding: 0 5%;
}
#svc-content-inner { max-width: 65%; width: 100%; }

#svc-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; letter-spacing: 5px; color: var(--burg);
  text-transform: uppercase; font-weight: 400;
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px; white-space: nowrap;
}
#svc-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--burg); flex-shrink: 0; }

#svc-headline {
  font-family: 'Goatjump', sans-serif;
  font-size: clamp(52px, 6.5vw, 90px);
  line-height: 1.0; text-transform: uppercase; color: var(--cream); margin-bottom: 24px;
}
#svc-list { display: flex; flex-direction: column; }

/* Service items — base */
.svc-item { padding: 3px 0; text-align: left; }
.svc-name {
  font-family: 'Goatjump', sans-serif;
  font-size: 13px; color: var(--burg); text-transform: uppercase; letter-spacing: 1px; line-height: 1.1;
}
.svc-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; letter-spacing: 3px; color: rgba(247,243,238,0.3);
  text-transform: uppercase; margin-top: 1px; font-weight: 300;
}
.svc-divider { width: 100%; height: 1px; background: rgba(247,243,238,0.07); }


/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
#page-contact .hero-bg { background-position: 20% center; }

#cnt-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; letter-spacing: 5px; color: var(--burg);
  text-transform: uppercase; font-weight: 400;
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
#cnt-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--burg); flex-shrink: 0; }

#contact-headline {
  font-family: 'Goatjump', sans-serif;
  font-size: clamp(52px, 6.5vw, 90px);
  line-height: 1.0; text-transform: uppercase; color: var(--cream); margin-bottom: 24px;
}
#contact-headline .accent { color: var(--burg); }

#cnt-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right,
    rgba(28,26,26,0.5) 0%, rgba(28,26,26,0.5) 50%,
    rgba(28,26,26,0.25) 68%, rgba(28,26,26,0.05) 85%, transparent 100%
  );
}
#cnt-bottom-fade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(28,26,26,0.3) 0%, transparent 20%);
}
#cnt-soft-col {
  position: absolute; top: 0; left: 0; bottom: 0; width: 60%; z-index: 2;
  background: linear-gradient(to right, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.18) 70%, transparent 100%);
}
#contact-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: flex-start; padding: 0 5%;
}
#contact-content > div { width: 100%; text-align: left; }
#cnt-details { display: flex; flex-direction: column; width: 100%; }

#cnt-vertical-label {
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%) rotate(90deg); transform-origin: center center; z-index: 3;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9px; letter-spacing: 5px; color: rgba(122,37,53,0.5);
  text-transform: uppercase; white-space: nowrap;
}


/* ══════════════════════════════════════════════════════════════
   BOOKING POPUP
══════════════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(14,12,12,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }

.popup-box {
  background: #1c1a1a; border: 1px solid rgba(122,37,53,0.4);
  width: 100%; max-width: 520px; padding: 44px 44px 36px;
  position: relative; transform: translateY(20px); transition: transform 0.4s ease;
  max-height: 90vh; overflow-y: auto;
}
.popup-overlay.open .popup-box { transform: translateY(0); }

.popup-close {
  position: absolute; top: 16px; right: 20px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; letter-spacing: 3px; color: rgba(247,243,238,0.3);
  cursor: pointer; text-transform: uppercase; background: none; border: none; transition: color 0.3s;
}
.popup-close:hover { color: var(--cream); }

.popup-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; letter-spacing: 5px; color: var(--burg);
  text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.popup-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--burg); }

.popup-title {
  font-family: 'Goatjump', sans-serif;
  font-size: 36px; color: var(--cream); text-transform: uppercase; line-height: 1.0; margin-bottom: 28px;
}
.popup-title span { color: var(--burg); }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block; font-family: 'Source Sans 3', sans-serif;
  font-size: 9px; letter-spacing: 3px; color: #a89e94;
  text-transform: uppercase; margin-bottom: 6px; font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 14px;
  background: #2a2826; border: 1px solid #3d3a37; color: var(--cream);
  font-family: 'Source Sans 3', sans-serif; font-size: 13px; font-weight: 300;
  outline: none; transition: border-color 0.3s; -webkit-appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(122,37,53,0.6); }
.form-field select option { background: #1c1a1a; color: var(--cream); }
.form-field textarea { resize: none; height: 80px; }
.form-field input[type="date"] { cursor: pointer; }

#form-error {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; color: #e57373; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 10px; display: none;
}
.popup-submit {
  width: 100%; padding: 14px; background: var(--burg); color: var(--cream);
  font-family: 'Source Sans 3', sans-serif; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600; border: none; cursor: pointer;
  margin-top: 8px; transition: background 0.3s;
}
.popup-submit:hover { background: var(--burg2); }
#btn-add-calendar { background: transparent !important; border: 1px solid var(--burg) !important; margin-top: 0 !important; }

.popup-confirm { display: none; text-align: center; }
.popup-confirm.show { display: block; }
.popup-form-wrap.hide { display: none; }

.confirm-icon { font-size: 32px; margin-bottom: 16px; color: var(--burg); }
.confirm-title { font-family: 'Goatjump', sans-serif; font-size: 28px; color: var(--cream); text-transform: uppercase; margin-bottom: 8px; }
.confirm-sub { font-family: 'Source Sans 3', sans-serif; font-size: 11px; letter-spacing: 2px; color: rgba(247,243,238,0.35); text-transform: uppercase; margin-bottom: 24px; }
.confirm-details { border: 1px solid rgba(122,37,53,0.25); padding: 20px; text-align: left; margin-bottom: 20px; }
.confirm-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(247,243,238,0.05); font-family: 'Source Sans 3', sans-serif; font-size: 11px; }
.confirm-row:last-child { border-bottom: none; }
.confirm-row .clabel { color: rgba(247,243,238,0.35); letter-spacing: 2px; text-transform: uppercase; }
.confirm-row .cval   { color: var(--cream); font-weight: 400; }

.edit-btn {
  width: 100%; padding: 12px; margin-bottom: 10px;
  background: transparent; color: var(--cream); font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 400; border: 1px solid rgba(247,243,238,0.15); cursor: pointer; transition: all 0.3s;
}
.edit-btn:hover { border-color: var(--burg); }


/* ══════════════════════════════════════════════════════════════
   ORDER TRACKER
══════════════════════════════════════════════════════════════ */
.order-tracker {
  position: fixed; top: 0; left: 4%; height: 76px; width: 210px;
  display: flex; align-items: center; z-index: 200;
}
.order-input-row {
  display: flex; align-items: center; width: 210px;
  border: 1px solid rgba(122,37,53,0.4);
  background: rgba(28,26,26,0.35); backdrop-filter: blur(2px); overflow: hidden;
}
.order-input {
  flex: 1; background: transparent; border: none; outline: none; padding: 9px 12px;
  font-family: 'Source Sans 3', sans-serif; font-size: 11px; letter-spacing: 2px;
  color: var(--cream); text-transform: uppercase;
}
.order-input::placeholder { color: rgba(247,243,238,0.75); font-size: 10px; letter-spacing: 2px; }
.order-submit {
  background: var(--burg); border: none; padding: 9px 12px; cursor: pointer;
  color: var(--cream); font-size: 13px; transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.order-submit:hover { background: var(--burg2); }

.order-result {
  position: fixed; top: 76px; left: 4%; width: 210px;
  border: 1px solid rgba(122,37,53,0.4); border-top: none;
  background: rgba(28,26,26,0.97); backdrop-filter: blur(8px);
  overflow: hidden; max-height: 0; transition: max-height 0.45s ease; z-index: 200;
}
.order-result.show { max-height: 120px; }
.order-battery { height: 6px; width: 100%; background: rgba(247,243,238,0.08); }
.order-battery-fill { height: 100%; transition: width 0.6s ease, background 0.6s ease; }
.order-status-text { padding: 12px 14px; font-family: 'Goatjump', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; line-height: 1.3; }
.order-status-sub { font-family: 'Source Sans 3', sans-serif; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(247,243,238,0.35); padding: 0 14px 12px; }


/* ══════════════════════════════════════════════════════════════
   OPENING BADGE
══════════════════════════════════════════════════════════════ */
.opening-badge {
  position: fixed; bottom: 32px; right: 48px; z-index: 3;
  border: 1px solid rgba(122,37,53,0.4); padding: 22px; text-align: center; width: 180px;
  background: rgba(28,26,26,0.6); backdrop-filter: blur(8px); text-decoration: none; display: block;
}
#location-badge img { width: auto; display: block; margin: 0 auto; opacity: 0.9; height: 70px; margin-bottom: 14px; }
#hours-status { margin-bottom: 8px; }
#status-dot { display: inline-block; border-radius: 50%; vertical-align: middle; width: 8px; height: 8px; margin-right: 6px; }
#status-text { font-family: 'Source Sans 3', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; }
#location-badge strong { font-family: 'Goatjump', sans-serif; color: var(--cream); text-transform: uppercase; display: block; font-size: 14px; letter-spacing: 2px; }
#location-badge p { margin-bottom: 0; font-family: 'Source Sans 3', sans-serif; font-size: 9px; letter-spacing: 4px; color: rgba(247,243,238,0.4); text-transform: uppercase; }


/* ══════════════════════════════════════════════════════════════
   DESKTOP OVERRIDES  (min-width: 769px)
══════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {

  nav    { display: none !important; }
  .pages { top: 0 !important; }

  /* Desktop topbar */
  #desktop-topbar {
    display: block !important; position: fixed;
    bottom: 496px; right: 48px; z-index: 200; width: 263px;
  }
  #desktop-book-btn {
    width: 100%; padding: 12px 0; background: var(--burg); color: var(--cream);
    font-family: 'Source Sans 3', sans-serif; font-size: 13px; letter-spacing: 3px;
    text-transform: uppercase; font-weight: 600; border: none; cursor: pointer;
    transition: background 0.3s; display: block;
  }
  #desktop-book-btn:hover { background: var(--burg2); }

  /* Order tracker */
  .order-tracker    { left: auto !important; right: 48px !important; top: auto !important; bottom: 453px !important; width: 263px !important; height: auto !important; }
  .order-input-row  { width: 263px !important; border-bottom: none !important; }
  .order-input      { font-size: 15px !important; letter-spacing: 2px !important; text-align: center !important; }
  .order-input::placeholder { font-size: 15px !important; letter-spacing: 2px !important; text-align: center !important; }
  .order-submit     { font-size: 16px !important; padding: 9px 12px !important; }
  .order-result     { position: fixed !important; bottom: 370px !important; top: auto !important; left: auto !important; right: 48px !important; width: 263px !important; }
  .order-result:not(.show) { display: none !important; }

  /* Opening badge */
  .opening-badge    { width: 263px !important; padding: 32px !important; bottom: 50px !important; right: 48px !important; border-top: none !important; }
  #location-badge img    { height: 219px !important; margin-bottom: 20px !important; }
  #location-badge strong { font-size: 20px !important; letter-spacing: 3px !important; }
  #location-badge p      { font-size: 13px !important; letter-spacing: 4px !important; margin-top: 7px !important; }
  #status-dot            { width: 12px !important; height: 12px !important; margin-right: 7px !important; }
  #status-text           { font-size: 14px !important; letter-spacing: 5px !important; }

  /* Home page */
  #page-home .home-content { align-items: center !important; padding-top: 120px !important; }
  #page-home .eyebrow      { font-size: 13px !important; letter-spacing: 7px !important; margin-bottom: 6px !important; }
  #page-home .home-headline { font-size: clamp(68px, 8.5vw, 117px) !important; margin-bottom: 4px !important; }
  #page-home .info-strip {
    flex-direction: column !important; gap: 4px !important;
    margin-top: 0 !important; padding-top: 0 !important; border-top: none !important;
  }
  #page-home .info-item { display: flex !important; flex-direction: row !important; align-items: baseline !important; gap: 14px !important; }
  #page-home .info-item .val { font-family: 'Source Sans 3', sans-serif !important; font-size: 20px !important; font-weight: 600 !important; letter-spacing: 3px !important; text-transform: uppercase !important; color: var(--burg) !important; }
  #page-home .info-item .key { font-size: 14px !important; letter-spacing: 3px !important; margin-top: 0 !important; color: rgba(247,243,238,0.75) !important; font-weight: 300 !important; }

  /* Services page */
  #svc-content { align-items: flex-end !important; padding-bottom: 80px !important; }
  #svc-headline { font-size: clamp(68px, 8.5vw, 117px) !important; }
  #svc-eyebrow  { font-size: 13px !important; letter-spacing: 7px !important; }
  #page-services .svc-item    { padding: 5px 0 !important; }
  #page-services .svc-divider { display: none !important; }
  #page-services .svc-name {
    font-family: 'Source Sans 3', sans-serif !important; font-size: 20px !important;
    font-weight: 600 !important; letter-spacing: 3px !important; color: var(--burg) !important;
    line-height: 1.0 !important; text-transform: uppercase !important;
  }
  #page-services .svc-desc {
    font-family: 'Source Sans 3', sans-serif !important; font-size: 14px !important;
    letter-spacing: 3px !important; color: rgba(247,243,238,0.75) !important;
    font-weight: 300 !important; margin-top: 3px !important; line-height: 1.2 !important;
    text-transform: uppercase !important;
  }

  /* Contact page */
  #contact-headline { font-size: clamp(68px, 8.5vw, 117px) !important; }
  #cnt-eyebrow      { font-size: 13px !important; letter-spacing: 7px !important; }
  #cnt-overlay {
    background: linear-gradient(to right,
      rgba(14,12,12,0.88) 0%, rgba(14,12,12,0.88) 18%,
      rgba(14,12,12,0.50) 26%, rgba(14,12,12,0.15) 34%, transparent 42%
    ) !important;
  }
  #cnt-soft-col { display: none !important; }
  #page-contact .svc-item    { text-align: left !important; padding: 5px 0 !important; }
  #page-contact .svc-divider { display: none !important; }
  #page-contact .svc-name {
    text-align: left !important; font-family: 'Source Sans 3', sans-serif !important;
    font-size: 20px !important; font-weight: 600 !important; letter-spacing: 3px !important;
    color: var(--burg) !important; line-height: 1.0 !important; text-transform: uppercase !important;
  }
  #page-contact .svc-desc {
    text-align: left !important; font-family: 'Source Sans 3', sans-serif !important;
    font-size: 14px !important; letter-spacing: 3px !important;
    color: rgba(247,243,238,0.75) !important; font-weight: 300 !important;
    margin-top: 3px !important; line-height: 1.2 !important; text-transform: uppercase !important;
  }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE OVERRIDES  (max-width: 768px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  nav { display: none !important; }
  .pages { top: 44px !important; }
  .order-tracker { display: none; }
  .order-result  { display: none !important; }
  .dot-nav       { right: 6px !important; bottom: 30px !important; }
  .scroll-hint   { display: none !important; }

  /* Opening badge — compact */
  .opening-badge {
    display: block !important; position: fixed !important;
    bottom: 10px !important; right: 20px !important;
    width: 90px !important; padding: 8px !important; z-index: 999 !important;
  }
  .opening-badge img    { height: 44px !important; margin-bottom: 6px !important; }
  .opening-badge strong { font-size: 9px !important; letter-spacing: 1px !important; }
  .opening-badge p      { font-size: 7px !important; letter-spacing: 1.5px !important; }
  #hours-status { white-space: nowrap !important; display: flex !important; align-items: center !important; justify-content: center !important; }
  #hours-status span { font-size: 8px !important; letter-spacing: 1.5px !important; white-space: nowrap !important; }

  /* Home page */
  .home-content { max-width: 100% !important; padding: 0 5% 70px !important; align-items: flex-end !important; justify-content: flex-end !important; top: 88px !important; }
  .home-left { width: 100% !important; }
  .home-headline { font-size: clamp(52px, 14vw, 76px) !important; text-shadow: 0 2px 16px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7) !important; margin-bottom: 16px !important; }
  .eyebrow { font-size: 9px !important; letter-spacing: 4px !important; text-shadow: 0 1px 8px rgba(0,0,0,1) !important; margin-bottom: 16px !important; }
  .hero-bg { object-position: 25% 10% !important; width: 100% !important; height: 100% !important; object-fit: cover !important; }
  .hero-overlay { background: linear-gradient(to right, rgba(28,26,26,0.55) 0%, rgba(28,26,26,0.2) 20%, transparent 38%) !important; }
  .info-strip { flex-direction: column !important; gap: 0 !important; margin-top: 20px !important; padding-top: 16px !important; }
  .info-item { margin-bottom: 10px !important; }
  .info-item .val { font-size: 18px !important; color: var(--cream) !important; text-shadow: 0 1px 6px rgba(0,0,0,1) !important; }
  .info-item .key { font-size: 13px !important; letter-spacing: 2px !important; color: rgba(247,243,238,0.95) !important; text-shadow: 0 1px 6px rgba(0,0,0,1) !important; }

  /* Services page */
  #page-services .hero-bg { object-position: -350px top !important; }
  #svc-overlay { background: linear-gradient(to right, rgba(28,26,26,0.5) 0%, rgba(28,26,26,0.5) 50%, rgba(28,26,26,0.25) 68%, rgba(28,26,26,0.05) 82%, transparent 100%) !important; }
  #svc-content { justify-content: flex-start !important; align-items: flex-start !important; padding: 210px 24px 24px !important; flex-direction: column !important; }
  #svc-content-inner { max-width: 100% !important; width: 100% !important; }
  #svc-eyebrow { font-size: 9px !important; letter-spacing: 4px !important; margin-bottom: 16px !important; overflow: hidden !important; width: 100% !important; }
  #svc-headline { font-size: clamp(46px, 12vw, 68px) !important; }
  #page-services .svc-name { font-family: 'Goatjump', sans-serif !important; font-size: 18px !important; color: var(--cream) !important; text-transform: uppercase !important; letter-spacing: 1px !important; }
  #page-services .svc-desc { font-family: 'Source Sans 3', sans-serif !important; font-size: 13px !important; color: rgba(247,243,238,0.95) !important; text-transform: uppercase !important; letter-spacing: 2px !important; font-weight: 300 !important; margin-top: 10px !important; }
  #page-services .svc-item { padding: 3px 0 !important; }
  #page-services .svc-divider { display: none !important; }

  /* Contact page */
  #contact-content { display: flex !important; justify-content: flex-start !important; align-items: center !important; padding: 0 5% !important; }
  #cnt-eyebrow { font-size: 9px !important; letter-spacing: 4px !important; margin-bottom: 16px !important; }
  #contact-headline { font-size: clamp(46px, 12vw, 68px) !important; }
  #page-contact .svc-name { font-family: 'Goatjump', sans-serif !important; font-size: 18px !important; color: var(--cream) !important; text-transform: uppercase !important; letter-spacing: 1px !important; }
  #page-contact .svc-desc { font-family: 'Source Sans 3', sans-serif !important; font-size: 13px !important; color: rgba(247,243,238,0.95) !important; text-transform: uppercase !important; letter-spacing: 2px !important; font-weight: 300 !important; margin-top: 10px !important; }
  #page-contact .svc-item { padding: 3px 0 !important; }
  #page-contact .svc-divider { display: none !important; }
  #cnt-vertical-label { display: none !important; }

  /* Booking popup */
  .popup-overlay { padding-top: 44px !important; align-items: flex-start !important; }
  .popup-box { padding: 16px !important; width: 100vw !important; border-radius: 0 !important; max-height: calc(100vh - 52px) !important; height: calc(100vh - 52px) !important; overflow-y: auto !important; }
  .form-field { margin-bottom: 8px !important; }
  .form-field input, .form-field select, .form-field textarea { padding: 8px 10px !important; font-size: 12px !important; }
  .form-field textarea { height: 50px !important; }
  .form-field label { font-size: 11px !important; letter-spacing: 2px !important; }
  .form-row-2 { grid-template-columns: 1fr !important; gap: 0 !important; }
  .popup-title { font-size: 26px !important; margin-bottom: 10px !important; }
  .popup-eyebrow { margin-bottom: 6px !important; }
}
