@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Inter+Tight:wght@500;600;700&display=swap');

:root {
  --ink: #121614;
  --ivory: #F6F2E9;
  --warm-white: #FCFAF5;
  --champagne: #C6A15B;
  --stone: #D8D1C5;
  --muted: #6F756F;
  --line: var(--stone);

  --sans: 'Inter', sans-serif;
  --display: 'Inter Tight', sans-serif;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background .3s ease, color .3s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

.demo-notice-bar { background: var(--ink); color: #e9e5db; font-size: 13px; position: sticky; top: 0; z-index: 400; }
.demo-notice-bar .notice-row { max-width: var(--container); margin: 0 auto; padding: 9px 24px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.demo-notice-bar strong { color: var(--champagne); font-weight: 700; }
.demo-notice-bar .notice-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); flex: 0 0 auto; }
.palette-row { max-width: var(--container); margin: 0 auto; padding: 10px 24px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.palette-row .palette-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; color: rgba(233,229,219,.55); }
.palette-swatches { display: flex; gap: 8px; }
.palette-swatch { width: 24px; height: 24px; border-radius: 50%; border: 2px solid rgba(255,255,255,.16); cursor: pointer; padding: 0; position: relative; transition: transform .15s ease; }
.palette-swatch:hover { transform: scale(1.08); }
.palette-swatch.is-active::after { content: ''; position: absolute; inset: -5px; border: 1px solid var(--champagne); border-radius: 50%; }
.mode-divider { width: 1px; height: 18px; background: rgba(233,229,219,.18); margin: 0 4px; }
.mode-switch { display: flex; background: rgba(233,229,219,.08); border-radius: 999px; padding: 3px; gap: 2px; }
.mode-btn {
  border: none; background: transparent; color: rgba(233,229,219,.6);
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 999px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.mode-btn.is-active { background: var(--champagne); color: var(--ink); }
.mode-btn:not(.is-active):hover { color: #e9e5db; }
.lang-switch { display: flex; background: rgba(233,229,219,.08); border-radius: 999px; padding: 3px; gap: 2px; }
.lang-btn {
  border: none; background: transparent; color: rgba(233,229,219,.6);
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 999px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-btn.is-active { background: var(--champagne); color: var(--ink); }
.lang-btn:not(.is-active):hover { color: #e9e5db; }

.nav-shell { padding: 20px 20px 0; }
.site-header {
  height: 64px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  box-shadow: 0 4px 16px -8px rgba(18,22,20,.1);
}
.site-header .nav-row {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left { display: flex; align-items: center; gap: 64px; }
.brand { font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: .15em; }
.nav-links { display: flex; align-items: center; gap: 40px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.nav-links a { color: var(--ink); transition: color .15s ease; }
.nav-links a:hover, .nav-links a.is-current { color: var(--champagne); }
.nav-right { display: flex; align-items: center; gap: 24px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.nav-cta {
  border: 1px solid var(--ink);
  padding: 8px 20px;
  border-radius: 4px;
  transition: background .15s ease, color .15s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--warm-white); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
}
.btn-primary { background: var(--ink); color: var(--warm-white); }
.btn-primary:hover { background: var(--champagne); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--warm-white); }

.hero-frame { padding: 32px 24px 0; display: flex; justify-content: center; }
.hero-frame-inner {
  position: relative;
  width: 100%;
  max-width: 1360px;
  height: 620px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 1px 2px rgba(18,22,20,.06);
  display: none;
}
.hero-frame-inner.mode-hotel { display: block; }
:root[data-mode="restaurant"] .hero-frame-inner.mode-hotel { display: none; }
:root[data-mode="restaurant"] .hero-frame-inner.mode-restaurant { display: block; }

.mode-hotel, .mode-restaurant { display: none !important; }
:root:not([data-mode="restaurant"]) .mode-hotel { display: block !important; }
:root[data-mode="restaurant"] .mode-restaurant { display: block !important; }
:root:not([data-mode="restaurant"]) .mode-hotel.exp-detail,
:root[data-mode="restaurant"] .mode-restaurant.exp-detail { display: grid !important; }
:root:not([data-mode="restaurant"]) .mode-hotel.discovery-card,
:root[data-mode="restaurant"] .mode-restaurant.discovery-card,
:root:not([data-mode="restaurant"]) .mode-hotel.experience-card,
:root[data-mode="restaurant"] .mode-restaurant.experience-card { display: block !important; }
:root:not([data-mode="restaurant"]) .mode-hotel.story-grid,
:root[data-mode="restaurant"] .mode-restaurant.story-grid { display: grid !important; }
:root:not([data-mode="restaurant"]) .mode-hotel.booking-grid,
:root[data-mode="restaurant"] .mode-restaurant.booking-grid { display: grid !important; }
.hero-frame-inner > img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(18,22,20,.1) 0%, rgba(18,22,20,.3) 100%); }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: 64px 48px; }
.hero-copy { width: 100%; max-width: var(--container); }
.hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  color: var(--warm-white);
  max-width: 620px;
  margin-bottom: 24px;
}
.hero-content p.lead { color: rgba(252,250,245,.9); font-size: 15px; line-height: 1.6; max-width: 380px; margin: 0; }

.booking-panel { width: 100%; max-width: var(--container); margin-bottom: 16px; }
.booking-widget {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 4px 24px rgba(18,22,20,.08);
}
.bw-fields { flex-grow: 1; display: grid; grid-template-columns: repeat(12, 1fr); }
.bw-field { padding: 16px 24px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); cursor: pointer; }
.bw-field:last-child { border-right: none; }
.bw-field.col-4 { grid-column: span 4; }
.bw-field.col-2 { grid-column: span 2; }
.bw-field label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--champagne); margin-bottom: 6px; }
.bw-field .bw-value { font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.bw-field .bw-value.is-placeholder { color: var(--stone); }
.bw-field .bw-icon { color: var(--stone); font-size: 13px; }
.bw-field input { background: transparent; border: none; font-size: 14px; font-weight: 500; padding: 0; color: var(--ink); width: 100%; }
.bw-field input::placeholder { color: var(--stone); }
.bw-field input:focus { outline: none; }
.bw-submit {
  background: var(--ink);
  color: var(--warm-white);
  border: none;
  border-radius: 10px;
  padding: 0 28px;
  margin: 4px 4px 4px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bw-submit:hover { background: var(--champagne); }

.hero-flags { display: flex; align-items: center; gap: 24px; padding: 0 16px; color: rgba(252,250,245,.8); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero-flags span { display: flex; align-items: center; gap: 6px; }
.hero-flags .check { color: var(--champagne); }

section { padding: 0; }
.section-block { max-width: var(--container); margin: 0 auto 128px; padding: 0 24px; }
.section-block.tight { margin-bottom: 96px; }

.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 64px; }
.section-head-row .eyebrow { display: block; font-size: 10px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--champagne); margin-bottom: 16px; }
.section-head-row h2 { font-size: 32px; font-weight: 600; letter-spacing: -0.01em; }
.section-head-row .rule { width: 128px; height: .5px; background: var(--stone); margin-bottom: 16px; }

.discovery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.discovery-card { display: block; cursor: pointer; }
.discovery-card .thumb { overflow: hidden; margin-bottom: 20px; border-radius: 6px; }
.discovery-card .thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .8s ease; }
.discovery-card:hover .thumb img { transform: scale(1.05); }
.discovery-card .row { display: flex; justify-content: space-between; align-items: flex-start; }
.discovery-card h3 { font-size: 19px; font-weight: 500; margin-bottom: 4px; }
.discovery-card .sub { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.discovery-card .arrow { font-size: 17px; transition: transform .15s ease; }
.discovery-card:hover .arrow { transform: translateX(6px); }

.property-list { border-top: 1px solid var(--line); }
.property-row { padding: 40px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 48px; transition: opacity .15s ease; }
.property-row .idx { font-size: 10px; font-weight: 700; color: var(--stone); flex: 0 0 auto; }
.property-row .thumb { width: 192px; height: 128px; overflow: hidden; border-radius: 4px; flex: 0 0 auto; }
.property-row .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.property-row:hover .thumb img { transform: scale(1.1); }
.property-row .info { flex-grow: 1; }
.property-row .info h3 { font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.property-row .info .loc { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.property-row .score { text-align: right; padding-right: 48px; border-right: 1px solid var(--line); }
.property-row .score .label, .property-row .price .label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.property-row .score .value { font-size: 18px; font-weight: 500; }
.property-row .price { text-align: right; min-width: 150px; }
.property-row .price .value { font-size: 20px; font-weight: 500; }
.property-row .detail-btn { border: 1px solid var(--ink); padding: 12px 30px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: 4px; transition: all .15s ease; white-space: nowrap; }
.property-row .detail-btn:hover { background: var(--ink); color: var(--warm-white); }
.property-list-footer { display: flex; justify-content: flex-end; padding-top: 24px; }
.property-list-footer a { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.property-list-footer a:hover { color: var(--champagne); }

.circle-band { background: var(--warm-white); padding: 128px 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 128px; }
.circle-band .inner { max-width: 720px; margin: 0 auto; text-align: center; }
.circle-band .eyebrow { display: block; font-size: 10px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--champagne); margin-bottom: 32px; }
.circle-band h2 { font-size: 42px; line-height: 1.2; margin-bottom: 32px; }
.circle-band p { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 48px; }

.site-footer { background: var(--warm-white); padding-top: 96px; padding-bottom: 48px; border-top: 1px solid var(--line); }
.footer-grid { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px; margin-bottom: 96px; }
.footer-brand { grid-column: span 4; }
.footer-brand .brand { display: block; margin-bottom: 32px; }
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 280px; margin-bottom: 48px; }
.footer-brand .socials { display: flex; gap: 24px; }
.footer-brand .socials a { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); }
.footer-brand .socials a:hover { color: var(--champagne); }
.footer-col-2 { grid-column: span 2; }
.footer-col-4 { grid-column: span 4; }
.footer-col h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--champagne); margin-bottom: 32px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.footer-col ul a { font-size: 13px; color: var(--muted); }
.footer-col ul a:hover { color: var(--ink); }
.footer-col address { font-size: 13px; color: var(--muted); font-style: normal; display: block; margin-bottom: 16px; }
.newsletter p { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.newsletter-form { display: flex; border-bottom: 1px solid var(--ink); padding-bottom: 8px; }
.newsletter-form input { background: transparent; border: none; flex-grow: 1; font-size: 13px; color: var(--ink); }
.newsletter-form input::placeholder { color: var(--stone); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button { background: none; border: none; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; color: var(--ink); }
.newsletter-form button:hover { color: var(--champagne); }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding: 24px 24px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.footer-bottom .links { display: flex; align-items: center; gap: 32px; }
.footer-bottom .links a:hover { color: var(--ink); }

.page-header { max-width: var(--container); margin: 0 auto; padding: 48px 24px 40px; }
.page-header .eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--champagne); margin-bottom: 14px; display: block; }
.page-header h1 { font-size: 42px; margin-bottom: 14px; max-width: 18ch; }
.page-header p { color: var(--muted); max-width: 56ch; font-size: 15px; }
.breadcrumb { font-size: 11px; color: var(--muted); margin-bottom: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--champagne); }
.breadcrumb span { margin: 0 8px; }

