/* === New Maheshwori Hotel & Lodge — design tokens & base ============== */

:root {
  /* Brand palette (from logo) */
  --gold:        #D4A437;
  --gold-soft:   #E6C572;
  --gold-deep:   #B8881F;
  --copper:      #B86F3D;
  --copper-deep: #8B4F26;
  --char:        #1A1816;
  --cream:       #F5EFE6;

  /* Type tokens — swapped by the active visual direction */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --display-weight: 300;
  --display-italic: italic;
  --eyebrow-case:  uppercase;
  --eyebrow-space: 0.32em;

  /* Layout density */
  --section-pad: 120px;
  --card-pad:    28px;
  --hero-pad:    120px;

  /* Radius */
  --radius: 0px;
}

/* Devanagari uses different fonts that render better */
html[lang="ne"] {
  --font-display: 'Tiro Devanagari Sanskrit', 'Mukta', serif;
  --font-body:    'Mukta', sans-serif;
  --display-weight: 400;
}

/* Light theme */
:root, [data-theme="light"] {
  --bg:          #F8F3EA;
  --bg-2:        #F1EADD;
  --bg-3:        #E8DFCC;
  --surface:     #FFFCF6;
  --surface-2:   #F5EFE2;
  --fg:          #1A1816;
  --fg-2:        #2A2622;
  --fg-soft:     #6B6056;
  --fg-mute:     #9A9089;
  --line:        rgba(26,24,22,0.10);
  --line-2:      rgba(26,24,22,0.18);
  --accent:      #B8881F;
  --accent-2:    #B86F3D;
  --accent-fg:   #FFFCF6;
  --shadow-1:    0 1px 2px rgba(26,24,22,0.06), 0 8px 24px -8px rgba(26,24,22,0.12);
  --shadow-2:    0 2px 6px rgba(26,24,22,0.08), 0 24px 60px -20px rgba(26,24,22,0.20);
  --gold-grad:   linear-gradient(135deg, #E6C572 0%, #D4A437 45%, #B8881F 100%);
  --metal-grad:  linear-gradient(135deg, #E6C572 0%, #D4A437 30%, #B86F3D 70%, #8B4F26 100%);
  --hero-tint:   linear-gradient(180deg, rgba(248,243,234,0) 0%, rgba(248,243,234,0.7) 80%, rgba(248,243,234,1) 100%);
  --placeholder-bg: #E8DFCC;
  --placeholder-fg: #9A8E78;
}

[data-theme="dark"] {
  --bg:          #0E0C0A;
  --bg-2:        #15120F;
  --bg-3:        #1F1B16;
  --surface:     #18140F;
  --surface-2:   #221C16;
  --fg:          #F5EFE6;
  --fg-2:        #E6DECF;
  --fg-soft:     #B5AB99;
  --fg-mute:     #7A7060;
  --line:        rgba(245,239,230,0.08);
  --line-2:      rgba(245,239,230,0.16);
  --accent:      #D4A437;
  --accent-2:    #E6C572;
  --accent-fg:   #0E0C0A;
  --shadow-1:    0 1px 2px rgba(0,0,0,0.4), 0 12px 40px -10px rgba(0,0,0,0.6);
  --shadow-2:    0 2px 6px rgba(0,0,0,0.5), 0 30px 80px -20px rgba(0,0,0,0.8);
  --gold-grad:   linear-gradient(135deg, #E6C572 0%, #D4A437 45%, #B8881F 100%);
  --metal-grad:  linear-gradient(135deg, #E6C572 0%, #D4A437 30%, #B86F3D 70%, #8B4F26 100%);
  --hero-tint:   linear-gradient(180deg, rgba(14,12,10,0) 0%, rgba(14,12,10,0.7) 80%, rgba(14,12,10,1) 100%);
  --placeholder-bg: #1F1B16;
  --placeholder-fg: #5A5040;
}

/* Shape variants */
[data-shape="soft"]  { --radius-card: 12px; --radius-btn: 8px; }
[data-shape="round"] { --radius-card: 24px; --radius-btn: 999px; }
[data-shape="square"] { --radius-card: 0px;  --radius-btn: 0px; }

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 600ms ease, color 600ms ease;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* === Typography ====================================================== */

.serif { font-family: var(--font-display); }
.mono  { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--eyebrow-space);
  text-transform: var(--eyebrow-case);
  font-weight: 500;
  color: var(--fg-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}

.display {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.018em;
}
.display em { font-style: var(--display-italic); font-weight: calc(var(--display-weight) + 100); }

.h-section {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  font-weight: var(--display-weight);
}
.h-card { font-size: 28px; font-weight: 500; line-height: 1.1; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.metal-text {
  background: var(--metal-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === Layout ========================================================= */

.shell { width: 100%; min-height: 100vh; position: relative; }
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.section { padding: var(--section-pad) 0; position: relative; }
.section-tight { padding: calc(var(--section-pad) * 0.6) 0; }

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: calc(var(--section-pad) * 0.65) 0; }
  .section-tight { padding: calc(var(--section-pad) * 0.45) 0; }
}

/* === Navigation ===================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 400ms ease, border-color 400ms ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  min-width: 0;
}
.nav-brand .mark { width: 38px; height: 38px; object-fit: contain; }
.nav-brand .name {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.nav-brand .sub {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-top: 3px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  background: none;
  border: 0;
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--fg-2);
  font-weight: 400;
  position: relative;
  transition: color 200ms;
  font-family: inherit;
  white-space: nowrap;
}
.nav-link:hover { color: var(--fg); }
.nav-link[data-active="true"] { color: var(--accent); }
.nav-link[data-active="true"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--accent);
}

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav .nav-mobile-btn { display: none; }

.icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
}
.icon-btn:hover { background: var(--surface-2); color: var(--fg); border-color: var(--accent); }

/* === Buttons ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-btn, 0);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 240ms ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--gold-grad);
  color: #1A1816;
  border: 1px solid var(--accent);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(184,136,31,0.5); }
.btn-primary:hover::after { transform: translateX(100%); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: 1px solid #25D366;
  justify-content: center;
}
.btn-whatsapp:hover { background: #1FAB52; border-color: #1FAB52; transform: translateY(-1px); }

.btn-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 200ms;
  font-family: var(--font-body);
}
.btn-link:hover { gap: 14px; }
.btn-link .arrow { transition: transform 200ms; }

/* === Image placeholder ============================================= */

.ph {
  position: relative;
  width: 100%;
  background:
    repeating-linear-gradient(45deg,
      transparent 0 14px,
      color-mix(in oklab, var(--placeholder-fg) 14%, transparent) 14px 15px),
    var(--placeholder-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  border-radius: var(--radius-card, 0);
}
.ph-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--placeholder-fg);
  background: var(--bg);
  padding: 6px 10px;
  border: 1px solid var(--line-2);
  text-align: center;
  max-width: 80%;
}

/* === Ken Burns slow zoom on hover ================================= */
.ken-burns { transform: scale(1.02); }
.card-hover:hover .ken-burns,
[data-animations="lively"] .ken-burns { transform: scale(1.08); }

/* === Section heading block ========================================== */

.sec-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
  max-width: 720px;
}
.sec-head .lead {
  color: var(--fg-soft);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  max-width: 560px;
}

/* === Card hover ===================================================== */

.card-hover {
  transition: transform 500ms cubic-bezier(.2,.6,.2,1), box-shadow 500ms;
}
.card-hover:hover { transform: translateY(-4px); }
[data-card-style="floating"] .card-hover { box-shadow: var(--shadow-1); border: 0 !important; }
[data-card-style="floating"] .card-hover:hover { box-shadow: var(--shadow-2); }

/* === Reveal-on-scroll =============================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms cubic-bezier(.2,.6,.2,1), transform 900ms cubic-bezier(.2,.6,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animations="lively"] .reveal { transform: translateY(40px) scale(0.98); }
[data-animations="lively"] .reveal.is-visible { transform: translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* === Decorative divider ============================================= */

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--fg-soft);
  font-size: 11px;
  letter-spacing: var(--eyebrow-space);
  text-transform: var(--eyebrow-case);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-2);
}
.divider .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border: 0;
  margin: 0;
}

