/* Sea La Vie — Luxury Residences Diani · v2 (brand palette from logo) */

:root {
  /* From the official logo: deep navy + sky blue on warm cream */
  --ivory: #f6f1e7;
  --ivory-deep: #ece4d2;
  --paper: #fcfaf3;
  --paper-warm: #faf6ec;
  --ink: #0e2a4e;
  --ink-soft: #2b4870;
  --ink-mute: #6a7a93;
  --sky: #7ba3d1;
  --sky-deep: #4f7eb2;
  --sky-pale: #c4d6e8;
  --sand: #d8cfb9;
  --sand-mist: #e4ddc9;
  --line: rgba(14, 42, 78, 0.16);
  --line-soft: rgba(14, 42, 78, 0.09);
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

/* TYPE */
.display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.04;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--sky-deep);
}
.eyebrow-ink { color: var(--ink); }
.script-mono {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* LOGO MARK (SVG) */
.logo-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.logo-mark .wordmark {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.16em;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark .wordmark .sea, .logo-mark .wordmark .vie { color: var(--ink); }
.logo-mark .wordmark .la { color: var(--sky); position: relative; }
.logo-mark .wordmark .la::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: -6px;
  height: 6px;
  background:
    radial-gradient(ellipse at center top, transparent 50%, var(--sky-deep) 50% 60%, transparent 60%);
}
.logo-mark .sub {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.logo-mark .sub .rule { width: 18px; height: 1px; background: var(--sky); }

/* SVG version of the logo */
.brand-logo {
  width: 240px;
  display: block;
  margin: 0 auto;
}
.brand-logo.compact { width: 170px; }
.brand-logo.tiny { width: 130px; }

/* UTILITY BAR */
.utility-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 40px;
  background: var(--ink);
  color: rgba(246, 241, 231, 0.85);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.utility-bar a, .utility-bar button {
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0;
}
.utility-bar .group { display: flex; gap: 28px; align-items: center; }
.utility-bar .group a:hover, .utility-bar .group button:hover { color: var(--sky); }
.utility-divider { width: 1px; height: 12px; background: rgba(246,241,231,0.22); }

/* MAIN NAV */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.main-nav .nav-left, .main-nav .nav-right {
  display: flex;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
}
.main-nav .nav-right { justify-content: flex-end; }
.main-nav a {
  color: inherit;
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  cursor: pointer;
}
.main-nav a:hover { color: var(--sky-deep); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  transform: translateX(-50%);
  width: 14px; height: 1px;
  background: var(--sky);
}

/* HERO */
.hero {
  position: relative;
  height: 760px;
  overflow: hidden;
  background: var(--ink);
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,42,78,0.45) 0%, rgba(14,42,78,0.25) 35%, rgba(14,42,78,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--ivory);
  padding: 0 40px;
}
.hero-content .eyebrow { color: var(--sky-pale); }
.hero-content h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 1.02;
  margin: 22px 0 24px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 30px rgba(14,42,78,0.5);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--sky-pale);
  font-weight: 300;
}
.hero-content .lede {
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(246, 241, 231, 0.92);
  font-weight: 300;
  text-shadow: 0 1px 20px rgba(14,42,78,0.6);
}
.hero-content .ornament {
  display: flex; align-items: center; gap: 14px;
  margin: 18px 0 6px;
}
.hero-content .ornament span {
  width: 36px; height: 1px; background: var(--sky);
}
.hero-content .ornament .dot {
  width: 4px; height: 4px; background: var(--sky); border-radius: 50%;
}

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.78);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, rgba(246,241,231,0.7), rgba(246,241,231,0));
}

