
/* ── BLINKING CURSOR FOR ORDER STATUS ── */
@keyframes blink-cursor {
  0%, 100% { border-right-color: rgba(247,243,238,0.8); }
  50% { border-right-color: transparent; }
}

@font-face {
  font-family: 'JustSans';
  src: url('fonts/font01.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Goatjump';
  src: url('fonts/font02.woff2') format('woff2');
  font-display: swap;
}

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

*, *::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%;
}

/* ── 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; }

/* ── 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;
}
@keyframes pulse { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

/* ══════════════════════════════
   PAGE 1 — HOME
   Full screen image underneath,
   black column left 1/5 fading right into image
══════════════════════════════ */
#page-home {
  position:absolute; inset:0;
  background:var(--navy);
}

/* Image fills entire page */
.hero-bg {
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%;
  /* for <img> tags */
  object-fit:cover;
  object-position: right center;
  /* for <div> tags */
  background-size:cover;
  background-repeat:no-repeat;
  background-position: right center;
}

/* Black column: solid left 20%, fades out by 45% */
.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%
  );
}

/* Text sits on top of everything */
.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); }

.home-tagline {
  font-family:'Cormorant Garamond', serif;
  font-size:18px; font-style:italic;
  color:rgba(247,243,238,0.55); margin-bottom:28px; font-weight:400; letter-spacing:1px;
}

.home-desc {
  font-family:'Source Sans 3', sans-serif;
  font-size:14px; font-weight:300; line-height:1.9;
  color:rgba(247,243,238,0.5); max-width:400px; margin-bottom:40px;
}

.btn-row { display:flex; gap:14px; flex-wrap:wrap; }
.btn-primary {
  font-family:'Source Sans 3', sans-serif;
  font-size:11px; letter-spacing:3px; text-transform:uppercase;
  font-weight:600; text-decoration:none; background:var(--burg); color:var(--cream);
  padding:13px 30px; border:none; cursor:pointer; transition:background 0.3s;
}
.btn-primary:hover { background:var(--burg2); }
.btn-outline {
  font-family:'Source Sans 3', sans-serif;
  font-size:11px; letter-spacing:3px; text-transform:uppercase;
  font-weight:400; text-decoration:none; background:transparent;
  color:rgba(247,243,238,0.6); padding:13px 30px;
  border:1px solid rgba(247,243,238,0.2); cursor:pointer; transition:all 0.3s;
}
.btn-outline:hover { border-color:var(--burg); color:var(--cream); }

.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;
}

/* Opening badge bottom right */
.opening-badge {
  position:absolute; bottom:32px; right:48px; z-index:3;
  border:1px solid rgba(122,37,53,0.4); 
  padding:22px 22px; text-align:center;
  width:180px; 
  background:rgba(28,26,26,0.6); backdrop-filter:blur(8px);
}
.opening-badge p {
  font-family:'Source Sans 3', sans-serif;
  font-size:9px; letter-spacing:4px; color:rgba(247,243,238,0.4);
  text-transform:uppercase; margin-bottom:6px;
}
.opening-badge strong {
  font-family:'Goatjump', sans-serif;
  font-size:14px; color:var(--cream); letter-spacing:2px;
  text-transform:uppercase; display:block;
}
#location-badge #status-dot {
  width: 8px; height: 8px; margin-right: 6px;
}
#location-badge #status-text {
  font-size: 10px; letter-spacing: 3px;
}
#location-badge img {
  height: 70px; margin-bottom: 14px;
}

