/* ============================================================
   Nabugabo Holiday Center — design tokens & base
   ============================================================ */

:root {
  --bg: oklch(98% 0.006 320);
  --surface: oklch(95.5% 0.010 320);
  --surface-2: oklch(92% 0.014 320);
  --ink: oklch(18% 0.025 305);
  --ink-2: oklch(32% 0.030 305);
  --muted: oklch(52% 0.028 305);
  --hairline: oklch(85% 0.010 320);
  --primary: oklch(35% 0.115 305);
  --primary-ink: oklch(96% 0.010 320);
  --accent: oklch(72% 0.105 305);
  --accent-2: oklch(65% 0.115 30);

  --serif: "Cormorant Garamond", "Cormorant", Garamond, serif;
  --sans: "Geist", "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px oklch(20% 0.04 305 / 0.06), 0 1px 1px oklch(20% 0.04 305 / 0.04);
  --shadow: 0 12px 30px -12px oklch(20% 0.04 305 / 0.18), 0 2px 6px oklch(20% 0.04 305 / 0.06);
  --shadow-lg: 0 30px 60px -20px oklch(20% 0.04 305 / 0.28);
}

[data-palette="lavender"] {
  --bg: oklch(97% 0.012 305);
  --surface: oklch(94% 0.018 305);
  --surface-2: oklch(90% 0.022 305);
  --ink: oklch(22% 0.040 305);
  --ink-2: oklch(36% 0.045 305);
  --muted: oklch(54% 0.038 305);
  --hairline: oklch(85% 0.018 305);
  --primary: oklch(48% 0.150 295);
  --accent: oklch(80% 0.090 305);
}
[data-palette="indigo"] {
  --bg: oklch(96% 0.012 270);
  --surface: oklch(93% 0.018 270);
  --surface-2: oklch(89% 0.024 270);
  --ink: oklch(15% 0.040 270);
  --ink-2: oklch(28% 0.050 270);
  --muted: oklch(50% 0.035 270);
  --hairline: oklch(83% 0.020 270);
  --primary: oklch(30% 0.130 280);
  --accent: oklch(68% 0.130 285);
}
[data-palette="wine"] {
  --bg: oklch(96% 0.010 25);
  --surface: oklch(93% 0.016 25);
  --surface-2: oklch(89% 0.022 25);
  --ink: oklch(20% 0.040 15);
  --ink-2: oklch(32% 0.060 15);
  --muted: oklch(54% 0.040 15);
  --hairline: oklch(84% 0.020 25);
  --primary: oklch(32% 0.130 15);
  --accent: oklch(68% 0.130 25);
}

[data-mode="dark"] {
  --bg: oklch(14% 0.022 305);
  --surface: oklch(18% 0.028 305);
  --surface-2: oklch(22% 0.034 305);
  --ink: oklch(95% 0.010 320);
  --ink-2: oklch(82% 0.020 305);
  --muted: oklch(62% 0.028 305);
  --hairline: oklch(28% 0.030 305);
  --primary: oklch(72% 0.130 305);
  --primary-ink: oklch(14% 0.030 305);
  --accent: oklch(78% 0.110 305);
}
[data-mode="dark"][data-palette="lavender"] {
  --bg: oklch(16% 0.030 295);
  --surface: oklch(20% 0.040 295);
  --primary: oklch(78% 0.140 295);
}
[data-mode="dark"][data-palette="indigo"] {
  --bg: oklch(12% 0.030 270);
  --surface: oklch(16% 0.040 270);
  --primary: oklch(75% 0.130 280);
}
[data-mode="dark"][data-palette="wine"] {
  --bg: oklch(14% 0.030 15);
  --surface: oklch(18% 0.040 15);
  --primary: oklch(72% 0.130 20);
}

[data-type="sans"] {
  --serif: "Bricolage Grotesque", "Geist", -apple-system, sans-serif;
  --sans: "Geist", "Inter Tight", -apple-system, sans-serif;
}
[data-type="grotesk"] {
  --serif: "Space Grotesk", -apple-system, sans-serif;
  --sans: "Inter Tight", -apple-system, sans-serif;
}
[data-type="playfair"] {
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", -apple-system, sans-serif;
}
[data-type="garamond"] {
  --serif: "EB Garamond", Garamond, serif;
  --sans: "Manrope", -apple-system, sans-serif;
}

[data-type="sans"] .serif,
[data-type="sans"] .h-display,
[data-type="sans"] .h1,
[data-type="sans"] .h2,
[data-type="sans"] .h3,
[data-type="grotesk"] .serif,
[data-type="grotesk"] .h-display,
[data-type="grotesk"] .h1,
[data-type="grotesk"] .h2,
[data-type="grotesk"] .h3 {
  font-weight: 500;
  letter-spacing: -0.035em;
}
[data-type="sans"] em.serif-italic,
[data-type="sans"] .serif em,
[data-type="grotesk"] em.serif-italic,
[data-type="grotesk"] .serif em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 220ms ease, color 220ms ease;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: var(--primary); color: var(--primary-ink); }

.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.wrap-tight { max-width: 920px; margin: 0 auto; padding: 0 28px; }