/* BOOKING WIDGET */
.booking-widget {
  position: relative;
  z-index: 10;
  margin: -76px auto 0;
  max-width: 1180px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -40px rgba(14, 42, 78, 0.45);
}
.booking-tabs {
  display: flex;
  border-bottom: 1px solid var(--line-soft);
}
.booking-tabs button {
  flex: 0 0 auto;
  padding: 18px 32px;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.booking-tabs button.active {
  color: var(--ink);
  border-bottom-color: var(--sky);
}
.booking-tabs button:hover { color: var(--ink); }

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
}
.booking-field {
  padding: 22px 28px;
  border-right: 1px solid var(--line-soft);
  cursor: pointer;
  position: relative;
  transition: background 0.18s;
}
.booking-field:hover { background: var(--ivory); }
.booking-field .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 6px;
}
.booking-field .value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.2;
}
.booking-field .sub {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.booking-search {
  background: var(--ink);
  color: var(--ivory);
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0 44px;
  cursor: pointer;
  transition: background 0.2s;
}
.booking-search:hover { background: var(--sky-deep); }

/* CALENDAR POPOVER */
.cal-pop {
  position: absolute;
  top: calc(100% + 6px);
  left: -1px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 24px 60px;
  z-index: 30;
  display: flex;
  gap: 28px;
  box-shadow: 0 24px 60px -28px rgba(14,42,78,0.45);
}
.cal-month { width: 268px; }
.cal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.cal-title {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.05em;
}
.cal-nav { background: none; border: none; cursor: pointer; color: var(--ink); padding: 4px 8px; font-size: 14px; }
.cal-nav:hover { color: var(--sky-deep); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-dow {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink-mute);
  padding: 6px 0 8px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  font-weight: 300;
  color: var(--ink);
}
.cal-day:hover:not(.disabled):not(.unavailable) { background: var(--ivory-deep); }
.cal-day.empty { cursor: default; }
.cal-day.disabled { color: var(--sand); cursor: not-allowed; }
.cal-day.unavailable {
  color: var(--sand);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: var(--sand);
}
.cal-day.in-range { background: var(--sky-pale); color: var(--ink); }
.cal-day.selected {
  background: var(--ink);
  color: var(--ivory);
}
.cal-day.range-start { background: var(--ink); color: var(--ivory); }
.cal-day.range-end { background: var(--ink); color: var(--ivory); }
.cal-day .price-tag {
  position: absolute;
  bottom: 1px;
  font-size: 8px;
  color: var(--sky-deep);
  letter-spacing: 0;
}
.cal-day.unavailable .price-tag, .cal-day.selected .price-tag, .cal-day.in-range .price-tag { color: inherit; opacity: 0.7; }
.cal-legend {
  display: flex;
  gap: 18px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cal-legend .sw {
  display: inline-block; width: 9px; height: 9px; margin-right: 6px; vertical-align: middle;
}
.cal-legend .sw.avail { background: var(--paper); border: 1px solid var(--line); }
.cal-legend .sw.sel { background: var(--ink); }
.cal-legend .sw.unav { background: var(--sand-mist); }

/* GUEST POPOVER */
.guest-pop {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 26px;
  width: 320px;
  z-index: 30;
  box-shadow: 0 24px 60px -28px rgba(14,42,78,0.45);
}
.guest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.guest-row:last-child { border-bottom: none; }
.guest-row .label-block .l { font-family: var(--serif); font-size: 16px; }
.guest-row .label-block .s { font-size: 11px; color: var(--ink-mute); }
.guest-stepper { display: flex; align-items: center; gap: 14px; }
.guest-stepper button {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}
.guest-stepper button:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.guest-stepper button:disabled { color: var(--sand); cursor: not-allowed; background: var(--paper); }
.guest-stepper button:disabled:hover { background: var(--paper); color: var(--sand); border-color: var(--line); }
.guest-stepper .count { font-family: var(--serif); font-size: 18px; min-width: 14px; text-align: center; }

/* VILLA SELECT POPOVER */
.villa-pop {
  position: absolute;
  top: calc(100% + 6px);
  left: -1px;
  width: 320px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 0;
  z-index: 30;
  box-shadow: 0 24px 60px -28px rgba(14,42,78,0.45);
}
.villa-pop button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 12px 22px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.villa-pop button:last-child { border-bottom: none; }
.villa-pop button .vl { font-family: var(--serif); font-size: 16px; }
.villa-pop button .vs { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.villa-pop button:hover { background: var(--ivory); }
.villa-pop button .stat { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.villa-pop button .stat.avail { color: var(--sky-deep); }
.villa-pop button .stat.unav { color: var(--ink-mute); }

/* SECTION */
.section {
  padding: 110px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.section.tight { padding-top: 60px; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 60px);
  margin: 14px 0 18px;
  line-height: 1.05;
}
.section-header h2 em { font-style: italic; color: var(--sky-deep); font-weight: 300; }
.section-header p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.ornament-row {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  margin-bottom: 4px;
}
.ornament-row span { width: 28px; height: 1px; background: var(--sky); }
.ornament-row .dot { width: 3px; height: 3px; background: var(--sky); border-radius: 50%; }

/* DISCOVER TABS */
.discover-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.discover-tabs button {
  padding: 16px 26px;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.discover-tabs button:hover { color: var(--ink); }
.discover-tabs button.active {
  color: var(--ink);
  border-bottom-color: var(--sky);
}
.discover-tabs button .count {
  font-size: 9px;
  vertical-align: super;
  color: var(--sky-deep);
  margin-left: 4px;
  letter-spacing: 0.04em;
}

/* VILLA GRID */
.villa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
}
.villa-card { cursor: pointer; }
.villa-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.villa-image .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--paper);
  padding: 6px 12px;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sky-deep);
}
.villa-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.villa-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin: 0;
  line-height: 1.1;
}
.villa-card h3 em { font-style: italic; color: var(--sky-deep); }
.villa-rate {
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.villa-rate strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.villa-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.villa-attrs {
  display: flex;
  gap: 22px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.villa-attrs span strong {
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--serif);
  font-size: 15px;
  margin-right: 5px;
}

/* AVAILABILITY STRIP */
.avail-strip {
  background: var(--paper);
  border: 1px solid var(--line);
}
.avail-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px;
  border-bottom: 1px solid var(--line-soft);
}
.avail-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0;
}
.avail-head h3 em { font-style: italic; color: var(--sky-deep); }
.avail-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}
.avail-controls .month-label {
  font-family: var(--serif);
  font-size: 17px;
  min-width: 160px;
  text-align: center;
}
.avail-controls button {
  width: 34px; height: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  font-family: var(--serif);
}
.avail-controls button:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.avail-table {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.avail-villa-label {
  padding: 22px 28px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--ivory);
}
.avail-villa-label .n { font-family: var(--serif); font-size: 17px; color: var(--ink); }
.avail-villa-label .r { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.06em; margin-top: 3px; }
.avail-villa-label.head { background: var(--paper); padding: 14px 28px; }
.avail-villa-label.head .n { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); font-family: var(--sans); }
.avail-cells {
  display: grid;
  grid-template-columns: repeat(31, 1fr);
  border-bottom: 1px solid var(--line-soft);
}
.avail-cells.head {
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.avail-cells.head .ac {
  border-right: 1px solid var(--line-soft);
  padding: 14px 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  font-family: var(--sans);
  cursor: default;
  height: auto;
}
.avail-cells.head .ac.weekend { color: var(--sky-deep); }
.ac {
  border-right: 1px solid var(--line-soft);
  height: 56px;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
}
.ac.avail { background: var(--paper); }
.ac.avail:hover { background: var(--sky-pale); }
.ac.booked { background: var(--sand-mist); cursor: not-allowed; }
.ac.booked::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(14,42,78,0.07) 4px, rgba(14,42,78,0.07) 5px);
}
.ac.held { background: var(--sky-pale); }
.ac.selected { background: var(--ink); }
.ac.selected::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: var(--sky); border-radius: 50%;
}
.avail-legend {
  display: flex;
  gap: 28px;
  padding: 18px 36px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  align-items: center;
}
.avail-legend .swatch {
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 8px;
  vertical-align: middle;
}
.avail-legend .swatch.avail { background: var(--paper); border: 1px solid var(--line); }
.avail-legend .swatch.booked { background: var(--sand-mist); }
.avail-legend .swatch.held { background: var(--sky-pale); }
.avail-legend .swatch.sel { background: var(--ink); }