.mini-frame { max-width: var(--container); margin: 0 auto 128px; padding: 0 24px; }
.mini-frame-inner { position: relative; height: 420px; border-radius: 12px; overflow: hidden; background: var(--ink); }
.mini-frame-inner img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }

.split-grid { max-width: var(--container); margin: 0 auto 128px; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-grid .art { border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; }
.split-grid .art img { width: 100%; height: 100%; object-fit: cover; }
.split-grid .copy p { color: var(--muted); margin-bottom: 18px; font-size: 15px; line-height: 1.65; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.value-card { background: var(--warm-white); padding: 40px 32px; }
.value-card .mark { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--champagne); letter-spacing: .08em; margin-bottom: 20px; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 14px; margin: 0; }

.stat-strip { max-width: var(--container); margin: 0 auto 128px; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-cell { padding: 32px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: none; }
.stat-cell strong { display: block; font-family: var(--display); font-size: 32px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.stat-cell span { font-size: 10px; color: var(--muted); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.testimonial-card { background: var(--warm-white); padding: 32px; }
.testimonial-card .stars { color: var(--champagne); font-size: 12px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p.quote { font-size: 14.5px; line-height: 1.6; margin-bottom: 20px; color: var(--ink); }
.testimonial-card .who { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 12px; font-weight: 700; color: var(--champagne); }
.testimonial-card .who strong { display: block; font-size: 13px; }
.testimonial-card .who span { font-size: 11.5px; color: var(--muted); }

.booking-grid { max-width: var(--container); margin: 0 auto 128px; padding: 0 24px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.booking-form { background: var(--warm-white); border: 1px solid var(--line); border-radius: 6px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans); font-size: 14.5px; padding: 12px 14px; border-radius: 4px; border: 1px solid var(--line); background: var(--ivory); color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.type-pick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.type-pick label { border: 1px solid var(--line); border-radius: 4px; padding: 14px 12px; text-align: center; cursor: pointer; font-size: 12.5px; font-weight: 600; transition: border-color .15s ease, background .15s ease; }
.type-pick input { position: absolute; opacity: 0; pointer-events: none; }
.type-pick label:has(input:checked) { border-color: var(--champagne); background: var(--ivory); color: var(--champagne); }
.experience-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.experience-pick label { border: 1px solid var(--line); border-radius: 4px; padding: 14px 12px; text-align: center; cursor: pointer; font-size: 12.5px; font-weight: 600; transition: border-color .15s ease, background .15s ease; }
.experience-pick input { position: absolute; opacity: 0; pointer-events: none; }
.experience-pick label:has(input:checked) { border-color: var(--champagne); background: var(--ivory); color: var(--champagne); }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.booking-side { position: sticky; top: 96px; }

.date-field { display: flex; align-items: center; justify-content: space-between; gap: 10px; cursor: pointer; background: var(--ivory); user-select: none; }
.date-field .date-field-icon { font-size: 15px; color: var(--champagne); }
.date-field.is-placeholder { color: var(--muted); }

.side-card { background: var(--ink); color: var(--ivory); border-radius: 6px; padding: 30px; margin-bottom: 20px; }
.side-card h3 { font-family: var(--display); font-size: 18px; color: var(--ivory); margin-bottom: 4px; font-weight: 600; }
.side-card .cal-sub { font-size: 12.5px; color: rgba(247,244,236,.55); margin-bottom: 20px; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-nav .cal-month { font-family: var(--display); font-size: 15px; color: var(--ivory); font-weight: 600; }
.cal-nav button { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(247,244,236,.18); background: transparent; color: var(--ivory); cursor: pointer; font-size: 14px; line-height: 1; transition: background .15s ease, opacity .15s ease; }
.cal-nav button:hover { background: rgba(247,244,236,.1); }
.cal-nav button:disabled { opacity: .3; cursor: default; pointer-events: none; }
.cal-weekdays, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekdays { margin-bottom: 6px; }
.cal-weekdays span { text-align: center; font-size: 10px; font-weight: 700; letter-spacing: .04em; color: rgba(247,244,236,.4); text-transform: uppercase; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 4px; font-size: 13px; font-weight: 500; color: rgba(247,244,236,.85); position: relative; cursor: pointer; background: rgba(247,244,236,.04); transition: background .15s ease; }
.cal-day:hover { background: rgba(247,244,236,.14); }
.cal-day.is-empty { visibility: hidden; cursor: default; }
.cal-day.is-past { color: rgba(247,244,236,.22); cursor: default; background: transparent; }
.cal-day.is-past:hover { background: transparent; }
.cal-day.is-closed { color: rgba(247,244,236,.3); background: transparent; cursor: not-allowed; }
.cal-day.is-full { color: rgba(247,244,236,.32); background: transparent; cursor: not-allowed; text-decoration: line-through; text-decoration-color: rgba(247,244,236,.25); }
.cal-day.is-limited::before { content: ''; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--champagne); }
.cal-day.is-open { background: rgba(247,244,236,.07); }
.cal-day.is-selected { background: var(--champagne); color: #211a0e; font-weight: 700; }
.cal-day.is-selected:hover { background: var(--champagne); }
.cal-day.is-today:not(.is-selected) { box-shadow: inset 0 0 0 1px rgba(247,244,236,.35); }
.cal-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(247,244,236,.1); }
.cal-legend span { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(247,244,236,.55); }
.cal-legend i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.cal-legend i.leg-open { background: rgba(247,244,236,.5); }
.cal-legend i.leg-limited { background: var(--champagne); }
.cal-legend i.leg-full { background: rgba(247,244,236,.25); }
.side-note { border: 1px solid var(--line); border-radius: 6px; padding: 24px; font-size: 13px; color: var(--muted); }
.side-note strong { display: block; color: var(--ink); margin-bottom: 8px; font-size: 14px; }

@media (max-width: 980px) {
  .discovery-grid { grid-template-columns: 1fr; }
  .value-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-col-2, .footer-col-4 { grid-column: span 1; }
  .bw-fields { grid-template-columns: repeat(2, 1fr); }
  .bw-field.col-4, .bw-field.col-2 { grid-column: span 1; border-bottom: 1px solid var(--line); }
  .booking-widget { flex-direction: column; }
  .bw-submit { margin: 8px 0 0; padding: 14px; }
  .hero-frame-inner { height: auto; min-height: 560px; }
  .hero-content { padding: 44px 20px 24px; }
  .property-row { flex-wrap: wrap; gap: 20px; }
  .property-row .score { border-right: none; padding-right: 0; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-side { position: static; }
  .form-row, .type-pick, .experience-pick { grid-template-columns: 1fr; }
  .booking-form { padding: 26px; }
  .split-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-left { gap: 20px; }
  .nav-links { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--line); background: none; cursor: pointer; }
  .hero-frame { padding: 16px 14px 0; }
  .hero-frame-inner { border-radius: 10px; }
  .section-block { margin-bottom: 72px; }
  .discovery-side { gap: 48px; }
  .property-row .thumb { width: 96px; height: 72px; }
  .property-row .info h3 { font-size: 16px; }
  .circle-band { padding: 72px 24px; }
  .circle-band h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand, .footer-col-2, .footer-col-4 { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
  .bw-fields { grid-template-columns: 1fr; }
  .palette-row .palette-label { display: none; }
}
@media (max-width: 680px) {
  .site-header { position: relative; }
  .nav-links.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 18px;
  }
  .nav-links.is-open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links.is-open a:last-child { border-bottom: none; }
}

:root[data-palette="sage"] {
  --ink: #141712; --ivory: #F2F4EA; --warm-white: #FBFCF7; --champagne: #7A8F4F; --stone: #DDE2CF; --muted: #6C7563;
}
:root[data-palette="terracotta"] {
  --ink: #1F140E; --ivory: #F8F0E8; --warm-white: #FDF9F4; --champagne: #C1653B; --stone: #E6D5C5; --muted: #7D6A5C;
}
:root[data-palette="slate"] {
  --ink: #10141A; --ivory: #EEF1F5; --warm-white: #F9FAFC; --champagne: #4D6B93; --stone: #D6DDE6; --muted: #626D7C;
}
:root[data-palette="noir"] {
  --ink: #EEECE5; --ivory: #17181A; --warm-white: #1E1F22; --champagne: #C9A15A; --stone: #34363A; --muted: #9A9A94; --line: var(--stone);
}
