:root {
  --ink: #173b38;
  --ink-soft: #365b56;
  --deep: #123f3b;
  --deep-2: #0c302e;
  --muted: #6b7d77;
  --paper: #f6f1e9;
  --paper-2: #efe8dc;
  --card: #fffdf8;
  --line: #d9ded5;
  --accent: #d8734c;
  --accent-dark: #a9482c;
  --sun: #efbd7e;
  --sage: #e1ebe2;
  --aqua: #d6e8e5;
  --shadow: 0 24px 70px rgba(18, 63, 59, .13);
  --shadow-soft: 0 12px 34px rgba(18, 63, 59, .09);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(239, 189, 126, .16), transparent 26rem),
    var(--paper);
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(246, 241, 233, .88);
  border-bottom: 1px solid rgba(217, 222, 213, .75);
  backdrop-filter: blur(16px);
}
.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -.025em;
}
.brand:before {
  content: "121";
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent-dark);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .05em;
}
.brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: .84rem; font-weight: 700; }
.main-nav a, .footer-links a { transition: color .18s ease, transform .18s ease; }
.main-nav a:hover, .footer-links a:hover { color: var(--accent-dark); }
.main-nav .nav-cta {
  padding: 11px 17px;
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(255, 253, 248, .6);
}
.main-nav .nav-cta:hover { color: #fff; background: var(--accent-dark); transform: translateY(-1px); }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--card); color: var(--ink); padding: 9px 13px; border-radius: 999px; cursor: pointer; }
main { position: relative; min-height: 70vh; overflow: hidden; }

.ambient-decor { position: fixed; inset: 0; z-index: 4; overflow: hidden; pointer-events: none; }
.lantern {
  position: absolute;
  display: block;
  width: 17px;
  height: 25px;
  border: 1px solid rgba(239, 189, 126, .54);
  border-radius: 6px 6px 9px 9px;
  background: radial-gradient(circle at 50% 58%, rgba(255, 222, 161, .92) 0 20%, rgba(216, 115, 76, .46) 45%, rgba(18, 63, 59, .12) 72%);
  box-shadow: 0 0 18px rgba(239, 189, 126, .45), 0 0 42px rgba(216, 115, 76, .2);
  opacity: .68;
  animation: lantern-sway 8s ease-in-out infinite;
}
.lantern:before { content: ""; position: absolute; top: -9px; left: 4px; width: 7px; height: 9px; border: 1px solid rgba(239, 189, 126, .48); border-bottom: 0; border-radius: 8px 8px 0 0; }
.lantern:after { content: ""; position: absolute; right: 3px; bottom: -7px; left: 3px; height: 7px; border-top: 1px solid rgba(239, 189, 126, .38); border-radius: 50%; }
.lantern-one { top: 18%; right: 5%; animation-delay: -1.5s; }
.lantern-two { top: 45%; left: 3%; transform: scale(.74); opacity: .42; animation-delay: -4s; }
.lantern-three { top: 72%; right: 13%; transform: scale(.56); opacity: .36; animation-delay: -6.5s; }
.spark { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 14px 4px rgba(239, 189, 126, .46); animation: spark-pulse 4.5s ease-in-out infinite; }
.spark-one { top: 28%; right: 11%; }
.spark-two { top: 64%; left: 9%; animation-delay: -2.2s; }
@keyframes lantern-sway { 0%, 100% { margin-top: 0; transform: rotate(-2deg); } 50% { margin-top: 11px; transform: rotate(3deg); } }
@keyframes spark-pulse { 0%, 100% { opacity: .28; transform: scale(.72); } 50% { opacity: .9; transform: scale(1.35); } }

.promo-banner {
  position: relative;
  z-index: 5;
  max-width: 1170px;
  min-height: 112px;
  margin: 22px auto -4px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(239, 189, 126, .42);
  border-radius: 18px;
  color: #fffaf2;
  background: linear-gradient(110deg, #154a44, #0d3532 68%, #204f48);
  box-shadow: 0 16px 38px rgba(18, 63, 59, .16);
}
.promo-banner:before { content: ""; position: absolute; top: -80px; right: 15%; width: 210px; height: 210px; border-radius: 50%; background: rgba(239, 189, 126, .12); filter: blur(3px); animation: promo-breathe 6s ease-in-out infinite; }
.promo-banner:after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 22%, rgba(255, 250, 242, .08) 48%, transparent 72%); transform: translateX(-100%); animation: promo-shine 9s ease-in-out infinite; pointer-events: none; }
.promo-badge { position: relative; z-index: 1; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(239, 189, 126, .6); border-radius: 50%; color: var(--sun); font-size: 1.45rem; box-shadow: 0 0 24px rgba(239, 189, 126, .16); }
.promo-copy { position: relative; z-index: 1; min-width: 0; }
.promo-copy .eyebrow { margin-bottom: 4px; color: var(--sun); }
.promo-copy h2 { margin-bottom: 4px; color: #fffaf2; font-size: clamp(1.35rem, 2.7vw, 2rem); }
.promo-copy p:not(.eyebrow) { max-width: 650px; margin: 0; color: rgba(255, 250, 242, .7); font-size: .82rem; }
.promo-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; color: var(--deep-2); background: var(--sun); border-radius: 10px; padding: 12px 15px; font-size: .78rem; font-weight: 900; transition: transform .18s ease, background .18s ease; }
.promo-link:hover { color: var(--deep-2); background: #f6c991; transform: translateY(-2px); }
.promo-link span { font-size: 1rem; }
.promo-close { position: relative; z-index: 1; align-self: start; border: 0; padding: 4px 6px; color: rgba(255, 250, 242, .7); background: transparent; cursor: pointer; font-size: 1.25rem; line-height: 1; }
.promo-close:hover { color: #fff; }
@keyframes promo-breathe { 0%, 100% { opacity: .55; transform: scale(.92); } 50% { opacity: .95; transform: scale(1.08); } }
@keyframes promo-shine { 0%, 55%, 100% { transform: translateX(-100%); } 70% { transform: translateX(100%); } }

h1, h2, h3 { margin: 0 0 16px; line-height: 1.05; letter-spacing: -.055em; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { font-size: clamp(3.1rem, 7vw, 6.8rem); max-width: 780px; }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: 1.2rem; letter-spacing: -.035em; }
p { margin: 0 0 14px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.muted, .trust-note { color: var(--muted); font-size: .84rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 11px;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(18, 63, 59, .14); }
.button-primary { color: #fff; background: var(--accent-dark); }
.button-primary:hover { color: #fff; background: #87371f; }
.button-secondary { color: var(--ink); background: var(--sage); }
.button-secondary:hover { color: var(--ink); background: #cfe0d3; }

.hero {
  position: relative;
  min-width: 0;
  max-width: 1280px;
  min-height: 610px;
  margin: 30px auto 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  align-items: stretch;
}
.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 610px;
  overflow: hidden;
  padding: 70px 56px 62px;
  border-radius: 28px 0 0 28px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 92%, rgba(239, 189, 126, .2), transparent 16rem),
    linear-gradient(145deg, var(--deep), var(--deep-2));
  box-shadow: var(--shadow);
}
.hero-copy:after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(239, 189, 126, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(239, 189, 126, .05), 0 0 0 52px rgba(239, 189, 126, .04);
  pointer-events: none;
}
.hero-copy .eyebrow { color: var(--sun); }
.hero-copy h1 { position: relative; z-index: 1; max-width: 600px; color: #fffaf2; font-size: clamp(3.2rem, 5.4vw, 5.6rem); overflow-wrap: break-word; }
.hero-text { position: relative; z-index: 1; max-width: 520px; color: rgba(255, 250, 242, .78); font-size: 1.08rem; }
.hero .button { position: relative; z-index: 1; width: fit-content; margin: 20px 0 16px; }
.hero .button-primary { color: var(--deep-2); background: var(--sun); }
.hero .button-primary:hover { background: #f6c991; }
.hero .trust-note { position: relative; z-index: 1; max-width: 460px; color: rgba(255, 250, 242, .58); }
.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 610px;
  overflow: hidden;
  border-radius: 0 28px 28px 0;
  color: #fff;
  background: linear-gradient(145deg, #9db6a2, var(--deep));
  box-shadow: var(--shadow);
}
.hero-photo { padding: 0; background: #d7e1d5; }
.hero-photo img { display: block; width: 100%; height: 100%; min-height: 610px; object-fit: cover; object-position: 58% center; filter: saturate(.84) contrast(.96); }
.hero-visual:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 48, 46, .05) 35%, rgba(12, 48, 46, .72)); pointer-events: none; }
.hero-photo > span { position: absolute; right: 32px; bottom: 28px; left: 32px; z-index: 1; max-width: 390px; color: rgba(255, 255, 255, .82); font-size: .79rem; line-height: 1.45; }
.hero-mark { position: absolute; top: 28px; right: 34px; z-index: 1; color: rgba(255, 255, 255, .17); font-size: 9rem; font-weight: 900; line-height: 1; }

.welcome-gallery { padding: 0; isolation: isolate; }
.welcome-slides { position: absolute; inset: 0; }
.welcome-slide { position: absolute; inset: 0; z-index: 0; margin: 0; opacity: 0; transition: opacity .7s ease; }
.welcome-slide.is-active { z-index: 1; opacity: 1; }
.welcome-slide img { display: block; width: 100%; height: 100%; min-height: 610px; object-fit: cover; object-position: center; filter: saturate(.88) contrast(.97); }
.welcome-slide:first-child img { object-position: center 54%; }
.welcome-slide figcaption { position: absolute; right: 32px; bottom: 28px; left: 32px; z-index: 3; display: grid; gap: 5px; max-width: 410px; color: rgba(255, 255, 255, .86); }
.welcome-slide figcaption strong { color: #fffaf2; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 500; letter-spacing: -.035em; }
.welcome-slide figcaption span { color: rgba(255, 255, 255, .75); font-size: .78rem; line-height: 1.45; }
.welcome-controls { position: absolute; right: 28px; top: 28px; z-index: 5; display: flex; align-items: center; gap: 8px; }
.welcome-arrow { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255, 250, 242, .48); border-radius: 50%; color: #fffaf2; background: rgba(12, 48, 46, .35); cursor: pointer; font-size: 1rem; line-height: 1; backdrop-filter: blur(8px); transition: background .18s ease, transform .18s ease; }
.welcome-arrow:hover { background: rgba(12, 48, 46, .68); transform: translateY(-1px); }
.welcome-dots { display: flex; align-items: center; gap: 6px; padding: 7px 9px; border: 1px solid rgba(255, 250, 242, .28); border-radius: 999px; background: rgba(12, 48, 46, .28); backdrop-filter: blur(8px); }
.welcome-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 250, 242, .5); cursor: pointer; transition: transform .18s ease, background .18s ease; }
.welcome-dot.is-active { background: var(--sun); transform: scale(1.35); }

.date-card {
  position: relative;
  z-index: 3;
  max-width: 1170px;
  margin: -60px auto 20px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 30px;
  border: 1px solid rgba(217, 222, 213, .92);
  border-radius: 18px;
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 22px 48px rgba(18, 63, 59, .15);
}
.date-card h2 { margin-bottom: 8px; font-size: 2.15rem; }
.date-card > div:first-child > p:not(.eyebrow) { color: var(--muted); font-size: .92rem; }
.date-card .muted { display: block; padding-top: 5px; border-top: 1px solid var(--line); }
.date-form { display: grid; grid-template-columns: repeat(4, minmax(80px, 1fr)); gap: 10px; align-items: end; }
.date-form label, .guest-form label, .admin-card label { display: block; color: var(--muted); font-size: .74rem; font-weight: 800; }
.date-form input, .guest-form input:not([type="checkbox"]), .guest-form textarea, .admin-card input, .admin-card textarea, .admin-card select {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 11px 10px;
  outline: none;
}
.date-form input:focus, .guest-form input:focus, .guest-form textarea:focus, .admin-card input:focus, .admin-card textarea:focus, .admin-card select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(216, 115, 76, .16); }
.date-form .button, .date-form .calendar-action { grid-column: span 2; width: 100%; }
.form-message { grid-column: 1 / -1; min-height: 1.4em; margin: 0; color: var(--accent-dark); font-size: .82rem; }
.form-message[data-state="ok"] { color: var(--ink-soft); }
.form-message[data-state="error"] { color: #a53625; }

.section, .page-intro, .room-grid, .booking-layout, .two-column, .contact-grid, .faq-list, .admin-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 84px 44px;
}
.page-intro { padding-top: 86px; padding-bottom: 38px; }
.page-intro h1 { max-width: 860px; }
.page-intro > p:not(.eyebrow) { max-width: 700px; color: var(--muted); font-size: 1.08rem; }
.section-heading { max-width: 680px; margin-bottom: 30px; }
.section-heading h2 { margin-bottom: 0; }
.section-muted { max-width: none; background: var(--sage); }
.section-muted > * { max-width: 1192px; margin-right: auto; margin-left: auto; }
.proof-grid, .scenario-grid, .room-grid, .contact-grid, .admin-grid { display: grid; gap: 16px; }
.proof-grid { grid-template-columns: repeat(3, 1fr); }
.proof-grid article, .scenario-card, .room-card, .contact-card, .admin-card { border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
.proof-grid article { min-height: 220px; padding: 26px; }
.proof-grid article span { display: block; margin-bottom: 46px; color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: 2.2rem; line-height: 1; }
.proof-grid p, .scenario-card p, .room-card p, .contact-card p { color: var(--muted); }
.scenario-grid { grid-template-columns: repeat(5, 1fr); }
.scenario-card { min-height: 220px; padding: 22px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.scenario-card:hover { transform: translateY(-5px); border-color: rgba(169, 72, 44, .35); box-shadow: var(--shadow-soft); }
.scenario-icon { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; margin-bottom: 34px; border-radius: 50%; color: var(--deep); background: var(--sun); font-weight: 900; }
.card-link { display: inline-flex; margin-top: 6px; color: var(--accent-dark); font-size: .79rem; font-weight: 900; }
.empty-state { position: relative; overflow: hidden; padding: 44px; border: 0; border-radius: 22px; color: #fffaf2; background: linear-gradient(135deg, var(--deep), var(--deep-2)); box-shadow: var(--shadow); }
.empty-state:before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 38%; background: linear-gradient(90deg, var(--deep-2), rgba(12, 48, 46, .22)), url('/assets/media/terrace.jpg') center / cover; opacity: .48; }
.empty-state:after { content: ""; position: absolute; right: -80px; bottom: -170px; width: 360px; height: 360px; border: 1px solid rgba(239, 189, 126, .26); border-radius: 50%; box-shadow: 0 0 0 24px rgba(239, 189, 126, .05), 0 0 0 48px rgba(239, 189, 126, .04); }
.empty-state > * { position: relative; z-index: 1; }
.empty-state .eyebrow { color: var(--sun); }
.empty-state h2 { max-width: 740px; }
.empty-state p:not(.eyebrow) { max-width: 700px; color: rgba(255, 250, 242, .74); }
.empty-state .button-secondary { color: var(--deep); background: var(--sun); }
.room-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-top: 16px; }
.room-card { display: grid; grid-template-columns: .82fr 1.18fr; padding: 0; overflow: hidden; }
.room-card-media { min-height: 240px; display: grid; place-items: center; padding: 20px; color: var(--muted); text-align: center; font-size: .82rem; background: linear-gradient(150deg, var(--aqua), var(--sage)); }
.room-card-body { padding: 26px; }
.room-card-body h2 { font-size: 1.9rem; }
.room-meta { font-size: .82rem; }

.booking-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; padding-top: 20px; }
.booking-card { margin: 0; display: block; }
.booking-card .date-form { grid-template-columns: repeat(2, 1fr); }
.guest-form { display: grid; gap: 13px; margin-top: 30px; border-top: 1px solid var(--line); padding-top: 26px; }
.guest-form textarea { resize: vertical; }
.checkline { display: flex !important; align-items: flex-start; gap: 8px; font-weight: 500 !important; }
.checkline input { width: auto !important; margin-top: 4px; }
.quote-panel, .notice, .map-placeholder { border-radius: 18px; border: 1px solid var(--line); padding: 30px; background: var(--aqua); }
.quote-panel { min-height: 260px; }
.notice { max-width: 1128px; margin: 0 auto 64px; color: var(--muted); }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.map-placeholder { min-height: 280px; display: grid; place-items: center; text-align: center; color: var(--muted); }
.contact-grid { grid-template-columns: repeat(3, 1fr); padding-top: 16px; }
.contact-card { padding: 26px; }
.faq-list { padding-top: 16px; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-list summary { cursor: pointer; font-weight: 850; }
.faq-list details p { max-width: 720px; padding: 14px 0 0; color: var(--muted); }
.calendar-page { padding-bottom: 28px; }
.calendar-actions { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; }
.calendar-actions strong { min-width: 180px; color: var(--deep); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 500; text-align: center; }
.availability-section { padding-top: 24px; padding-bottom: 58px; }
.availability-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.availability-head h2 { margin-bottom: 0; }
.availability-legend { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 16px; color: var(--muted); font-size: .78rem; }
.availability-legend span { display: inline-flex; align-items: center; gap: 7px; }
.availability-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; }
.availability-dot-free { background: #76a97f; }
.availability-dot-partial { background: #db9a55; }
.availability-dot-full { background: #b9513c; }
.availability-dot-unknown { background: #9aa6a0; }
.availability-table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--card); box-shadow: var(--shadow-soft); }
.availability-table { width: 100%; min-width: 1050px; border-collapse: separate; border-spacing: 0; table-layout: fixed; }
.availability-table th, .availability-table td { border-right: 1px solid rgba(217, 222, 213, .84); border-bottom: 1px solid rgba(217, 222, 213, .84); }
.availability-table thead th { position: sticky; top: 0; z-index: 2; min-width: 74px; padding: 12px 6px; color: var(--muted); background: #f7f5ef; font-size: .72rem; font-weight: 850; text-align: center; }
.availability-table thead th:first-child { left: 0; z-index: 4; min-width: 150px; text-align: left; }
.availability-table thead th span, .availability-table thead th small { display: block; }
.availability-table thead th small { margin-top: 3px; color: var(--muted); font-size: .62rem; font-weight: 700; }
.availability-table tbody th { position: sticky; left: 0; z-index: 3; min-width: 150px; padding: 16px; color: var(--ink); background: #fffdf8; font-size: .86rem; text-align: left; }
.availability-table tr:last-child th, .availability-table tr:last-child td { border-bottom: 0; }
.availability-table th:last-child, .availability-table td:last-child { border-right: 0; }
.availability-cell { min-width: 74px; height: 82px; padding: 9px 6px; vertical-align: middle; text-align: center; }
.availability-cell-day { display: block; margin-bottom: 5px; color: var(--ink); font-size: .78rem; font-weight: 900; }
.availability-cell-label { display: block; color: currentColor; font-size: .62rem; line-height: 1.15; }
.availability-free { color: #28643b; background: rgba(118, 169, 127, .16); }
.availability-partial { color: #8a5a26; background: rgba(219, 154, 85, .2); }
.availability-full { color: #913b2b; background: rgba(185, 81, 60, .17); }
.availability-unknown { color: #697670; background: rgba(154, 166, 160, .16); }
.availability-source-note { margin: 16px 2px 0; color: var(--muted); font-size: .79rem; }
.calendar-help { padding-top: 68px; padding-bottom: 72px; }
.calendar-help .section-heading p:not(.eyebrow) { color: var(--muted); }
.admin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-top: 16px; }
.admin-card { padding: 26px; }
.admin-card h2 { font-size: 1.8rem; }
.admin-card form { display: grid; gap: 12px; }
.admin-card li { margin-bottom: 8px; color: var(--muted); }
.site-footer { max-width: 1280px; margin: 0 auto; padding: 60px 44px 112px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.site-footer strong { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; font-weight: 500; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; align-content: start; }
.mobile-cta { display: none; }

:focus-visible { outline: 3px solid #247c8a; outline-offset: 3px; }

@media (max-width: 1040px) {
  .site-header { padding-right: 24px; padding-left: 24px; }
  .hero { padding-right: 20px; padding-left: 20px; }
  .hero-copy { padding-right: 40px; padding-left: 40px; }
  .scenario-grid { grid-template-columns: repeat(3, 1fr); }
  .date-card { margin-right: 24px; margin-left: 24px; }
}

@media (max-width: 820px) {
  .main-nav { display: none; }
  .main-nav.is-open { position: absolute; top: 72px; right: 18px; z-index: 40; display: flex; flex-direction: column; align-items: stretch; min-width: 220px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); box-shadow: var(--shadow); }
  .menu-toggle { display: block; }
  .hero, .date-card, .booking-layout, .two-column { grid-template-columns: 1fr; }
  .hero { min-height: 0; margin-top: 16px; }
  .hero-copy { min-height: 500px; border-radius: 24px 24px 0 0; padding: 52px 34px 48px; }
  .hero-visual { min-height: 440px; border-radius: 0 0 24px 24px; }
  .hero-photo img { min-height: 440px; }
  .welcome-slide img { min-height: 440px; }
  .availability-head { align-items: flex-start; flex-direction: column; }
  .availability-head .button { width: 100%; }
  .calendar-actions { margin-top: 26px; }
  .promo-banner { margin-right: 20px; margin-left: 20px; grid-template-columns: auto minmax(0, 1fr) auto; }
  .promo-link { grid-column: 2; justify-self: start; }
  .promo-close { grid-column: 3; grid-row: 1; }
  .date-card { margin: -26px 20px 14px; padding: 24px; }
  .date-form { grid-template-columns: repeat(2, 1fr); }
  .scenario-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; padding-right: 24px; padding-bottom: 96px; padding-left: 24px; }
  .mobile-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 25; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px; border-top: 1px solid var(--line); background: rgba(246, 241, 233, .95); backdrop-filter: blur(12px); }
  .mobile-cta a { padding: 12px 8px; border-radius: 10px; color: #fff; background: var(--accent-dark); font-size: .82rem; font-weight: 850; text-align: center; }
  .mobile-cta a + a { color: var(--ink); background: var(--sage); }
}

@media (max-width: 620px) {
  .site-header { padding: 14px 18px; }
  .brand { min-width: 0; font-size: .94rem; }
  .brand:before { width: 34px; height: 34px; flex-basis: 34px; }
  .hero { width: calc(100% - 24px); max-width: 390px; padding-right: 0; padding-left: 0; }
  .hero-copy, .hero-visual { width: 100%; max-width: 100%; }
  .hero-copy { min-height: 470px; padding: 42px 24px 40px; }
  .hero-copy h1 { width: 100%; max-width: 100%; font-size: 2.55rem; }
  .hero-text { width: 100%; max-width: 100%; font-size: .98rem; }
  .hero-visual, .hero-photo img { min-height: 340px; }
  .welcome-slide img { min-height: 340px; }
  .hero-photo > span, .welcome-slide figcaption { right: 22px; bottom: 20px; left: 22px; }
  .welcome-slide figcaption strong { font-size: 1.2rem; }
  .welcome-slide figcaption span { font-size: .7rem; }
  .welcome-controls { right: 16px; top: 16px; }
  .calendar-actions { gap: 10px; }
  .calendar-actions strong { min-width: 0; font-size: 1.1rem; }
  .ambient-decor { opacity: .72; }
  .lantern-two, .lantern-three, .spark-two { display: none; }
  .promo-banner { width: calc(100% - 28px); max-width: 390px; min-height: 0; margin: 16px auto 0; padding: 18px; grid-template-columns: auto minmax(0, 1fr); gap: 12px; }
  .promo-badge { width: 40px; height: 40px; font-size: 1.2rem; }
  .promo-copy { padding-right: 12px; }
  .promo-copy h2 { font-size: 1.55rem; }
  .promo-copy p:not(.eyebrow) { font-size: .78rem; }
  .promo-link { grid-column: 1 / -1; width: auto; justify-self: start; }
  .promo-close { position: absolute; top: 10px; right: 12px; }
  .date-card { margin-right: 14px; margin-left: 14px; padding: 22px 18px; }
  .date-form, .booking-card .date-form, .proof-grid, .scenario-grid, .room-grid, .admin-grid { grid-template-columns: 1fr; }
  .date-form .button, .date-form .calendar-action { grid-column: auto; }
  .section, .page-intro, .room-grid, .booking-layout, .two-column, .contact-grid, .faq-list, .admin-grid { padding-right: 20px; padding-left: 20px; }
  .section, .page-intro { padding-top: 62px; padding-bottom: 62px; }
  .page-intro h1 { font-size: 3.2rem; }
  .proof-grid article { min-height: 0; }
  .proof-grid article span { margin-bottom: 28px; }
  .room-card { grid-template-columns: 1fr; }
  .room-card-media { min-height: 150px; }
  .empty-state { padding: 30px 24px; }
  .site-footer { padding-top: 44px; }
  .brand span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .ambient-decor *, .promo-banner:before, .promo-banner:after { animation: none !important; }
  .welcome-slide { transition: none !important; }
}