/* EXPERIENCES GRID */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.exp-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.3s;
}
.exp-card:hover { border-color: var(--sky); }
.exp-image {
  aspect-ratio: 5 / 4;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.exp-image .pcat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(252,250,243,0.95);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 10px;
  color: var(--sky-deep);
}
.exp-image .provider {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(14,42,78,0.78);
  color: var(--ivory);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}
.exp-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.exp-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 6px;
  line-height: 1.15;
}
.exp-card h4 em { font-style: italic; color: var(--sky-deep); }
.exp-meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.exp-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 14px;
  color: var(--sand);
}
.exp-card p {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0 0 22px;
  flex: 1;
}
.exp-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.exp-price {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.exp-price .from {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 6px;
}
.exp-book {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s, border-color 0.2s;
}
.exp-book:hover { color: var(--sky-deep); border-bottom-color: var(--sky-deep); }

/* PROVENANCE */
.provenance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 80px;
  background: var(--ivory-deep);
}
.provenance-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  position: relative;
}
.provenance-copy h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.05;
  margin: 18px 0 26px;
}
.provenance-copy h2 em { font-style: italic; color: var(--sky-deep); font-weight: 300; }
.provenance-copy p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 24px;
}

.facts {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.facts > div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.facts > div:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 30px; }
.facts > div:nth-child(even) { padding-left: 30px; }
.facts .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 6px;
}
.facts .value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}

/* JOURNAL */
.journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.j-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s;
}
.j-card:hover { transform: translateY(-3px); }
.j-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
}
.j-card.feature .j-image { aspect-ratio: 3 / 4; }
.j-card .j-meta {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 8px;
}
.j-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 10px;
  line-height: 1.2;
}
.j-card.feature h4 { font-size: 30px; }
.j-card h4 em { font-style: italic; color: var(--sky-deep); }
.j-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.j-card .j-read {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.j-card .j-read::after { content: "→"; color: var(--sky-deep); }

/* CTA / BUTTONS */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.btn-line .arrow { width: 22px; height: 1px; background: currentColor; position: relative; display: inline-block; }
.btn-line .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn-line:hover { color: var(--sky-deep); border-bottom-color: var(--sky-deep); }

.btn-solid {
  display: inline-block;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  padding: 18px 36px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-solid:hover { background: var(--sky-deep); }

/* FOOTER */
.footer {
  background: var(--ink);
  color: rgba(246, 241, 231, 0.82);
  padding: 100px 40px 40px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(246,241,231,0.12);
}
.footer .brand-block .brand-logo { margin: 0 0 22px; }
.footer p { font-size: 13px; line-height: 1.7; color: rgba(246,241,231,0.7); }
.footer h5 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 22px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a {
  color: rgba(246,241,231,0.72);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--sky); }
.footer-news { font-size: 13px; }
.footer-news .news-input {
  display: flex;
  margin-top: 18px;
  border-bottom: 1px solid rgba(246,241,231,0.2);
  padding-bottom: 10px;
}
.footer-news input {
  flex: 1;
  background: none;
  border: none;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 13px;
  padding: 4px 0;
  outline: none;
}
.footer-news input::placeholder { color: rgba(246,241,231,0.4); }
.footer-news .news-input button {
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0 0 0 14px;
}
.footer-news .news-input button:hover { color: var(--sky); }
.footer-bottom {
  max-width: 1400px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.45);
}
.footer-bottom .links { display: flex; gap: 28px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--sky); }

/* MODAL */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(14, 42, 78, 0.55);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 880px; max-width: 100%;
  max-height: 90vh;
  overflow: hidden;
  animation: rise 0.3s ease;
}
@keyframes rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-aside {
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--ivory);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.modal-aside::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,42,78,0.45), rgba(14,42,78,0.78));
}
.modal-aside > * { position: relative; z-index: 1; }
.modal-aside h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 38px;
  line-height: 1.1;
  margin: 18px 0 16px;
}
.modal-aside h3 em { font-style: italic; color: var(--sky-pale); }
.modal-aside p { font-size: 14px; line-height: 1.7; color: rgba(246,241,231,0.85); }
.modal-aside .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(246,241,231,0.92);
}
.modal-body {
  padding: 50px 44px;
  position: relative;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  width: 32px; height: 32px;
  font-family: var(--serif);
  z-index: 2;
}
.modal-close:hover { color: var(--sky-deep); }
.modal-body h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  margin: 4px 0 8px;
  line-height: 1.1;
}
.modal-body h2 em { font-style: italic; color: var(--sky-deep); }
.modal-body > p {
  font-size: 13.5px;
  color: var(--ink-mute);
  margin: 0 0 26px;
  line-height: 1.6;
}
.field-group { margin-bottom: 16px; }
.field-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 6px;
}
.field-group input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 8px 0 10px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.field-group input:focus { border-bottom-color: var(--sky-deep); }
.modal-body .row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  margin: 12px 0 24px;
}
.modal-body .row a { color: var(--sky-deep); text-decoration: none; }
.modal-body .submit {
  width: 100%;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  padding: 18px 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
}
.modal-body .submit:hover { background: var(--sky-deep); }
.modal-body .divider {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 22px 0;
  position: relative;
}
.modal-body .divider::before, .modal-body .divider::after {
  content: ""; position: absolute; top: 50%; width: calc(50% - 30px);
  height: 1px; background: var(--line);
}
.modal-body .divider::before { left: 0; }
.modal-body .divider::after { right: 0; }
.modal-body .alt-create {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 22px;
}
.modal-body .alt-create a { color: var(--sky-deep); }