/* ── SERVICES ITEMS ── */
.svc-item {
  padding: 3px 0;
  text-align:right;
}
.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);
}
.cnt-item {
  padding:16px 0;
  display:flex; flex-direction:column; gap:5px;
}
.cnt-label {
  font-family:'Goatjump', sans-serif;
  font-size:13px; color:var(--burg);
  text-transform:uppercase; letter-spacing:1px; line-height:1.1;
}
.cnt-val {
  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;
  line-height:1.8;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
.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 .home-tagline    { animation-delay:0.3s; }
.page.active .home-desc       { animation-delay:0.4s; }
.page.active .btn-row         { animation-delay:0.5s; }
.page.active .info-strip      { animation-delay:0.6s; }
.page.active .svc-item        { animation:fadeUp 0.7s ease both; }

/* ── 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:#f7f3ee; }
.popup-eyebrow {
  font-family:'Source Sans 3',sans-serif;
  font-size:10px; letter-spacing:5px; color:#7a2535;
  text-transform:uppercase; margin-bottom:12px;
  display:flex; align-items:center; gap:12px;
}
.popup-eyebrow::before { content:''; display:block; width:24px; height:1px; background:#7a2535; }
.popup-title {
  font-family:'Goatjump',sans-serif;
  font-size:36px; color:#f7f3ee;
  text-transform:uppercase; line-height:1.0; margin-bottom:28px;
}
.popup-title span { color:#7a2535; }
.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:#f7f3ee;
  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:#f7f3ee; }
.form-field textarea { resize:none; height:80px; }
.popup-submit {
  width:100%; padding:14px;
  background:#7a2535; color:#f7f3ee;
  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:#5c1a27; }

/* confirmation state */
.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:#7a2535;
}
.confirm-title {
  font-family:'Goatjump',sans-serif;
  font-size:28px; color:#f7f3ee; 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:#f7f3ee; font-weight:400; }
.edit-btn {
  width:100%; padding:12px;
  background:transparent; color:#f7f3ee;
  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:#7a2535; color:#f7f3ee; }

/* ── ORDER TRACKER ── */
.order-tracker {
  position: fixed;
  top: 0;
  left: 4%;
  height: 76px;
  display: flex;
  align-items: center;
  z-index: 200;
  width: 210px;
}

.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.92);
  backdrop-filter: blur(8px);
  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.3);
  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); }

/* Result box */
.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;
}

/* Battery progress bar */
.order-battery {
  height: 6px;
  width: 100%;
  background: rgba(247,243,238,0.08);
  position: relative;
}

.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;
}

.order-not-found {
  padding: 12px 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(247,243,238,0.4);
  text-transform: uppercase;
}
/* ══════════════════════════════
   MOBILE STYLES — max 768px
══════════════════════════════ */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 0 4%; height: 22px; }
  .nav-links { display: none; }
  .nav-logo img { height: 22px; }

  /* ORDER TRACKER */
  .order-tracker { display: none; }
  .order-result  { display: none !important; }

  /* PAGES */
  .pages { top: 58px; }

  /* HOME PAGE */
  #page-home { grid-template-columns: 1fr !important; }
  .home-left {
    padding: 40px 6% 140px !important;
    justify-content: flex-end !important;
    position: absolute !important;
    inset: 0 !important; z-index: 2 !important;
  }
  .home-headline { font-size: clamp(46px, 12vw, 68px) !important; }
  .info-strip { gap: 12px !important; margin-top: 24px !important; }
  /* HOME — match services page font style */
  .info-item .val { 
    font-size: 18px !important; 
    color: #f7f3ee !important; 
    letter-spacing: 1px !important;
  }
  .info-item .key { 
    font-size: 11px !important; 
    color: rgba(247,243,238,0.35) !important;
    letter-spacing: 2px !important;
  }
  /* cnt and contact styles handled by inline HTML */
  .hero-bg { width:100% !important; height:100% !important; object-fit:cover !important; background-size:cover !important; }
  .hero-overlay {
    background: linear-gradient(
      to top,
      #1c1a1a 0%,
      #1c1a1a 45%,
      rgba(28,26,26,0.6) 65%,
      transparent 100%
    ) !important;
  }
  .opening-badge {
    bottom: 16px !important; right: 16px !important;
    padding: 12px 14px !important; width: 150px !important;
  }
  .opening-badge img { height: 44px !important; }

  /* SERVICES PAGE */
  /* services hero handled by inline background-position */

  /* CONTACT PAGE */
  /* contact hero handled by inline background-position */

  /* BOOKING POPUP */
  .popup-overlay {
    padding-top: 44px !important;
    align-items: flex-start !important;
    z-index: 99999 !important;
  }
  .popup-box {
    padding: 16px 16px 16px !important;
    max-height: calc(100vh - 52px) !important;
    height: calc(100vh - 52px) !important;
    width: 100vw !important;
    margin-top: 0 !important;
    overflow-y: auto !important;
    border-radius: 0 !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; }
  .popup-title { font-size: 22px !important; margin-bottom: 10px !important; }
  .popup-eyebrow { margin-bottom: 6px !important; }
  .form-row-2 { grid-template-columns: 1fr !important; gap: 0 !important; }
  .popup-title { font-size: 26px !important; }
  .form-field label { color: #a89e94 !important; font-size: 11px !important; letter-spacing: 2px !important; font-weight: 600 !important; }

  /* DOT NAV */
  .dot-nav { right: 10px !important; }

  /* SCROLL HINT */
  .scroll-hint { display: none; }
}