/* === Footer ========================================================== */

.footer {
  background: var(--char);
  color: var(--cream);
  padding: 80px 0 32px;
  margin-top: 80px;
}
[data-theme="dark"] .footer { background: #050402; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 20px;
}
.footer a { color: var(--cream); text-decoration: none; font-size: 14px; opacity: 0.85; transition: opacity 200ms, color 200ms; cursor: pointer; }
.footer a:hover { opacity: 1; color: var(--gold-soft); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(245,239,230,0.1);
  font-size: 12px;
  color: rgba(245,239,230,0.6);
  flex-wrap: wrap;
  gap: 12px;
}

/* === Theme toggle ================================================= */

.theme-toggle {
  position: relative;
  width: 58px; height: 32px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  padding: 0;
  cursor: pointer;
  transition: background 300ms;
  flex-shrink: 0;
}
.theme-toggle .knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--char);
  transition: transform 400ms cubic-bezier(.5,1.6,.5,1), background 300ms;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
[data-theme="dark"] .theme-toggle .knob { transform: translateX(26px); }

/* === Language toggle =============================================== */

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--fg-2);
  transition: all 200ms;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }
.lang-toggle .lang-letters {
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 500;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.lang-toggle .lang-letters .sep { color: var(--fg-mute); }
.lang-toggle .lang-letters span.on { color: var(--accent); font-weight: 600; }

/* === Subtle grain ================================================== */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
[data-theme="dark"] .grain { mix-blend-mode: screen; opacity: 0.05; }

/* === Mobile nav ===================================================== */

@media (max-width: 1100px) {
  .nav-link { padding: 10px 10px; font-size: 12px; }
  .nav-brand .sub { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 64px; 
    left: 0; 
    right: 0; 
    bottom: auto;
    /* inset: 64px 0 0 0; */
    flex-direction: column;
    background: var(--bg);
    padding: 32px;
    gap: 4px;
    z-index: 49;
    border-top: 1px solid var(--line);
  }
  .nav-links.open .nav-link {
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .nav .nav-mobile-btn { display: inline-flex; }
  .nav-book-btn { display: none; }
}

/* === Page transition ================================================ */

.page-fade {
  animation: pageFade 600ms cubic-bezier(.2,.6,.2,1);
}
@keyframes pageFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === Form fields ==================================================== */

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-soft);
  font-weight: 500;
  font-family: var(--font-body);
}
.field-input,
.field-select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 10px 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg);
  outline: none;
  transition: border-color 200ms;
  font-weight: 500;
  appearance: none;
  width: 100%;
}
.field-input:focus,
.field-select:focus { border-color: var(--accent); }
.field-select { cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--fg-soft) 50%), linear-gradient(135deg, var(--fg-soft) 50%, transparent 50%); background-position: calc(100% - 12px) 18px, calc(100% - 7px) 18px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 28px; }