/* CONFIRM RESERVATION MODAL */
.confirm-modal {
  background: var(--paper);
  width: 620px; max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.confirm-modal .head {
  padding: 36px 40px 24px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.confirm-modal .head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  margin: 10px 0 6px;
  line-height: 1.1;
}
.confirm-modal .head h2 em { font-style: italic; color: var(--sky-deep); }
.confirm-modal .head p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.confirm-modal .body { padding: 28px 40px; }
.confirm-modal .summary {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 24px;
}
.confirm-modal .summary > div { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.confirm-modal .summary .l {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sky-deep);
}
.confirm-modal .summary .v {
  font-family: var(--serif); font-size: 20px; color: var(--ink); margin-top: 4px;
}
.confirm-modal .total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  margin-top: 6px;
}
.confirm-modal .total .lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); }
.confirm-modal .total .amt { font-family: var(--serif); font-size: 36px; color: var(--ink); }
.confirm-modal .actions {
  padding: 0 40px 36px;
  display: flex; gap: 14px;
}
.confirm-modal .actions button { flex: 1; }
.confirm-modal .actions .ghost {
  background: var(--paper); color: var(--ink); border: 1px solid var(--line);
  padding: 18px 0;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  cursor: pointer;
}
.confirm-modal .actions .ghost:hover { background: var(--ivory); }

.success-state {
  text-align: center;
  padding: 60px 40px;
}
.success-state .check {
  width: 60px; height: 60px;
  border: 1px solid var(--sky);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--sky-deep);
}
.success-state h2 { font-family: var(--serif); font-weight: 300; font-size: 32px; margin: 0 0 12px; }
.success-state h2 em { font-style: italic; color: var(--sky-deep); }
.success-state .ref {
  display: inline-block;
  margin: 18px 0;
  padding: 10px 22px;
  background: var(--ivory);
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--ink);
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(246, 241, 231, 0.98);
  z-index: 100;
  padding: 80px 60px;
  overflow-y: auto;
  animation: fadeIn 0.25s ease;
}
.search-overlay .close-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 60px;
}
.search-overlay .input-wrap {
  max-width: 920px;
  margin: 0 auto;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.search-overlay input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--serif);
  font-size: 38px;
  color: var(--ink);
  font-weight: 300;
  padding: 6px 0;
}
.search-overlay input::placeholder { color: var(--sand); font-style: italic; }
.search-overlay .results {
  max-width: 920px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.search-overlay .group h5 {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin: 0 0 16px;
}
.search-overlay .group ul { list-style: none; padding: 0; margin: 0; }
.search-overlay .group li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.search-overlay .group li:hover { color: var(--sky-deep); }
.search-overlay .group li .tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.search-overlay .closebtn {
  background: none; border: 1px solid var(--ink);
  width: 44px; height: 44px;
  font-size: 18px;
  cursor: pointer; color: var(--ink);
  font-family: var(--serif);
}
.search-overlay .closebtn:hover { background: var(--ink); color: var(--ivory); }

/* MARQUEE */
.marquee {
  background: var(--ink);
  color: rgba(246,241,231,0.85);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(246,241,231,0.08);
  border-bottom: 1px solid rgba(246,241,231,0.08);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 60s linear infinite;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.marquee-track span { display: flex; align-items: center; gap: 60px; }
.marquee-track .sep { color: var(--sky); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ADMIN PANEL */
.admin-panel {
  background: var(--paper);
  padding: 18px;
  border: 1px solid var(--line);
  margin-top: 14px;
}
.admin-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.admin-row label {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute);
  min-width: 60px;
}
.admin-row select {
  flex: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 8px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink);
}
.admin-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-top: 10px;
}
.admin-cal .ad {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  cursor: pointer;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  color: var(--ink);
}
.admin-cal .ad.empty { cursor: default; background: transparent; border-color: transparent; }
.admin-cal .ad.booked { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.admin-cal .ad:hover:not(.empty) { background: var(--sky-pale); }
.admin-cal .ad.booked:hover { background: var(--ink-soft); }
.admin-note {
  font-size: 10px;
  color: var(--ink-mute);
  margin-top: 10px;
  letter-spacing: 0.04em;
  font-style: italic;
}

/* MISC */
.tab-pane { animation: paneIn 0.4s ease; }
@keyframes paneIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* PRICE BREAKDOWN ROW */
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.price-row.total {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 14px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

/* LOCATION MAP SECTION */
.location-section {
  padding: 100px 40px;
}
.location-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.location-copy h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  margin: 14px 0 22px;
}
.location-copy h2 em { font-style: italic; font-weight: 300; }
.location-copy p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 22px;
}
.location-facts {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  border-top: 1px solid currentColor;
  padding-top: 22px;
  opacity: 0.95;
}
.location-facts > div {
  border-bottom: 1px dotted rgba(127,127,127,0.3);
  padding-bottom: 12px;
}
.location-facts .lbl {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}
.location-facts .val {
  font-family: var(--serif); font-size: 18px;
}
.location-map {
  aspect-ratio: 4 / 3;
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}

@media (max-width: 960px) {
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .location-section { padding: 70px 22px; }
  .location-facts { grid-template-columns: 1fr; }
}

/* CURRENCY SWITCHER */
.currency-switch {
  display: inline-flex;
  gap: 0;
  border: 1px solid rgba(246,241,231,0.22);
}
.currency-switch button {
  background: none;
  border: none;
  color: rgba(246,241,231,0.7);
  padding: 4px 9px;
  font-size: 10px;
  letter-spacing: 0.18em;
  cursor: pointer;
  font-family: inherit;
  border-right: 1px solid rgba(246,241,231,0.18);
}
.currency-switch button:last-child { border-right: none; }
.currency-switch button.active {
  background: var(--sky);
  color: var(--ink);
}
.currency-switch button:hover:not(.active) { color: var(--ivory); background: rgba(246,241,231,0.08); }

.mobile-currency {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.mobile-currency .lbl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute);
}
.mobile-currency .currency-switch { border-color: var(--line); }
.mobile-currency .currency-switch button { color: var(--ink-mute); border-color: var(--line-soft); }
.mobile-currency .currency-switch button.active { background: var(--ink); color: var(--ivory); }
.mobile-currency .currency-switch button:hover:not(.active) { color: var(--ink); background: var(--ivory-deep); }

.legal-body p strong, .legal-body ul li strong { color: var(--ink); font-weight: 500; }
.legal-body a { color: var(--sky-deep); }
.legal-body a:hover { color: var(--ink); }
.legal-body ul { margin: 6px 0; }
.legal-body ul li { margin-bottom: 6px; }