.row { display: flex; align-items: center; gap: 12px; }
.col { display: flex; flex-direction: column; }
.between { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.divider { height: 1px; background: var(--hairline); border: 0; }
.hairline-top { border-top: 1px solid var(--hairline); }
.hairline-bottom { border-bottom: 1px solid var(--hairline); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: var(--primary-ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 120ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}
.btn.loading {
  min-width: 178px;
  pointer-events: none;
}
.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: btnSpin 760ms linear infinite;
  flex: 0 0 auto;
}
@keyframes btnSpin {
  to { transform: rotate(360deg); }
}
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); }
.btn.light { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn.light:hover { border-color: var(--ink); }
.btn.sm { padding: 8px 14px; font-size: 12px; }
.btn.lg { padding: 16px 28px; font-size: 15px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 140ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.newsletter-section { padding: 56px 0; background: var(--bg); }
.newsletter-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 32px; align-items: center; }
.newsletter-form { display: grid; grid-template-columns: 1fr 1.25fr auto; gap: 10px; align-items: center; }
.newsletter-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px oklch(from var(--primary) l c h / 0.12); }
.form-note { font-size: 13px; color: var(--primary); }
.form-note.error { color: oklch(52% 0.17 25); }

.cta-lead-section { padding: 104px 0; background: var(--surface); }
.cta-lead-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items: center; }
.cta-lead-copy .lead { max-width: 42ch; }
.cta-lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
}
.cta-form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 48px; }

.img-ph {
  background: var(--surface-2) center/cover no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.img-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, oklch(0% 0 0 / 0.18));
  pointer-events: none;
}

.img-block,
.feature-split .img-block,
.hero-mag-img,
.gallery .g,
.cottage-card.editorial .img,
.cottage-card.minimal .img,
.room-radio .img,
.detail-body .img-block,
.note-from-desk-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery .g { border-radius: var(--radius); }
.hero-mosaic .m { border-radius: var(--radius); overflow: hidden; }
.hero-mosaic .m5 { border-radius: var(--radius); }
.hero-split .img { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
@media (max-width: 760px) {
  .hero-split .img { border-radius: 0; }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  font-size: 12px;
  color: var(--ink-2);
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

.screen { animation: fadeUp 360ms ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background 200ms ease, padding 200ms ease, color 200ms ease, backdrop-filter 200ms ease, border-color 200ms ease;
  border-bottom: 1px solid transparent;
  color: var(--primary-ink);
}
.topnav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(180deg, oklch(0% 0 0 / 0.50), oklch(0% 0 0 / 0));
  opacity: 1;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 0;
}
.topnav > * {
  position: relative;
  z-index: 1;
}
.topnav.mosaic-hero {
  color: var(--ink);
}
.topnav.scrolled {
  background: oklch(from var(--bg) l c h / 0.86);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--hairline);
  padding: 14px 28px;
  color: var(--ink);
}
.topnav.scrolled::before {
  opacity: 0;
}
.nav-logo {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-logo-sm { height: 36px; }
.topnav .brand {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.05;
  white-space: nowrap;
}
.topnav .brand-name {
  display: block;
}
.topnav .brand small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  opacity: 0.7;
  margin-top: 4px;
}
.topnav nav { display: flex; gap: 28px; font-size: 13px; letter-spacing: 0.02em; }
.topnav nav button {
  background: none;
  border: 0;
  color: inherit;
  padding: 4px 0;
  position: relative;
  font-family: var(--sans);
  font-size: 13px;
  opacity: 0.9;
}
.topnav nav button::after,
.topnav .signin-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.topnav nav button:hover::after,
.topnav nav button.active::after,
.topnav .signin-link:hover::after,
.topnav .signin-link.active::after { transform: scaleX(1); }
.topnav .nav-cta {
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  background: transparent;
  color: inherit;
}
.topnav.scrolled .nav-cta {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
}