.hamburger { display: none; }
.mobile-header-actions { display: none; }
.mobile-order-overlay { display: none; }

/* ── SPLIT HEADER MOBILE STYLES ────────────────── */
@media screen and (max-width: 768px) {
  nav { display: none !important; }
  .pages { top: 44px !important; }
  .dot-nav { bottom: 30px !important; }
  .opening-badge { bottom: 16px !important; right: 16px !important; width: 90px !important; padding: 14px 6px !important; }

  .mobile-split-header {
    display: -webkit-flex !important;
    display: flex !important;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: 44px;
  }
  .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;
    text-align: center;
    border: none;
    color: rgba(247,243,238,0.9);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 0;
    outline: none;
  }
  .msh-order input::placeholder { color: rgba(247,243,238,0.65); text-align: center; }

  .msh-order-btn {
    background: none;
    border: none;
    color: #f7f3ee;
    font-size: 20px;
    cursor: pointer;
    padding: 0 8px;
    font-weight: 700;
    flex-shrink: 0;
  }
}

/* ══════════════════════════════
   MOBILE FIXES
══════════════════════════════ */

/* FLASHING OPEN STATUS */
@keyframes statusFlash {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.status-flash {
  animation: statusFlash 2.5s ease-in-out infinite;
}

/* old mobile header removed */
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* MOBILE MENU DROPDOWN */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    background: rgba(28,26,26,0.97);
    backdrop-filter: blur(10px);
    padding: 24px 6%;
    gap: 20px;
    z-index: 150;
    border-bottom: 1px solid rgba(122,37,53,0.3);
  }
  .nav-links.mobile-open a {
    font-size: 13px !important;
    letter-spacing: 3px;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(247,243,238,0.06) !important;
    color: rgba(247,243,238,0.7) !important;
  }
  .nav-links.mobile-open .nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 13px 22px !important;
  }

  /* HERO IMAGE — shift right to reveal body */
  .hero-bg {
    object-position: 25% 10% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* HERO OVERLAY — very subtle left column */
  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(28,26,26,0.55) 0%,
      rgba(28,26,26,0.2) 20%,
      transparent 38%
    ) !important;
  }

  /* HOME CONTENT — push to bottom so image shows above */
  .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;
  }

  /* HEADLINE — bigger and bolder on mobile */
  .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 text */
  .eyebrow {
    font-size: 9px !important;
    letter-spacing: 4px !important;
    text-shadow: 0 1px 8px rgba(0,0,0,1) !important;
    margin-bottom: 16px !important;
  }

  /* INFO STRIP */
  .info-strip {
    flex-wrap: nowrap !important;
    gap: 0 !important;
    margin-top: 20px !important;
    padding-top: 16px !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex-direction: column !important;
  }
  .info-item {
    margin-bottom: 10px !important;
  }
  .info-item .val {
    font-size: 18px !important;
    text-shadow: 0 1px 6px rgba(0,0,0,1) !important;
    color: var(--cream) !important;
  }
  .info-item .key {
    font-size: 13px !important;
    text-shadow: 0 1px 6px rgba(0,0,0,1) !important;
    color: rgba(247,243,238,0.95) !important;
    letter-spacing: 2px !important;
  }

  /* DOT NAV — move inward so dots are fully visible */
  .dot-nav {
    right: 6px !important;
  }

  /* OPENING BADGE — half size, keep logo same, keep text */
  .opening-badge {
    width: 90px !important;
    padding: 8px 8px !important;
    bottom: 10px !important;
    right: 20px !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;
  }
}

/* ── DESKTOP BADGE SIZE (min-width keeps mobile untouched) ── */
@media (min-width: 769px) {
  .opening-badge {
    width: 360px !important;
    padding: 44px 44px !important;
    bottom: 32px !important;
    right: 48px !important;
  }
  .opening-badge img {
    height: 140px !important;
    margin-bottom: 28px !important;
  }
  .opening-badge strong {
    font-size: 28px !important;
    letter-spacing: 4px !important;
  }
  .opening-badge p {
    font-size: 18px !important;
    letter-spacing: 6px !important;
    margin-bottom: 10px !important;
  }
  #location-badge #status-dot {
    width: 16px !important;
    height: 16px !important;
    margin-right: 12px !important;
  }
  #location-badge #status-text {
    font-size: 20px !important;
    letter-spacing: 6px !important;
  }
}