@media (max-width: 700px) {
  .legal-body div[style*="grid-template-columns: 1fr 2fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
}

/* gradient banner */
.banner-strip {
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 32%, var(--sky-deep) 32%, var(--sky-deep) 50%, var(--sky) 50% 100%);
  height: 6px;
}

/* PAGE HEAD (interior pages) */
.page-head {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--ink);
}
.page-head .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-head .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,42,78,0.62) 0%, rgba(14,42,78,0.82) 100%);
}
.page-head .inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  height: 100%; padding: 0 40px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; color: var(--ivory);
}
.page-head .eyebrow { color: var(--sky-pale); }
.page-head h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.2vw, 72px);
  margin: 18px 0 18px;
  line-height: 1.04;
  text-shadow: 0 2px 30px rgba(14,42,78,0.5);
}
.page-head h1 em { font-style: italic; color: var(--sky-pale); }
.page-head p { font-size: 16px; line-height: 1.7; max-width: 620px; color: rgba(246,241,231,0.9); }
.page-head .crumbs {
  margin-top: 26px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(246,241,231,0.7);
}
.page-head .crumbs a { color: inherit; text-decoration: none; }
.page-head .crumbs a:hover { color: var(--sky-pale); }
.page-head .crumbs .sep { margin: 0 12px; opacity: 0.5; }

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 36px;
}
.contact-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 10px;
}
.contact-card h3 em { font-style: italic; color: var(--sky-deep); }
.contact-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .l {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sky-deep);
}
.contact-row .v {
  font-family: var(--serif); font-size: 16px; color: var(--ink); text-align: right;
}
.contact-row .v a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-row .v a:hover { color: var(--sky-deep); border-bottom-color: var(--sky-deep); }

/* ENQUIRY FORM */
.enquiry-form .field-group { margin-bottom: 20px; }
.enquiry-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.enquiry-form textarea {
  width: 100%;
  background: none;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s;
}
.enquiry-form textarea:focus { border-color: var(--sky-deep); }
.enquiry-form .submit {
  background: var(--ink); color: var(--ivory); border: none;
  padding: 18px 36px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  cursor: pointer;
  margin-top: 12px;
}
.enquiry-form .submit:hover { background: var(--sky-deep); }
.enquiry-form .ok-msg {
  background: var(--ivory-deep);
  border-left: 3px solid var(--sky);
  padding: 18px 22px;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  margin-top: 18px;
}
.enquiry-form .err-msg {
  background: #fbe9ea;
  border-left: 3px solid #b94a4a;
  padding: 14px 18px;
  font-size: 14px;
  color: #6b2222;
  margin-top: 18px;
}

/* ADMIN PAGE */
.admin-page {
  min-height: 100vh;
  background: var(--ivory);
  padding: 40px;
}
.admin-login {
  max-width: 420px;
  margin: 100px auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 50px 44px;
  text-align: center;
}
.admin-login h2 {
  font-family: var(--serif); font-weight: 300; font-size: 32px; margin: 14px 0 8px;
}
.admin-login h2 em { font-style: italic; color: var(--sky-deep); }
.admin-login p { font-size: 13px; color: var(--ink-soft); margin: 0 0 28px; line-height: 1.6; }
.admin-shell {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px 44px;
}
.admin-shell .ah {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 22px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.admin-shell .ah h2 { font-family: var(--serif); font-weight: 300; font-size: 30px; margin: 0; }
.admin-shell .ah h2 em { font-style: italic; color: var(--sky-deep); }
.admin-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 30px;
}
.admin-tabs button {
  background: none; border: none;
  padding: 14px 26px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-mute); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.admin-tabs button.active { color: var(--ink); border-bottom-color: var(--sky); }
.admin-tabs button:hover { color: var(--ink); }
.big-admin-cal .admin-cal .ad { font-size: 13px; }
.bookings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.bookings-table th, .bookings-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.bookings-table th {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
  background: var(--ivory);
}
.bookings-table .ref { font-family: "JetBrains Mono", monospace; font-size: 12px; }
.bookings-table .pill {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
}
.bookings-table .pill.held { background: var(--sky-pale); color: var(--ink); }
.bookings-table .pill.confirmed { background: #cfe8d4; color: #1f5a31; }
.bookings-table .pill.enquiry { background: var(--sand-mist); color: var(--ink-soft); }
.bookings-table .actions { display: flex; gap: 8px; }
.bookings-table .actions button {
  background: var(--paper); border: 1px solid var(--line);
  padding: 6px 10px; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); cursor: pointer;
}
.bookings-table .actions button:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.bookings-table .actions button.danger:hover { background: #8b2222; border-color: #8b2222; }

/* MAP placeholder */
.map-box {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--sky-pale) 0%, var(--ivory-deep) 70%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
}
.map-box::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 60%, rgba(14,42,78,0.06) 0, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(14,42,78,0.05) 0, transparent 60%);
}
.map-box .pin {
  position: absolute; top: 56%; left: 64%;
  width: 14px; height: 14px;
  background: var(--ink);
  border: 3px solid var(--ivory);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 0 6px rgba(14,42,78,0.15);
}
.map-box .pin-label {
  position: absolute; top: 56%; left: 64%;
  transform: translate(-50%, -180%);
  background: var(--ink); color: var(--ivory);
  padding: 6px 12px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
}