.topnav.nav-centered {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.topnav.nav-centered .brand-wrap { display: flex; justify-content: center; order: 2; }
.topnav.nav-centered nav.left,
.topnav.nav-centered .right { display: flex; gap: 28px; align-items: center; }
.topnav.nav-centered nav.left { justify-content: flex-end; order: 1; }
.topnav.nav-centered .right { justify-content: flex-start; order: 3; }
.topnav.nav-centered .brand { text-align: center; align-items: center; }

.topnav.nav-pill {
  position: fixed;
  top: 24px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  background: oklch(from var(--bg) l c h / 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  color: var(--ink);
  gap: 8px;
  width: auto;
  max-width: calc(100% - 32px);
}
.topnav.nav-pill .brand { font-size: 15px; }
.topnav.nav-pill .brand small { display: none; }
.topnav.nav-pill nav { gap: 4px; padding: 0 8px; }
.topnav.nav-pill nav button { padding: 8px 14px; border-radius: 999px; font-size: 13px; opacity: 1; }
.topnav.nav-pill nav button::after { display: none; }
.topnav.nav-pill nav button:hover { background: oklch(from var(--ink) l c h / 0.08); }
.topnav.nav-pill nav button.active { background: var(--ink); color: var(--bg); }
.topnav.nav-pill .signin-link { padding: 8px 12px; }
.topnav.nav-pill .signin-link::after { display: none; }
.topnav.nav-pill .nav-cta {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
  padding: 8px 16px;
}
.topnav.nav-pill.scrolled { background: oklch(from var(--bg) l c h / 0.92); }
@media (max-width: 900px) {
  .topnav nav { display: none; }
  .topnav.nav-centered { display: flex; justify-content: space-between; }
  .topnav.nav-centered nav.left { display: none; }
  .topnav.nav-pill { padding: 6px 6px 6px 18px; }
  .topnav .brand { font-size: 17px; }
  .topnav.nav-pill .brand-name { display: none; }
}

.topnav.nav-minimal nav { display: none; }
.topnav.nav-minimal .menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.topnav.nav-minimal.scrolled .menu-toggle {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.topnav.nav-minimal .menu-toggle .bars {
  width: 16px;
  height: 10px;
  position: relative;
}
.topnav.nav-minimal .menu-toggle .bars::before,
.topnav.nav-minimal .menu-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}
.topnav.nav-minimal .menu-toggle .bars::before { top: 0; }
.topnav.nav-minimal .menu-toggle .bars::after  { top: 9px; }
.topnav.nav-minimal .menu-toggle.open .bars::before { top: 4.5px; transform: rotate(45deg); }
.topnav.nav-minimal .menu-toggle.open .bars::after  { top: 4.5px; transform: rotate(-45deg); }

.topnav .mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.topnav.scrolled .mobile-menu-toggle {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.topnav .mobile-menu-toggle .bars {
  width: 16px;
  height: 10px;
  position: relative;
}
.topnav .mobile-menu-toggle .bars::before,
.topnav .mobile-menu-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}
.topnav .mobile-menu-toggle .bars::before { top: 0; }
.topnav .mobile-menu-toggle .bars::after  { top: 9px; }
.topnav .mobile-menu-toggle.open .bars::before { top: 4.5px; transform: rotate(45deg); }
.topnav .mobile-menu-toggle.open .bars::after  { top: 4.5px; transform: rotate(-45deg); }

.topnav .nav-desktop-actions { display: flex; align-items: center; gap: 18px; }

@media (max-width: 900px) {
  .topnav .nav-desktop-actions { display: none; }
  .topnav .mobile-menu-toggle { display: inline-flex; }
}

.nav-drawer { position: fixed; inset: 0; z-index: 79; pointer-events: none; }
.nav-drawer .scrim {
  position: absolute;
  inset: 0;
  background: oklch(0% 0 0 / 0.45);
  opacity: 0;
  transition: opacity 280ms ease;
}
.nav-drawer .panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--bg);
  color: var(--ink);
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(.4,1.1,.4,1);
  padding: 100px 48px 48px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.nav-drawer.open { pointer-events: auto; }
.nav-drawer.open .scrim { opacity: 1; }
.nav-drawer.open .panel { transform: translateX(0); }
.nav-drawer .panel nav { display: flex; flex-direction: column; gap: 4px; }
.nav-drawer .panel nav button {
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.02em;
  padding: 10px 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
  cursor: pointer;
  transition: color 160ms ease, padding-left 220ms ease;
}
.nav-drawer .panel nav button:hover { color: var(--primary); padding-left: 12px; }
.nav-drawer .panel nav button.active { color: var(--primary); }
.nav-drawer .panel .drawer-foot {
  margin-top: auto;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav-drawer .panel .drawer-foot .row { display: flex; gap: 12px; }
.nav-drawer .panel .drawer-foot .row .btn { flex: 1; }
.nav-drawer .panel .drawer-foot .contact {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2;
  margin-top: 24px;
}

.fab-root {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 64px;
  height: 64px;
}
.fab-trigger {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 0;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 220ms cubic-bezier(.6,.0,.3,1), background 200ms ease;
  z-index: 2;
}
.fab-trigger:hover { transform: scale(1.04); }
.fab-trigger.open { background: var(--primary); transform: rotate(45deg); }
.fab-petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 0) scale(0.5);
  transition: transform 280ms cubic-bezier(.4,1.4,.5,1), opacity 200ms ease;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fab-petal .lbl {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 180ms ease;
}
.fab-petal:hover .lbl { opacity: 1; }
.fab-root.open .fab-petal { opacity: 1; pointer-events: auto; }
.fab-root.open .fab-petal:hover { background: var(--primary); color: var(--primary-ink); }

.fab-stack {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
}
.fab-stack .fab-trigger-stack {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 200ms ease, background 200ms ease;
  position: relative;
  z-index: 2;
}
.fab-stack .fab-trigger-stack:hover { transform: scale(1.04); }
.fab-stack.open .fab-trigger-stack { background: var(--primary); transform: rotate(45deg); }
.fab-stack-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 18px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.4,1.4,.5,1), background 160ms ease, color 160ms ease;
  pointer-events: none;
}
.fab-stack-item .fab-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  transition: background 160ms ease, color 160ms ease;
}
.fab-stack-item:hover { background: var(--ink); color: var(--bg); }
.fab-stack-item:hover .fab-icon { background: var(--bg); color: var(--ink); }
.fab-stack.open .fab-stack-item { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.fab-pill {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  height: 56px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: width 320ms cubic-bezier(.4,1.1,.4,1), border-radius 200ms ease, background 200ms ease;
  width: 56px;
}
.fab-pill .fab-pill-options {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 8px;
  padding-right: 4px;
  opacity: 0;
  transition: opacity 220ms ease 80ms;
  pointer-events: none;
}
.fab-pill button {
  background: none;
  border: 0;
  color: inherit;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 140ms ease;
}
.fab-pill .fab-pill-options button:hover { background: rgba(255,255,255,0.12); }
.fab-pill .fab-pill-trigger {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 220ms ease;
}
.fab-pill .fab-pill-trigger:hover { background: rgba(255,255,255,0.10); }
.fab-pill.open { width: 440px; background: var(--primary); }
.fab-pill.open .fab-pill-options { opacity: 1; pointer-events: auto; }
.fab-pill.open .fab-pill-trigger { transform: rotate(45deg); }
@media (max-width: 540px) { .fab-pill.open { width: calc(100vw - 56px); } }

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--bg);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: transform 260ms ease, opacity 200ms ease;
  box-shadow: var(--shadow-lg);
  max-width: 90vw;
  text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.h-display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-size: clamp(48px, 8vw, 112px);
}
.h1 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-size: clamp(36px, 5vw, 64px);
}
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.012em;
  font-size: clamp(28px, 3.4vw, 44px);
}
.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
}
.lead { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 60ch; }

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero, .hero-mosaic, .hero-split, .hero-mag, .hero-poster, .hero-layered {
  animation: heroFadeIn 1s ease;
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
  color: var(--primary-ink);
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroKenBurns 24s ease-in-out infinite alternate;
}
@keyframes heroKenBurns { to { transform: scale(1.12) translateY(-10px); } }
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(0% 0 0 / 0.35) 0%, transparent 35%, transparent 60%, oklch(0% 0 0 / 0.55) 100%),
    linear-gradient(90deg, oklch(0% 0 0 / 0.30) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 28px 80px;
  max-width: 1240px;
  margin: 0 auto;
}
.hero-content .kicker { color: oklch(95% 0.02 305); opacity: 0.92; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 144px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 18px 0 28px;
  max-width: 14ch;
  color: white;
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 32px;
  align-items: flex-end;
  font-size: 13px;
  opacity: 0.92;
}
.hero-meta div small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: currentColor;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.hero-split { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 100vh; }
.hero-split .text {
  padding: 140px 56px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  color: var(--ink);
}
.hero-split .img { background-size: cover; background-position: center; }
.hero-split h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 18px 0 28px;
}
.hero-split h1 em { font-style: italic; }