/* ── LOGO WATERMARK OVERLAY ─────────────────────────────────── */
.logo-watermark {
  position: absolute;
  z-index: 2;
  width: 420px;
  height: auto;
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: contrast(1.4) brightness(2);
}

@media (min-width: 769px) {
  .logo-watermark {
    width: 520px;
    opacity: 0.55;
    left: 58%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 769px) {
  #page-home .home-content {
    align-items: flex-end !important;
    padding-bottom: 40px !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: 12px !important;
  }
  #page-home .home-tagline {
    font-size: 23px !important;
    margin-bottom: 12px !important;
  }
  #page-home .home-desc {
    font-size: 18px !important;
    max-width: 520px !important;
    margin-bottom: 16px !important;
  }
  #page-home .btn-primary,
  #page-home .btn-outline {
    font-size: 14px !important;
    letter-spacing: 4px !important;
    padding: 17px 39px !important;
  }
  #page-home .info-strip {
    gap: 18px !important;
    margin-top: 16px !important;
    padding-top: 14px !important;
  }
  #page-home .info-item .val {
    font-size: 30px !important;
    letter-spacing: 1.3px !important;
  }
  #page-home .info-item .key {
    font-size: 23px !important;
    letter-spacing: 4px !important;
    margin-top: 2px !important;
  }
}

/* ── CONTACT PAGE — LEFT ALIGN TEXT (DESKTOP) ──────────────── */
@media (min-width: 769px) {
  #page-contact .svc-item {
    text-align: left !important;
  }
  #page-contact .svc-name {
    text-align: left !important;
  }
  #page-contact .svc-desc {
    text-align: left !important;
  }
}

/* ── SERVICES PAGE — CLEAN ID-BASED STYLES ─────────────────── */

/* Overlay - desktop */
#svc-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    #1c1a1a 0%,
    #1c1a1a 18%,
    rgba(28,26,26,0.6) 30%,
    rgba(28,26,26,0.1) 45%,
    transparent 60%
  );
}

/* Bottom fade */
#svc-bottom-fade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(28,26,26,0.3) 0%, transparent 20%);
}

/* Content container */
#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%;
}

/* Mobile overrides */
@media (max-width: 768px) {
  #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;
  }
}

/* Eyebrow */
#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; justify-content: flex-start;
  white-space: nowrap;
}

/* Headline */
#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;
  text-align: left; white-space: normal;
}

/* Mobile overrides for eyebrow and headline */
@media (max-width: 768px) {
  #svc-eyebrow {
    font-size: 9px !important;
    letter-spacing: 4px !important;
    margin-bottom: 16px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    width: 100% !important;
  }
  #svc-headline {
    text-align: left !important;
    white-space: normal !important;
    font-size: clamp(46px, 12vw, 68px) !important;
    color: var(--cream) !important;
  }
}

/* ── CONTACT PAGE — CLEAN ID-BASED STYLES ──────────────────── */
#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; justify-content: flex-start;
}
#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%; max-width: 100%;
}
#cnt-badge-wrap {
  position: absolute; bottom: 32px; right: 48px; z-index: 3;
  display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
#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;
}

/* ── SERVICES PAGE CONTENT TIGHTER SPACING ──────────────────── */
#page-services .svc-item {
  padding: 3px 0 !important;
}
#page-services .svc-name {
  line-height: 1.1 !important;
}
#page-services .svc-desc {
  margin-top: 1px !important;
}
#page-services .svc-divider {
  margin: 2px 0 !important;
}

/* ── SERVICES CONTENT MOVE UP 40PX (DESKTOP) ───────────────── */
@media (min-width: 769px) {
  #svc-content-inner {
    margin-top: -40px !important;
  }
  #svc-headline {
    font-size: clamp(68px, 8.5vw, 117px) !important;
  }
  #svc-eyebrow {
    font-size: 13px !important;
    letter-spacing: 7px !important;
  }
}

/* ── CONTACT TITLE MATCH HOME DESKTOP SIZE ──────────────────── */
@media (min-width: 769px) {
  #contact-headline {
    font-size: clamp(68px, 8.5vw, 117px) !important;
  }
  #cnt-eyebrow {
    font-size: 13px !important;
    letter-spacing: 7px !important;
  }
}

/* ── PHONE ITEM BODY SPACING ────────────────────────────────── */