/* MOBILE NAV */
.mobile-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.mobile-toggle span {
  display: block; height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 85%; max-width: 340px;
  background: var(--paper);
  z-index: 200;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(14,42,78,0.2);
}
.mobile-drawer.open { transform: translateX(0); pointer-events: auto; }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; }
.mobile-drawer li { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-drawer a {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
}
.mobile-drawer a.active { color: var(--sky-deep); font-style: italic; }
.mobile-drawer .util {
  margin-top: 30px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.mobile-drawer .util a {
  font-family: var(--sans); font-size: 12px;
  display: block; padding: 8px 0;
  color: var(--ink-soft); letter-spacing: 0.18em;
}
.mobile-drawer-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(14,42,78,0.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* CONFIRM MODAL — extra form fields */
.confirm-modal .form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 4px 0 18px;
}
.confirm-modal .form-grid .full { grid-column: 1 / -1; }

/* ─────────────────────────────────────────────
   MOBILE RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .footer .brand-block { grid-column: span 2; }
  .footer-news { grid-column: span 2; }
}

@media (max-width: 960px) {
  .villa-grid { grid-template-columns: 1fr; gap: 40px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .provenance { grid-template-columns: 1fr; gap: 50px; padding: 90px 40px; }
  .provenance-image { aspect-ratio: 16 / 10; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-search { grid-column: 1 / -1; padding: 22px; }
  .booking-field { border-bottom: 1px solid var(--line-soft); }
  .booking-field:nth-child(2) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 760px) {
  .utility-bar { display: none; }
  .main-nav { grid-template-columns: 1fr auto; padding: 14px 22px; gap: 12px; }
  .main-nav .nav-left, .main-nav .nav-right { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-drawer, .mobile-drawer-backdrop { display: block; }
  .brand-logo { width: 160px !important; }

  .hero { height: 580px; }
  .hero-content { padding: 0 22px; }
  .hero-content h1 { font-size: clamp(40px, 9vw, 56px); }
  .hero-content .lede { font-size: 14px; }
  .hero-content > div[style*="display:flex"] {
    flex-direction: column;
    gap: 14px !important;
    width: 100%;
    align-items: stretch;
  }
  .hero-content > div[style*="display:flex"] > * { text-align: center; }

  .booking-widget { margin: -50px 16px 0; }
  .booking-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .booking-tabs button { padding: 14px 20px; font-size: 10px; flex-shrink: 0; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-field { padding: 18px 22px; border-right: none; }
  .booking-search { padding: 22px; font-size: 12px; }

  .section { padding: 70px 22px; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 34px; line-height: 1.1; }

  .exp-grid { grid-template-columns: 1fr; gap: 24px; }
  .journal-grid { grid-template-columns: 1fr; gap: 30px; }
  .j-card.feature h4 { font-size: 24px; }
  .j-card h4 { font-size: 22px; }

  .discover-tabs { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; -webkit-overflow-scrolling: touch; }
  .discover-tabs button { padding: 14px 18px; font-size: 10px; white-space: nowrap; flex-shrink: 0; }

  /* Availability strip: stack residence label on top of cells */
  .avail-head { flex-direction: column; gap: 18px; padding: 22px 22px; align-items: flex-start; }
  .avail-head h3 { font-size: 22px; }
  .avail-table { grid-template-columns: 1fr; }
  .avail-villa-label { border-right: none; padding: 14px 22px; }
  .avail-villa-label.head { display: none; }
  .avail-cells.head { display: none; }
  .avail-cells { grid-template-columns: repeat(15, 1fr) !important; padding: 0 8px 8px; }
  .ac { height: 32px; font-size: 9px; }
  .avail-legend { padding: 18px 22px; flex-wrap: wrap; gap: 12px; }
  .avail-legend > span:last-child { font-size: 11px !important; }

  .provenance { padding: 70px 22px; }
  .provenance-copy h2 { font-size: 32px; }
  .facts { grid-template-columns: 1fr; }
  .facts > div:nth-child(odd) { border-right: none; padding-right: 0; }
  .facts > div:nth-child(even) { padding-left: 0; }

  .footer { padding: 70px 22px 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer .brand-block, .footer-news { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }

  .modal { grid-template-columns: 1fr; width: 100%; max-height: 92vh; }
  .modal-aside { padding: 32px 28px; min-height: 200px; }
  .modal-aside h3 { font-size: 28px; }
  .modal-body { padding: 32px 28px; }
  .modal-body h2 { font-size: 26px; }

  .confirm-modal { width: 100%; max-height: 92vh; }
  .confirm-modal .head { padding: 28px 22px 18px; }
  .confirm-modal .head h2 { font-size: 26px; }
  .confirm-modal .body { padding: 22px; }
  .confirm-modal .actions { padding: 0 22px 28px; flex-direction: column; }
  .confirm-modal .summary, .confirm-modal .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .confirm-modal .total .amt { font-size: 28px; }

  .search-overlay { padding: 30px 22px; }
  .search-overlay input { font-size: 24px; }
  .search-overlay .results { grid-template-columns: 1fr; gap: 36px; }
  .search-overlay .closebtn { width: 36px; height: 36px; font-size: 16px; }

  .page-head { height: 320px; }
  .page-head .inner { padding: 0 22px; }
  .page-head h1 { font-size: clamp(34px, 9vw, 48px); }
  .page-head p { font-size: 14px; }

  .cal-pop {
    position: fixed;
    top: auto; bottom: 0;
    left: 0; right: 0;
    width: 100% !important;
    max-height: 80vh;
    overflow-y: auto;
    padding: 18px 16px 80px;
    gap: 20px;
    flex-direction: column;
    border-radius: 0;
  }
  .cal-month { width: 100%; }
  .cal-day { font-size: 12px; }
  .cal-day .price-tag { font-size: 7px; }

  .guest-pop, .villa-pop {
    position: fixed;
    top: auto; bottom: 0;
    left: 0; right: 0;
    width: 100% !important;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 0;
  }

  .marquee-track { font-size: 14px; gap: 28px; }
  .marquee-track span { gap: 28px; }

  .admin-shell { padding: 24px 18px; }
  .admin-tabs { overflow-x: auto; }
  .admin-tabs button { padding: 12px 14px; font-size: 10px; flex-shrink: 0; }
  .bookings-table { font-size: 11px; display: block; overflow-x: auto; white-space: nowrap; }

  .admin-page { padding: 22px 16px; }
  .big-admin-cal > div { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* Cuisine extra split section */
  .cuisine-extra-grid { grid-template-columns: 1fr !important; gap: 36px !important; }

  /* Contact form & cards */
  .contact-card { padding: 24px; }
  .contact-card h3 { font-size: 22px; }
  .contact-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .contact-row .v { text-align: left; }

  /* Currency switch shrinks */
  .currency-switch button { padding: 4px 7px; font-size: 9px; }
}

@media (max-width: 460px) {
  .hero-content h1 { font-size: 38px; }
  .section-header h2 { font-size: 32px; }
  .villa-card h3 { font-size: 24px; }
  .booking-widget { margin: -40px 12px 0; }
  .section { padding: 60px 18px; }
  .avail-cells { grid-template-columns: repeat(10, 1fr) !important; }
}


/* ─── GUEST PORTAL · account.html ──────────────────────────────────────── */

.acct-page {
  min-height: 100vh;
  background: var(--ivory);
  color: var(--ink);
}

/* Sign-in form */
.acct-form .field-group {
  margin-bottom: 18px;
}
.acct-form .field-group label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.acct-form .field-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s;
}
.acct-form .field-group input:focus { border-color: var(--sky-deep); }
.acct-form .submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.acct-form .submit:hover:not(:disabled) { background: var(--sky-deep); }
.acct-form .submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Hero greeting */
.acct-hero {
  padding: 72px 40px 64px;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.acct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 360px at 12% -10%, rgba(123, 163, 209, 0.22), transparent 70%),
    radial-gradient(700px 340px at 90% 110%, rgba(123, 163, 209, 0.16), transparent 70%);
  pointer-events: none;
}
.acct-hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.acct-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  margin: 14px 0 18px;
}
.acct-hero h1 em {
  font-style: italic;
  color: var(--sky-pale);
}
.acct-hero p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(246,241,231,0.85);
  margin: 0;
}
.acct-hero p strong { color: var(--ivory); font-weight: 400; }