.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(10, 1fr);
  height: 100vh;
  gap: 4px;
  padding: 80px 4px 4px;
  background: var(--bg);
}
.hero-mosaic .m { background-size: cover; background-position: center; position: relative; }
.hero-mosaic .m1 { grid-column: 1 / span 7; grid-row: 1 / span 6; }
.hero-mosaic .m2 { grid-column: 8 / span 5; grid-row: 1 / span 4; }
.hero-mosaic .m3 { grid-column: 8 / span 5; grid-row: 5 / span 6; }
.hero-mosaic .m4 { grid-column: 1 / span 4; grid-row: 7 / span 4; }
.hero-mosaic .m5 { grid-column: 5 / span 3; grid-row: 7 / span 4; background: var(--ink); color: var(--bg); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.hero-mosaic .m5 h1 { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 40px); line-height: 1; font-weight: 400; margin: 0; }
.hero-mosaic .m5 em { font-style: italic; }

.hero-mag { min-height: 100vh; background: var(--bg); padding: 120px 28px 60px; display: grid; grid-template-columns: 220px 1fr; gap: 60px; align-items: start; max-width: 1240px; margin: 0 auto; }
.hero-mag aside { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); border-top: 1px solid var(--ink); padding-top: 14px; }
.hero-mag aside .issue { font-family: var(--serif); font-size: 30px; letter-spacing: -0.01em; text-transform: none; color: var(--ink); margin: 8px 0 14px; }
.hero-mag .main { display: flex; flex-direction: column; gap: 32px; }
.hero-mag h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(60px, 9vw, 160px); line-height: 0.9; letter-spacing: -0.03em; margin: 0; text-align: center; }
.hero-mag h1 em { font-style: italic; }
.hero-mag .hero-mag-img { background-size: cover; background-position: center; height: 50vh; min-height: 360px; }

.hero-poster { position: relative; min-height: 100vh; overflow: hidden; color: white; display: flex; flex-direction: column; justify-content: center; padding: 120px 28px 60px; }
.hero-poster .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, oklch(0% 0 0 / 0.55) 0%, oklch(0% 0 0 / 0.20) 40%, oklch(0% 0 0 / 0.55) 100%); }
.hero-poster .inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; width: 100%; text-align: center; }
.hero-poster .rule-top, .hero-poster .rule-bot { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; border-top: 1px solid currentColor; padding: 14px 0; opacity: 0.85; }
.hero-poster .rule-bot { border-top: 1px solid currentColor; border-bottom: 0; margin-top: 56px; }
.hero-poster .rule-top span, .hero-poster .rule-bot span { padding: 0 8px; }
.hero-poster h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(64px, 13vw, 220px); line-height: 0.88; letter-spacing: -0.04em; margin: 56px 0 0; color: white; }
.hero-poster h1 em { font-style: italic; }
.hero-poster h1 .line { display: block; }
.hero-poster .cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 56px; }