/* Selection */
::selection { background: var(--accent); color: var(--accent-fg); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Ensure booking strip stays above next section despite negative margins */
.booking-strip-wrap { position: relative; z-index: 5; }

/* === Booking modal ================================================== */

.booking-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--char) 60%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  animation: fade 300ms ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.booking-modal {
  width: min(900px, 100%);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  box-shadow: -40px 0 80px -20px rgba(0,0,0,0.4);
  animation: slideIn 420ms cubic-bezier(.2,.6,.2,1);
}
@keyframes slideIn {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 36px;
  border-bottom: 1px solid var(--line);
}

.booking-stepper {
  display: flex;
  padding: 20px 36px;
  border-bottom: 1px solid var(--line);
  gap: 4px;
}
.booking-stepper .step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 300ms;
  position: relative;
}
.booking-stepper .step.active { opacity: 1; }
.booking-stepper .step.done { opacity: 0.85; }
.booking-stepper .step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 1px;
  background: var(--line-2);
}
.booking-stepper .step.done::after { background: var(--accent); }
.booking-stepper .step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--fg-2);
  z-index: 1;
  transition: all 300ms;
}
.booking-stepper .step.active .step-num {
  background: var(--gold-grad);
  border-color: var(--accent);
  color: var(--accent-fg);
}
.booking-stepper .step.done .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-fg);
}
.booking-stepper .step-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-soft);
  font-family: var(--font-body);
}

.booking-body {
  flex: 1;
  overflow-y: auto;
  padding: 40px 36px;
}

.booking-foot {
  border-top: 1px solid var(--line);
  padding: 20px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-2);
  gap: 16px;
  flex-wrap: wrap;
}

/* Success mark */
.success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #1A1816;
  margin: 0 auto;
  animation: successPop 600ms cubic-bezier(.5, 1.6, .5, 1);
}
.success-mark svg { width: 36px; height: 36px; }
@keyframes successPop {
  from { transform: scale(0); }
  60% { transform: scale(1.15); }
  to { transform: scale(1); }
}

/* === Experience tile hover ========================================= */
.exp-tile { position: relative; }
.exp-tile:hover { background: rgba(212,164,55,0.06) !important; }

/* === Mobile preview frame ========================================== */