.hero-stats {
  margin-top: 36px;
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(246,241,231,0.18);
  border-bottom: 1px solid rgba(246,241,231,0.18);
  padding: 22px 0;
}
.hero-stats > div:not(.vd) {
  padding: 0 36px;
  text-align: center;
  flex: 1;
}
.hero-stats > div:first-child { padding-left: 0; text-align: left; }
.hero-stats > div:last-child { padding-right: 0; }
.hero-stats .vd {
  width: 1px;
  background: rgba(246,241,231,0.18);
  flex-shrink: 0;
}
.hero-stats .n {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: var(--ivory);
}
.hero-stats .n.serif { font-style: italic; color: var(--sky-pale); }
.hero-stats .l {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.6);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-actions .btn-line {
  background: none;
  border: none;
  border-bottom: 1px solid var(--ivory);
  padding: 6px 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
}

.acct-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 40px 40px;
}

.acct-section-head {
  margin-bottom: 36px;
}
.acct-section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  margin: 12px 0 0;
  color: var(--ink);
}
.acct-section-head h2 em { font-style: italic; color: var(--sky-deep); }

/* ─── LOYALTY LADDER ──────────────────────────────────────────────────── */
.acct-loyalty { margin-bottom: 88px; }

.ladder-rail {
  position: relative;
  height: 3px;
  background: var(--ivory-deep);
  margin: 60px 24px 76px;
  border-radius: 2px;
}
.ladder-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--sand), var(--sky-deep) 60%, var(--ink));
  border-radius: 2px;
  transition: width 0.6s ease;
}
.ladder-node {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.ladder-node .dot {
  width: 16px; height: 16px;
  background: var(--paper);
  border: 2px solid var(--ivory-deep);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s;
}
.ladder-node.reached .dot { background: var(--ink); border-color: var(--ink); }
.ladder-node.current .dot {
  background: var(--sky-deep);
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 6px rgba(79, 126, 178, 0.18);
  width: 18px; height: 18px;
}
.ladder-node .lbl {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.ladder-node .lbl .n {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-style: italic;
}
.ladder-node .lbl .m {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}
.ladder-node:not(.reached) .lbl .n { color: var(--ink-mute); font-style: normal; }

/* Status strip */
.ladder-status {
  display: flex;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px 30px;
  margin-bottom: 60px;
}
.ladder-status > div:not(.divider) {
  flex: 1;
  padding: 0 24px;
}
.ladder-status > div:first-child { padding-left: 0; }
.ladder-status > div:last-child { padding-right: 0; }
.ladder-status .divider {
  width: 1px;
  background: var(--line-soft);
}
.ladder-status .tier-name {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.2;
}
.ladder-status .tier-name .serif {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
}
.ladder-status .tier-name .sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* Tier cards */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tier-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tier-card.current {
  box-shadow: 0 24px 60px -36px rgba(14, 42, 78, 0.45);
  transform: translateY(-4px);
}
.tier-card.locked { opacity: 0.78; }
.tier-card.locked .tc-perks li:not(.hidden-perk) { color: var(--ink-mute); }

.tc-head {
  padding: 28px 28px 30px;
  position: relative;
}
.tc-head h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  margin: 10px 0 4px;
  letter-spacing: 0.01em;
}
.tc-head .tc-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  opacity: 0.7;
}
.tc-head .tc-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(14,42,78,0.1);
  color: inherit;
  padding: 5px 10px;
  border: 1px solid currentColor;
}
.tc-head .tc-lock {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 22px;
  opacity: 0.4;
}

.tc-body {
  padding: 26px 28px 32px;
  flex: 1;
}
.tc-summary {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.tc-perks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tc-perks li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.tc-perks li:last-child { border-bottom: none; }
.tc-perks .p-l {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  font-weight: 400;
}
.tc-perks .p-s {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
  line-height: 1.55;
}
.tc-perks .hidden-perk {
  background: linear-gradient(180deg, rgba(123, 163, 209, 0.08), transparent);
  margin: 4px -28px 0;
  padding: 16px 28px;
}
.tc-perks .hidden-perk .p-l {
  font-style: italic;
  color: var(--sky-deep);
}
.tc-perks .hidden-perk .seal {
  display: inline-block;
  margin-right: 10px;
  color: var(--sky);
  transform: translateY(-1px);
}
.tier-card.locked .tc-perks .hidden-perk .p-l { color: var(--ink-mute); }

/* ─── STAYS ──────────────────────────────────────────────────────────── */
.acct-stays { margin-bottom: 88px; }

.stays-h {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-mute);
  margin: 0 0 18px;
}