.hero-layered { position: relative; min-height: 100vh; padding: 120px 28px 60px; background: var(--bg); }
.hero-layered .inner { position: relative; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.hero-layered .text { grid-column: 1 / span 2; grid-row: 1; z-index: 2; position: relative; max-width: 18ch; }
.hero-layered h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(64px, 11vw, 168px); line-height: 0.92; letter-spacing: -0.03em; margin: 28px 0 0; color: var(--ink); }
.hero-layered h1 em { font-style: italic; color: var(--primary); }
.hero-layered .img-wrap { grid-column: 2; grid-row: 1; margin-top: clamp(80px, 14vw, 220px); margin-left: clamp(-160px, -12vw, -40px); z-index: 1; }
.hero-layered .img-wrap > div { width: 100%; aspect-ratio: 4/5; background-size: cover; background-position: center; border-radius: var(--radius-lg); overflow: hidden; }
.hero-layered .footer-row { grid-column: 1 / span 2; grid-row: 2; margin-top: 56px; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-top: 28px; border-top: 1px solid var(--hairline); }
.hero-layered .cta-row { display: flex; gap: 12px; }
.hero-layered .meta-row { display: flex; gap: 36px; align-items: flex-end; font-size: 13px; }
.hero-layered .meta-row small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
@media (max-width: 820px) {
  .hero-layered .inner { grid-template-columns: 1fr; }
  .hero-layered .text { grid-column: 1; max-width: none; }
  .hero-layered .img-wrap { grid-column: 1; grid-row: auto; margin: 32px 0 0; }
}

.cottage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }

.cottage-card.editorial { display: flex; flex-direction: column; gap: 16px; cursor: pointer; transition: transform 240ms ease; }
.cottage-card.editorial:hover { transform: translateY(-4px); }
.cottage-card.editorial .img { aspect-ratio: 4/5; background-size: cover; background-position: center; overflow: hidden; transition: filter 240ms ease; }
.cottage-card.editorial .cap { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.cottage-card.editorial h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 0; letter-spacing: -0.01em; }
.cottage-card.editorial .price { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); text-align: right; white-space: nowrap; }
.cottage-card.editorial .price strong { display: block; font-family: var(--serif); font-size: 18px; color: var(--ink); letter-spacing: -0.01em; }
.cottage-card.editorial .desc { font-size: 14px; color: var(--ink-2); }

.cottage-card.postcard { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform 240ms ease, border-color 240ms ease; }
.cottage-card.postcard:hover { transform: translateY(-4px); border-color: var(--primary); }
.cottage-card.postcard .img { aspect-ratio: 3/2; background-size: cover; background-position: center; position: relative; }
.cottage-card.postcard .img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, oklch(0% 0 0 / 0.35), transparent 50%); }
.cottage-card.postcard .img .badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--bg); color: var(--ink); font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; padding: 6px 10px; border-radius: 999px; }
.cottage-card.postcard .body { padding: 20px 22px 24px; }
.cottage-card.postcard h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 24px; }
.cottage-card.postcard .meta { display: flex; gap: 14px; margin-top: 12px; font-size: 12px; color: var(--muted); }
.cottage-card.postcard .price { margin-top: 18px; display: flex; align-items: baseline; justify-content: space-between; }
.cottage-card.postcard .price strong { font-family: var(--serif); font-size: 22px; }

