/* ---- page title band ---- */
.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 40px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: auto -10% -40% -10%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(47,71,51,0.06), transparent 70%);
  pointer-events: none;
}
.crumbs {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 22px;
}
.crumbs a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color .2s; }
.crumbs a:hover { border-color: var(--accent); }
.crumbs .sep { opacity: 0.5; }

.page-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04; letter-spacing: 0.005em;
  margin: 0 0 18px;
  max-width: 18ch;
}
.page-title em { font-style: italic; color: var(--accent-2); }
.page-title .hl-inn {
  color: var(--accent);
  font-style: normal;
  background-image: linear-gradient(to top, rgba(47,71,51,0.16) 0%, rgba(47,71,51,0.16) 18%, transparent 18%);
  padding: 0 0.05em;
}
.page-lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0;
}

/* ---- key facts row ---- */
.keyfacts {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.keyfact { padding: 5px 10px 0 10px; border-right: 1px solid var(--rule); }
.keyfact:last-child { border-right: 0; }
.keyfact .n {
  font-family: var(--serif); font-size: 28px; line-height: 1; color: var(--accent);
}
.keyfact .l {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}

/* ---- year tabs ---- */
.year-tabs {
  display: inline-flex; gap: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 4px;
}
.year-tab {
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  transition: background .2s, color .2s;
}
.year-tab.is-active {
  background: var(--accent);
  color: var(--cream-soft);
}
.year-tab:not(.is-active):hover { color: var(--accent); }

/* ---- rate sections ---- */
section.block { padding: clamp(56px, 8vw, 96px) 0; }
section.block + section.block { padding-top: 0; }

.rates-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 36px; flex-wrap: wrap;
}
.rates-head .display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05; letter-spacing: 0.005em; margin: 0;
}
.rates-head .display em { font-style: italic; color: var(--accent); }
.rates-head .sub {
  font-family: var(--serif); font-style: italic;
  font-size: 19px; color: var(--ink-soft); margin: 8px 0 0;
}

.rate-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -50px rgba(0,0,0,0.25);
  overflow: hidden;
}
.rate-card-head {
  padding: 28px 32px;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: linear-gradient(180deg, var(--cream-soft), var(--paper));
}
.rate-card-head h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 28px; margin: 0; line-height: 1.1;
}
.rate-card-head .meta {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.rate-card-head .meta strong { color: var(--accent-2); font-weight: 700; }

/* tables */
.rate-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
}
.rate-table th, .rate-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
}
.rate-table thead th {
  background: var(--cream);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}
.rate-table thead th:first-child { width: 36%; }
.rate-table tbody th {
  font-weight: 500;
  color: var(--ink);
  font-size: 14px;
  background: var(--cream-soft);
}
.rate-table tbody th small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 4px;
}
.rate-table td {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}
.rate-table tbody tr:last-child th,
.rate-table tbody tr:last-child td { border-bottom: 0; }

.rate-table tr.row-week th, .rate-table tr.row-week td {
  background: rgba(47,71,51,0.04);
}
.rate-table tr.row-week td { color: var(--accent); }
.rate-table .discount-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 600;
  background: rgba(182,84,31,0.08);
  padding: 3px 8px; margin-left: 8px;
  vertical-align: middle;
}

.rate-card-foot {
  padding: 18px 32px;
  background: var(--cream-soft);
  border-top: 1px solid var(--rule);
  font-size: 13px; color: var(--muted);
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
}
.rate-card-foot .pill {
  background: var(--paper); border: 1px solid var(--rule);
  padding: 6px 12px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}