.stays-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stay-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 22px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}
.stay-card:hover { border-color: var(--sky); }
.stay-card.past { background: var(--ivory); }

.sc-date {
  text-align: center;
  border-right: 1px solid var(--line-soft);
  padding-right: 24px;
}
.sc-date .month {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--sky-deep);
  font-weight: 500;
}
.sc-date .day {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  margin: 4px 0;
  color: var(--ink);
}
.sc-date .year {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}

.sc-body h4 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  margin: 4px 0 6px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.sc-body h4 .badge {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}
.sc-meta {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.sc-meta .dot { color: var(--sky); }
.sc-total {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  font-style: italic;
}

.sc-status {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.sc-status .pill {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
}
.sc-status .pill.confirmed { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.sc-status .pill.held { background: var(--sand-mist); color: var(--ink); border-color: var(--sand); }
.sc-status .pill.completed { background: var(--ivory-deep); color: var(--ink-mute); border-color: var(--line); }
.sc-status .pill.cancelled { color: #a04040; border-color: rgba(160,64,64,0.3); background: rgba(160,64,64,0.06); }
.sc-status .sc-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-deep);
  text-decoration: none;
}
.sc-status .sc-link:hover { color: var(--ink); }

.empty-state {
  padding: 70px 40px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
}
.empty-state p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  margin: 14px 0 0;
}

/* ─── PROFILE ────────────────────────────────────────────────────────── */
.acct-profile {
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  margin-bottom: 60px;
}
.profile-grid {
  background: var(--paper);
  border: 1px solid var(--line);
}
.profile-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 20px 30px;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.profile-row:last-child { border-bottom: none; }
.profile-row .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.profile-row .value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.profile-row .value a { color: var(--sky-deep); }

.acct-footer {
  background: var(--ink);
  color: rgba(246,241,231,0.7);
  text-align: center;
  padding: 50px 40px;
}
.acct-footer p {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
}
.acct-footer a { color: var(--sky-pale); }

/* ─── Mobile ─────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .tier-grid { grid-template-columns: 1fr; }
  .ladder-status { flex-direction: column; gap: 18px; padding: 22px; }
  .ladder-status > div:not(.divider) { padding: 0; }
  .ladder-status .divider { display: none; }
  .ladder-rail { margin: 50px 12px 90px; }
  .ladder-node .lbl .n { font-size: 14px; }
  .acct-hero { padding: 48px 22px; }
  .acct-body { padding: 60px 22px 30px; }
  .hero-stats { flex-wrap: wrap; padding: 18px 0; }
  .hero-stats > div:not(.vd) { flex: 1 1 45%; padding: 12px; text-align: left; }
  .hero-stats .vd { display: none; }
  .hero-stats .n { font-size: 32px; }
  .stay-card {
    grid-template-columns: 80px 1fr;
    gap: 18px;
    padding: 18px;
  }
  .sc-date .day { font-size: 32px; }
  .sc-status {
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
  }
  .sc-body h4 { font-size: 22px; flex-wrap: wrap; gap: 8px; }
  .profile-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
  .profile-row .value { font-size: 16px; }
}


/* ─── CANCEL BOOKING ──────────────────────────────────────────────────── */
.sc-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.sc-cancel {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a04040;
  cursor: pointer;
  padding: 4px 0;
}
.sc-cancel:hover { text-decoration: underline; }
.stay-card.is-cancelled { opacity: 0.6; }
.stay-card.is-cancelled .sc-date .day { text-decoration: line-through; text-decoration-thickness: 1px; }

.cancel-modal {
  background: var(--paper);
  border: 1px solid var(--line);
  max-width: 560px;
  width: 100%;
  padding: 44px 44px 36px;
  position: relative;
  box-shadow: 0 40px 100px -40px rgba(14, 42, 78, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}
.cancel-modal h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 38px;
  line-height: 1.1;
  margin: 8px 0 28px;
  color: var(--ink);
}
.cancel-modal h2 em { font-style: italic; color: var(--sky-deep); }

.cancel-summary {
  background: var(--ivory);
  padding: 22px 24px;
  margin-bottom: 22px;
}
.cancel-summary .cs-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--line-soft);
}
.cancel-summary .cs-row:last-child { border-bottom: none; }
.cancel-summary .l {
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
}
.cancel-summary .v {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
}
.cancel-summary .v.ref {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.cancel-policy {
  border: 1px solid var(--line);
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(123, 163, 209, 0.06), transparent);
  margin-bottom: 20px;
}
.refund-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.refund-line .pct {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
}
.refund-line .of {
  font-size: 13px;
  color: var(--ink-soft);
}
.refund-line .amt {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--sky-deep);
  margin-left: auto;
  font-style: italic;
}
.cancel-policy .note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.cancel-policy .note.small { font-size: 12px; color: var(--ink-mute); margin-top: 8px; }

.cancel-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.cancel-actions .ghost {
  flex: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.cancel-actions .ghost:hover { background: var(--ivory); }
.cancel-actions .submit {
  flex: 1.4;
  background: #8a3a3a;
  color: var(--ivory);
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.cancel-actions .submit:hover:not(:disabled) { background: #6b2c2c; }
.cancel-actions .submit:disabled { opacity: 0.7; cursor: not-allowed; }

.cancel-modal .reach-line {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
}
.cancel-modal .reach-line a {
  color: var(--sky-deep);
  text-decoration: none;
  margin: 0 2px;
}
.cancel-modal .reach-line a:hover { color: var(--ink); }

.cancel-modal .modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--ink-mute);
  cursor: pointer;
  line-height: 1;
}
.cancel-modal .modal-close:hover { color: var(--ink); }

@media (max-width: 640px) {
  .cancel-modal { padding: 32px 22px 28px; }
  .cancel-modal h2 { font-size: 28px; }
  .cancel-actions { flex-direction: column; }
  .refund-line .amt { margin-left: 0; }
}