.cottage-list { display: flex; flex-direction: column; }
.cottage-card.minimal { display: grid; grid-template-columns: 96px 1fr auto auto; gap: 28px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--hairline); cursor: pointer; transition: padding 200ms ease; }
.cottage-card.minimal:hover { padding-left: 8px; }
.cottage-card.minimal .img { width: 96px; height: 96px; background-size: cover; background-position: center; }
.cottage-card.minimal h3 { font-family: var(--serif); font-size: 28px; margin: 0; font-weight: 500; }
.cottage-card.minimal .desc { font-size: 13px; color: var(--muted); margin-top: 4px; max-width: 50ch; }
.cottage-card.minimal .price { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.cottage-card.minimal .price strong { display: block; font-family: var(--serif); font-size: 20px; color: var(--ink); }
.cottage-card.minimal .arrow { font-family: var(--serif); font-size: 28px; color: var(--muted); transition: transform 240ms ease, color 240ms ease; }
.cottage-card.minimal:hover .arrow { transform: translateX(6px); color: var(--primary); }

.wizard { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
@media (max-width: 980px) { .wizard { grid-template-columns: 1fr; } }
.wizard-stepper { display: flex; gap: 0; margin-bottom: 48px; border-bottom: 1px solid var(--hairline); }
.wizard-step { flex: 1; padding: 16px 4px; border-bottom: 2px solid transparent; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-align: left; background: none; border-top: 0; border-left: 0; border-right: 0; display: flex; gap: 12px; align-items: center; }
.wizard-step .num { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--hairline); font-size: 10px; }
.wizard-step.active { color: var(--ink); border-bottom-color: var(--primary); }
.wizard-step.active .num { background: var(--primary); color: var(--primary-ink); border-color: var(--primary); }
.wizard-step.done { color: var(--ink-2); }
.wizard-step.done .num { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.summary { position: sticky; top: 96px; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 28px; }
.summary h3 { font-family: var(--serif); font-size: 22px; margin: 0 0 6px; font-weight: 500; }
.summary .summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.summary .summary-row span:first-child { color: var(--muted); }
.summary .summary-total { border-top: 1px solid var(--hairline); padding-top: 16px; margin-top: 12px; display: flex; justify-content: space-between; align-items: baseline; }
.summary .summary-total strong { font-family: var(--serif); font-size: 32px; letter-spacing: -0.01em; }

.activity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.activity-card { border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--surface); cursor: pointer; transition: border-color 180ms ease, transform 180ms ease, background 180ms ease; display: flex; flex-direction: column; overflow: hidden; }
.activity-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.activity-card:hover .activity-img { transform: scale(1.04); }
.activity-card.selected { border-color: var(--primary); background: oklch(from var(--primary) l c h / 0.07); }
.activity-card .activity-img-wrap { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.activity-card .activity-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 500ms ease; }
.activity-card .activity-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, oklch(0% 0 0 / 0.30)); }
.activity-card .activity-img-meta { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: white; opacity: 0.92; }
.activity-card .activity-img-check { position: absolute; top: 12px; right: 12px; z-index: 2; width: 22px; height: 22px; border-radius: 50%; background: oklch(0% 0 0 / 0.40); border: 1px solid oklch(100% 0 0 / 0.45); color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; transition: background 160ms ease; }
.activity-card.selected .activity-img-check { background: var(--primary); border-color: var(--primary); color: var(--primary-ink); }
.activity-card .activity-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.activity-card h4 { font-family: var(--serif); font-size: 22px; margin: 0; font-weight: 500; line-height: 1.15; }
.activity-card .price { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: auto; padding-top: 6px; display: flex; align-items: baseline; justify-content: space-between; gap: 6px; }
.activity-card .price strong { font-family: var(--serif); color: var(--ink); font-size: 18px; letter-spacing: -0.01em; }
.activity-card .desc { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

.activity-carousel-wrap { position: relative; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
.activity-carousel { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 calc(50vw - 180px); padding: 24px calc(50vw - 180px) 32px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.activity-carousel::-webkit-scrollbar { display: none; }
.activity-carousel .activity-card { flex: 0 0 360px; scroll-snap-align: center; scroll-snap-stop: always; transform: scale(0.86); opacity: 0.55; transition: transform 380ms cubic-bezier(.3,1,.4,1), opacity 320ms ease, box-shadow 320ms ease; border-radius: var(--radius-lg); }
.activity-carousel .activity-card.is-center { transform: scale(1); opacity: 1; box-shadow: var(--shadow); }
.activity-carousel .activity-card.is-near { transform: scale(0.94); opacity: 0.85; }
.activity-carousel .activity-img-wrap { aspect-ratio: 5/4; }
@media (max-width: 760px) { .activity-carousel { scroll-padding: 0 32px; padding: 24px 32px 32px; } .activity-carousel .activity-card { flex: 0 0 80vw; } }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 24px; }
.carousel-controls .arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--hairline); background: var(--surface); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background 160ms ease, border-color 160ms ease, color 160ms ease; }
.carousel-controls .arrow:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.carousel-controls .arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-controls .arrow:disabled:hover { background: var(--surface); color: var(--ink); border-color: var(--hairline); }
.carousel-controls .dots { display: flex; gap: 6px; }
.carousel-controls .dots button { width: 6px; height: 6px; border-radius: 50%; background: var(--hairline); border: 0; padding: 0; cursor: pointer; transition: width 220ms ease, background 220ms ease; }
.carousel-controls .dots button.active { background: var(--primary); width: 22px; border-radius: 999px; }