/* holiday card variant */
.holiday-card {
  margin-top: 32px;
  background: var(--cream);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.holiday-card .rate-card-head {
  background: var(--ink); color: var(--cream-soft);
  border-bottom: 1px solid var(--ink);
}
.holiday-card .rate-card-head h3 { color: var(--cream-soft); }
.holiday-card .rate-card-head h3 em { color: #e9c483; font-style: italic; }
.holiday-card .rate-card-head .meta { color: rgba(245,239,228,0.7); }
.holiday-card .rate-table thead th { background: var(--cream); }

/* ---- combined discount banner ---- */
.combo {
  margin: 48px 0 0;
  background: var(--forest-deep);
  color: var(--cream-soft);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.combo .pct {
  font-family: var(--serif);
  font-size: 64px; line-height: 1;
  color: #e9c483;
}
.combo h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; margin: 0 0 6px;
}
.combo p { margin: 0; color: rgba(245,239,228,0.82); font-size: 14px; line-height: 1.6; max-width: 60ch; }

/* ---- floor plan ---- */
.floors {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.floor-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.floor {
  padding: 48px clamp(28px, 4vw, 56px);
  border-right: 1px solid var(--rule);
}
.floor:last-child { border-right: 0; }
.floor h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 28px; margin: 0 0 6px;
}
.floor .floor-meta {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  margin-bottom: 24px;
}
.floor ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.floor li {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.floor li:last-child { border-bottom: 1px solid var(--rule); }
.floor li .room-num {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--accent);
  font-weight: 500;
}
.floor li .room-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.floor .summary {
  margin-top: 24px;
  font-family: var(--serif); font-style: italic;
  font-size: 17px; color: var(--accent-2);
}

/* ---- season calendar ---- */
.calendar {
  background: var(--cream);
}
.cal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.cal {
  padding: 28px 24px 30px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.cal .tag {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 600;
  margin-bottom: 10px;
}
.cal h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; margin: 0 0 10px;
}
.cal .dates {
  font-size: 13px; color: var(--ink-soft);
  line-height: 1.5;
}
.cal.holiday { background: var(--ink); color: var(--cream-soft); }
.cal.holiday .tag { color: #e9c483; }
.cal.holiday h4 { color: var(--cream-soft); }
.cal.holiday .dates { color: rgba(245,239,228,0.78); }

/* ---- contact CTA ---- */
.contact-cta {
  background: var(--forest);
  color: var(--cream-soft);
  padding: clamp(16px, 8vw, 31px) 0;
  text-align: center;
}
.contact-cta .display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05; margin: 0 0 18px;
  color: var(--cream-soft);
}
.contact-cta .display em { color: #e9c483; font-style: italic; }
.contact-cta p {
  font-family: var(--serif); font-style: italic;
  font-size: 20px; color: rgba(245,239,228,0.85);
  max-width: 56ch; margin: 0 auto 32px; line-height: 1.5;
}
.contact-actions {
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.btn-primary, .btn-ghost {
    padding: 16px 28px;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 600;
    transition: background .2s, color .2s, border-color .2s;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-primary {
    background: var(--cream-soft); color: var(--ink);
  }
  .btn-primary:hover { background: var(--accent-2); color: var(--cream-soft); }
  .btn-ghost {
    border: 1px solid rgba(245,239,228,0.4);
    color: var(--cream-soft);
  }
  .btn-ghost:hover { border-color: #e9c483; color: #e9c483; }

/* ---- notes ---- */
.footnote {
  font-family: var(--sans); font-size: 13px; color: var(--muted);
  margin-top: 28px; max-width: 70ch;
  font-style: italic;
}
.footnote .rev {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-style: normal;
  margin-top: 12px;
}

/* ---- future rates ---- */
.future-rates {
  background: var(--cream-soft);
  border: 1px dashed var(--rule);
  padding: 60px 32px;
  text-align: center;
}
.future-rates .display {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; margin: 0 0 12px; color: var(--ink);
}
.future-rates p { color: var(--muted); margin: 0; max-width: 50ch; margin-inline: auto; line-height: 1.6; }
.future-rates .badge {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 600;
  background: rgba(182,84,31,0.1);
  padding: 6px 14px;
  margin-bottom: 20px;
}