.mobile-stage {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(212,164,55,0.06), transparent 60%),
    repeating-linear-gradient(45deg, var(--bg-2) 0 16px, var(--bg) 16px 17px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 0;
  overflow: hidden;
}
.mobile-frame {
  width: 390px;
  height: 844px;
  max-height: calc(100vh - 48px);
  background: #0A0A0A;
  border-radius: 56px;
  padding: 14px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.06),
    0 40px 100px -20px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.mobile-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 30px;
  background: #0A0A0A;
  border-radius: 999px;
  z-index: 10;
}
.mobile-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 999px;
  z-index: 10;
}
.mobile-screen {
  width: 100%; height: 100%;
  border-radius: 44px;
  overflow: hidden;
  overflow-y: auto;
  background: var(--bg);
  position: relative;
}
/* Mobile preview: scope drawer to phone screen and force-show hamburger */
.mobile-screen .nav { position: sticky; top: 0; }
/* Compress some elements inside mobile preview */
.mobile-screen .nav-links { display: none !important; }
.mobile-screen .nav-links.open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: auto;
  flex-direction: column;
  background: var(--bg);
  padding: 20px 24px;
  gap: 4px;
  z-index: 49;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.2);
}
.mobile-screen .nav-links.open .nav-link {
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.mobile-screen .nav .nav-mobile-btn { display: inline-flex !important; }
.mobile-screen .nav-book-btn { display: none !important; }
.mobile-screen .nav-inner { padding: 12px 14px; gap: 6px; }
.mobile-screen .nav-actions { gap: 4px; }
.mobile-screen .lang-toggle { padding: 5px 9px; }
.mobile-screen .lang-toggle .lang-letters { font-size: 10px; }
.mobile-screen .theme-toggle { width: 48px; height: 28px; }
.mobile-screen .theme-toggle .knob { width: 20px; height: 20px; }
[data-theme="dark"] .mobile-screen .theme-toggle .knob { transform: translateX(20px); }
.mobile-screen .icon-btn { width: 34px; height: 34px; }
.mobile-screen .container { padding: 0 16px; }
.mobile-screen .display { font-size: 36px !important; }
.mobile-screen .h-section { font-size: 28px !important; }
.mobile-screen .section { padding: 48px 0 !important; }
.mobile-screen .section-tight { padding: 32px 0 !important; }
.mobile-screen .two-col,
.mobile-screen .three-col,
.mobile-screen .three-col-grid,
.mobile-screen .gallery-grid,
.mobile-screen .booking-strip { grid-template-columns: 1fr !important; gap: 20px !important; }
.mobile-screen .three-col-grid > * { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
.mobile-screen .booking-strip { padding: 20px !important; }
.mobile-screen .nav-brand .sub { display: none; }
.mobile-screen .nav-brand .name { font-size: 15px; }
.mobile-screen .footer-grid { grid-template-columns: 1fr; }
.mobile-screen .footer { padding: 48px 0 24px; }

/* === Responsive ===================================================== */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr !important; gap: 48px !important; }
  .three-col { grid-template-columns: 1fr 1fr !important; }
  .three-col-grid { grid-template-columns: 1fr 1fr !important; }
  .three-col-grid > * { border-right: 1px solid var(--line) !important; }
  .three-col-grid > *:nth-child(2n) { border-right: 0 !important; }
  .gallery-grid { grid-template-columns: 1fr 1fr !important; }
  .gallery-grid > * { grid-column: span 1 !important; }
  .booking-strip { grid-template-columns: 1fr 1fr !important; gap: 20px !important; padding: 24px !important; }
  .booking-strip > button { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .three-col { grid-template-columns: 1fr !important; }
  .three-col-grid { grid-template-columns: 1fr !important; }
  .three-col-grid > * { border-right: 0 !important; }
  .gallery-grid { grid-template-columns: 1fr !important; }
  .booking-strip { grid-template-columns: 1fr !important; }
  .booking-modal { width: 100%; }
  .booking-head, .booking-stepper, .booking-body, .booking-foot { padding-left: 20px; padding-right: 20px; }
  .booking-stepper .step-label { display: none; }
  .confirm-grid { grid-template-columns: 1fr !important; }
  .room-row { grid-template-columns: 1fr !important; }
  .addons-grid { grid-template-columns: 1fr !important; }
  .confirm-actions { grid-template-columns: 1fr !important; }
}

/* Apply card radius to all major cards */
.card-hover,
article.card-hover,
.exp-card,
.room-row,
.booking-strip,
.amenity-cell { border-radius: var(--radius-card, 0); }