.activity-stagger { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.activity-stagger .activity-card:nth-child(odd) { margin-top: 48px; }
@media (max-width: 980px) { .activity-stagger { grid-template-columns: repeat(2, 1fr); } .activity-stagger .activity-card:nth-child(odd) { margin-top: 0; } .activity-stagger .activity-card:nth-child(4n+2), .activity-stagger .activity-card:nth-child(4n+3) { margin-top: 32px; } }

.activity-editorial-list { display: flex; flex-direction: column; }
.activity-editorial-row { display: grid; grid-template-columns: 80px 1fr 120px auto; gap: 36px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--hairline); cursor: pointer; position: relative; transition: padding 240ms ease; }
.activity-editorial-row:hover { padding-left: 12px; }
.activity-editorial-row .num { font-family: var(--serif); font-size: 36px; font-weight: 400; color: var(--muted); letter-spacing: -0.02em; }
.activity-editorial-row .meta { display: flex; flex-direction: column; gap: 6px; }
.activity-editorial-row h4 { font-family: var(--serif); font-size: 28px; margin: 0; font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
.activity-editorial-row .when { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.activity-editorial-row .thumb { width: 120px; height: 80px; background-size: cover; background-position: center; border-radius: var(--radius); transition: width 240ms ease, height 240ms ease; }
.activity-editorial-row:hover .thumb { width: 140px; height: 90px; }
.activity-editorial-row .price { font-family: var(--serif); font-size: 22px; text-align: right; white-space: nowrap; }
.activity-editorial-row .price small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; margin-top: 2px; }
.activity-editorial-row .arrow { font-family: var(--serif); font-size: 28px; color: var(--muted); transition: transform 240ms ease, color 240ms ease; }
.activity-editorial-row:hover .arrow { transform: translateX(8px); color: var(--primary); }
@media (max-width: 760px) { .activity-editorial-row { grid-template-columns: 50px 1fr auto; gap: 18px; } .activity-editorial-row .thumb { display: none; } .activity-editorial-row h4 { font-size: 22px; } .activity-editorial-row .num { font-size: 26px; } }

.room-radio-list { display: flex; flex-direction: column; gap: 12px; }
.room-radio { display: grid; grid-template-columns: 120px 1fr auto; gap: 20px; align-items: center; padding: 16px; border: 1px solid var(--hairline); border-radius: var(--radius); cursor: pointer; background: var(--surface); transition: border-color 160ms ease, background 160ms ease; }
.room-radio:hover { border-color: var(--ink); }
.room-radio.selected { border-color: var(--primary); background: oklch(from var(--primary) l c h / 0.06); }
.room-radio .img { aspect-ratio: 4/3; width: 120px; background-size: cover; background-position: center; border-radius: var(--radius-sm); }
.room-radio h4 { font-family: var(--serif); font-size: 22px; margin: 0; font-weight: 500; }
.room-radio .desc { font-size: 13px; color: var(--muted); margin-top: 2px; }
.room-radio .price { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.room-radio .price strong { font-family: var(--serif); font-size: 20px; color: var(--ink); display: block; }

.counter { display: inline-flex; align-items: center; border: 1px solid var(--hairline); border-radius: 999px; overflow: hidden; }
.counter button { width: 38px; height: 38px; border: 0; background: var(--surface); color: var(--ink); font-size: 18px; }
.counter button:hover { background: var(--ink); color: var(--bg); }
.counter button:disabled { opacity: 0.3; cursor: not-allowed; }
.counter button:disabled:hover { background: var(--surface); color: var(--ink); }
.counter .val { width: 50px; text-align: center; font-family: var(--serif); font-size: 18px; font-weight: 500; }

.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 820px) { .auth-page { grid-template-columns: 1fr; } .auth-page .auth-image { display: none; } }
.auth-image { background-size: cover; background-position: center; position: relative; }
.auth-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, oklch(from var(--primary) l c h / 0.50), transparent 60%); }
.auth-image .quote { position: absolute; bottom: 40px; left: 40px; right: 40px; color: white; font-family: var(--serif); font-size: 32px; line-height: 1.15; font-weight: 400; z-index: 2; }
.auth-image .quote em { font-style: italic; }
.auth-image .quote-attr { position: absolute; bottom: 24px; right: 40px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: white; opacity: 0.8; z-index: 2; }
.auth-form { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; max-width: 520px; margin: 0 auto; width: 100%; }
.auth-back { background: none; border: 0; padding: 0; margin-bottom: 32px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); cursor: pointer; text-align: left; transition: color 160ms ease; }
.auth-back:hover { color: var(--ink); }
.auth-form h1 { font-family: var(--serif); font-size: 48px; font-weight: 500; margin: 0 0 8px; letter-spacing: -0.02em; }
.auth-form p.lead { font-size: 15px; margin: 0 0 36px; }
.auth-form form { display: flex; flex-direction: column; gap: 16px; }
.auth-form .footnote { margin-top: 24px; font-size: 13px; color: var(--muted); text-align: center; }
.auth-form .oauth-row { display: flex; gap: 10px; }
.auth-form .oauth-row .btn { flex: 1; }
.auth-form .or-row { display: flex; align-items: center; gap: 14px; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; margin: 24px 0; }
.auth-form .or-row hr { flex: 1; border: 0; border-top: 1px solid var(--hairline); }

.footer { background: var(--ink); color: var(--bg); padding: 80px 28px 32px; margin-top: 80px; }
.footer .wrap { padding: 0; }
.footer .grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid oklch(from var(--bg) l c h / 0.18); }
@media (max-width: 760px) { .footer .grid { grid-template-columns: 1fr 1fr; } }
.footer h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 18px; opacity: 0.6; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul li button { background: none; border: 0; color: inherit; padding: 0; font-family: var(--sans); font-size: 14px; opacity: 0.85; text-align: left; }
.footer ul li button:hover { opacity: 1; }
.footer-logo { height: 72px; width: auto; display: block; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand-name { font-family: var(--serif); font-size: 24px; line-height: 1.05; max-width: 10ch; }
.footer .brand-block p { max-width: 38ch; font-size: 14px; opacity: 0.7; margin-top: 12px; }
.footer .bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 12px; opacity: 0.55; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }

.detail-hero { position: relative; height: 70vh; min-height: 480px; background-size: cover; background-position: center; }
.detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, oklch(0% 0 0 / 0.3), transparent 40%, oklch(0% 0 0 / 0.4)); }
.detail-hero .title { position: absolute; left: 28px; right: 28px; bottom: 60px; max-width: 1240px; margin: 0 auto; color: white; z-index: 2; }
.detail-hero h1 { font-family: var(--serif); font-size: clamp(48px, 8vw, 112px); font-weight: 400; line-height: 0.94; margin: 12px 0 0; letter-spacing: -0.02em; }
.detail-hero h1 em { font-style: italic; }
.detail-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; padding: 80px 28px; }
@media (max-width: 980px) { .detail-body { grid-template-columns: 1fr; } }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; margin-top: 32px; }
.spec-list dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.spec-list dd { margin: 0; font-family: var(--serif); font-size: 22px; font-weight: 500; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery .g { aspect-ratio: 1; background-size: cover; background-position: center; }
.gallery .g.lg { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }

.notice { background: oklch(from var(--primary) l c h / 0.08); border: 1px solid oklch(from var(--primary) l c h / 0.25); padding: 14px 18px; border-radius: var(--radius); font-size: 13px; color: var(--ink-2); display: flex; gap: 10px; align-items: flex-start; }
.notice .mono { color: var(--primary); margin-top: 2px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .img-block { order: -1; }
}

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { padding: 28px; border: 1px solid var(--hairline); border-radius: var(--radius); }
.info-card + .info-card { margin-top: 16px; }
.info-card h4 { margin: 0; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; font-weight: 500; }
.info-card .val { font-family: var(--serif); font-size: 22px; margin-top: 6px; }

.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 820px) {
  .feature-split { grid-template-columns: 1fr; direction: ltr !important; }
  .feature-split .img-block { order: -1; }
}
.feature-split .img-block { aspect-ratio: 4/5; background-size: cover; background-position: center; }

.tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; background: oklch(from var(--primary) l c h / 0.12); color: var(--primary); }

@media (max-width: 760px) {
  .wizard { gap: 32px; }
  .section { padding: 64px 0; }
  .newsletter-wrap,
  .newsletter-form,
  .cta-lead-grid,
  .field-row { grid-template-columns: 1fr; }
  .cta-lead-section { padding: 72px 0; }
  .cta-lead-form { padding: 20px; }
  .cta-form-actions { align-items: stretch; flex-direction: column; }
  .topnav nav { display: none; }
  .auth-form { padding: 60px 24px; }
  .detail-hero { min-height: 420px; height: 62vh; }
  .detail-hero .title { left: 20px; right: 20px; bottom: 32px; }
  .detail-hero h1 { font-size: clamp(42px, 14vw, 64px); overflow-wrap: anywhere; }
  .detail-body { padding: 56px 20px; gap: 44px; overflow-wrap: anywhere; }
  .detail-body aside { position: static !important; }
  .spec-list { grid-template-columns: 1fr; gap: 18px; }
  .room-radio { grid-template-columns: 80px 1fr; }
  .room-radio .price { grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid var(--hairline); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-mosaic { grid-template-rows: repeat(8, 1fr); gap: 5px; padding: 82px 6px 6px; }
  .hero-mosaic .m3 { grid-column: 9 / span 4; }
  .hero-mosaic .m5 {
    grid-column: 5 / span 4;
    padding: 16px 12px;
    overflow: hidden;
  }
  .hero-mosaic .m5 h1 { font-size: clamp(25px, 8vw, 34px); }
  .hero-mosaic .m5 .btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 10px 8px;
    font-size: 13px;
    line-height: 1;
  }
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split .img { order: -1; min-height: 50vh; }
  .hero-split .text { padding: 60px 24px 40px; }
  .hero-mag { grid-template-columns: 1fr; padding: 100px 20px 40px; gap: 32px; }
  .cottage-card.minimal { grid-template-columns: 72px 1fr auto; gap: 14px; }
  .cottage-card.minimal .img { width: 72px; height: 72px; }
  .lead-block { grid-template-columns: 1fr !important; gap: 40px !important; }
  .note-from-desk-img { aspect-ratio: 3/2 !important; }
  .menu-hours-strip { grid-template-columns: 1fr !important; }
  .menu-hours-strip a { border-left: none !important; border-top: 1px solid var(--hairline); }
  .menu-notices { grid-template-columns: 1fr !important; }
  .menu-section-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .menu-section-left { position: static !important; }
  .menu-drinks-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

.view-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.view-toggle button {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease;
}
.view-toggle button:hover { background: var(--surface-2); color: var(--ink); }
.view-toggle button.active { background: var(--ink); color: var(--bg); }

/* ============================================================
   Nabugabo Holiday Center — Navbar User Menu Premium Styling
   ============================================================ */
.nav-user-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  position: relative;
  padding: 0;
  letter-spacing: 0;
}
.nav-user-avatar:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}
.nav-user-avatar:active {
  transform: scale(0.98);
}

.nav-user-avatar.has-notif::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: oklch(62% 0.18 25); /* Elegant warm rose/orange badge color */
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px oklch(62% 0.18 25 / 0.2);
  animation: pulseNotif 2.2s infinite;
}

@keyframes pulseNotif {
  0% { transform: scale(1); box-shadow: 0 0 0 0 oklch(62% 0.18 25 / 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px oklch(62% 0.18 25 / 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 oklch(62% 0.18 25 / 0); }
}

.nav-user-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: top right;
  transition: opacity 220ms cubic-bezier(.4, 0, .2, 1), transform 220ms cubic-bezier(.4, 0, .2, 1), visibility 220ms;
  z-index: 100;
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
}
.nav-user-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.num-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.num-avatar-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
}
.num-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.num-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.num-email {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.num-booking {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.num-booking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.num-booking-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.num-badge {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  line-height: 1.35;
}
.num-badge-pending {
  background: oklch(94% 0.05 90);
  color: oklch(42% 0.12 85);
}
.num-badge-confirmed {
  background: oklch(93% 0.06 145);
  color: oklch(38% 0.12 145);
}
.num-badge-checked-in {
  background: oklch(93% 0.06 240);
  color: oklch(38% 0.12 240);
}
.num-badge-completed {
  background: var(--surface-2);
  color: var(--muted);
}

.num-booking-cottage {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.num-booking-dates {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-2);
}
.num-booking-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
  border-top: 1px solid var(--hairline);
  padding-top: 8px;
  margin-top: 4px;
}

.num-no-booking {
  background: var(--bg);
  border: 1px dashed var(--hairline);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.num-book-link {
  background: none;
  border: 0;
  color: var(--primary);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  transition: opacity 140ms ease;
}
.num-book-link:hover {
  text-decoration: underline;
  opacity: 0.95;
}

.num-divider {
  height: 1px;
  background: var(--hairline);
  margin: 2px 0;
}

.num-action {
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 120ms ease;
  text-align: center;
  display: block;
}
.num-action:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.num-action:active {
  transform: translateY(0);
}
