:root {
  --ink: #20241f;
  --muted: #6c7066;
  --line: #d8cdb8;
  --soft: #ede5d2;
  --paper: #f1ead9;
  --paper-strong: #f7f1e4;
  --brand: #55613a;
  --brand-2: #9f7f4f;
  --danger: #b42318;
  --warning: #9a6700;
  --ok: #4f7a45;
  --shadow: 0 18px 48px rgba(42, 43, 36, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(85, 97, 58, 0.06), rgba(241, 234, 217, 0) 220px),
    #ede5d2;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.app {
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: rgba(247, 241, 228, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 4px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}

h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

h3 {
  margin-bottom: 6px;
  font-size: 15px;
}

.sync {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.sync-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--warning);
}

.sync-dot.ready {
  background: var(--ok);
}

.sync-dot.error {
  background: var(--danger);
}

.workspace {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 360px;
  gap: 18px;
  padding: 18px;
}

.panel,
.content {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.panel {
  align-self: start;
  position: sticky;
  top: 16px;
  padding: 16px;
}

.content {
  min-width: 0;
  padding: 18px;
}

.booking-card {
  margin-bottom: 22px;
}

.booking-widget {
  max-width: 520px;
  overflow: hidden;
  border: 1px solid rgba(34, 36, 31, 0.16);
  border-radius: 10px;
  background: var(--paper-strong);
  box-shadow: 0 18px 52px rgba(34, 36, 31, 0.12);
}

.booking-row {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-height: 62px;
  margin: 0;
  padding: 10px 18px 10px 14px;
  border-bottom: 1px solid rgba(34, 36, 31, 0.18);
  color: var(--ink);
  text-align: left;
  background: var(--paper-strong);
}

.booking-row:last-child {
  border-bottom: 0;
}

.booking-widget.calendar-open #dates-trigger {
  display: none;
}

.booking-row-content {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.booking-icon {
  color: #55613a;
  font-size: 24px;
  line-height: 1;
}

.booking-label {
  color: #6c6d66;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-value,
.date-range-text {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
}

.booking-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.date-arrow {
  color: var(--muted);
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  min-height: 42px;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
}

.select-trigger:focus {
  outline: 0;
}

.select-trigger:focus-visible {
  border-radius: 6px;
  box-shadow: 0 0 0 2px rgba(85, 97, 58, 0.16);
}

.select-chevron {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 16px;
  transition: transform 160ms ease;
}

.booking-select-row.open {
  background: #f2eee5;
}

.booking-select-row.open .select-chevron {
  transform: rotate(180deg);
}

.select-menu {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  max-height: 0;
  margin: 0 -8px 0 20px;
  padding: 0 7px;
  overflow: hidden;
  border: 0 solid rgba(34, 36, 31, 0.12);
  border-radius: 8px;
  opacity: 0;
  background: var(--paper-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    max-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    margin 360ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 360ms cubic-bezier(0.22, 1, 0.36, 1),
    border-width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-select-row.open .select-menu {
  max-height: 340px;
  margin: 10px -8px -2px 20px;
  padding: 7px;
  border-width: 1px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.select-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #4d4e49;
  text-align: left;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
}

.select-option:hover,
.select-option.selected {
  color: #fff;
  background: var(--brand);
}

.select-empty {
  margin: 0;
  padding: 10px 12px;
  color: #6c6d66;
  font-size: 14px;
  font-weight: 700;
}

.select-check {
  font-size: 16px;
  font-weight: 900;
}

.date-trigger:hover,
.date-trigger.active {
  background: #e7e2d6;
}

.date-trigger:focus {
  outline: 2px solid rgba(85, 97, 58, 0.18);
  outline-offset: -2px;
}

.date-trigger.active::after {
  display: none;
}

.brand-card {
  margin: -4px -4px 18px;
  padding: 18px;
  border-radius: 4px;
  color: #f8f3ea;
  background:
    linear-gradient(180deg, rgba(16, 34, 27, 0.28), rgba(16, 34, 27, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(168, 121, 67, 0.32), transparent 38%),
    #55613a;
}

.brand-card h2 {
  margin-bottom: 12px;
  color: #fffaf2;
  font-size: 23px;
  line-height: 1.15;
}

.brand-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

select,
input {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--paper-strong);
}

select:focus,
input:focus {
  outline: 2px solid rgba(36, 90, 67, 0.2);
  border-color: var(--brand);
}

.summary {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.summary.compact {
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
}

.summary.compact .status-message {
  margin-top: 0;
}

.summary-row,
.quote-row,
.night-row,
.service-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #eef2ef;
  font-size: 14px;
}

.summary-row:last-child,
.quote-row:last-child,
.night-row:last-child,
.service-line:last-child {
  border-bottom: 0;
}

.status-message {
  margin: 10px 0 0;
  padding: 10px;
  border-radius: 6px;
  background: #efe2bb;
  color: var(--warning);
  font-size: 13px;
  line-height: 1.4;
}

.status-message.ok {
  background: #eaf7ef;
  color: var(--ok);
}

.status-message.error {
  background: #fff0ed;
  color: var(--danger);
}

.toolbar,
.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.calendar-actions {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  padding: 22px 18px 16px;
  border: 0;
  border-radius: 0;
  background: var(--paper-strong);
}

.icon-button,
.today-button {
  min-width: 34px;
  height: 32px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}

.icon-button {
  font-size: 24px;
  line-height: 1;
}

.today-button {
  min-width: 150px;
  padding: 0 14px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  white-space: nowrap;
}

.icon-button:hover,
.today-button:hover,
.calendar-close:hover {
  background: #e9e2d5;
}

.calendar-close {
  justify-self: end;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.toolbar p,
.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.legend-swatch {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.calendar-panel .legend {
  display: grid;
  justify-content: flex-start;
  gap: 7px;
  margin-top: 18px;
}

.calendar-panel .legend-item {
  color: #5f625c;
  font-size: 13px;
}

.calendar-shell {
  overflow-x: visible;
  border: 0;
  border-radius: 0;
  background: var(--paper-strong);
}

.calendar-panel {
  display: none;
  margin: 0;
  padding: 0 18px 22px;
  border-top: 0;
  background: var(--paper-strong);
}

.calendar-panel.open {
  display: block;
}

.calendar-active-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 40px;
  align-items: center;
  min-height: 52px;
  margin: 0 -18px;
  padding: 8px 10px 8px 14px;
  border-bottom: 1px solid rgba(34, 36, 31, 0.18);
  background: #e7e2d6;
}

.calendar-active-row strong {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.calendar-subtitle {
  display: none;
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.month-calendar {
  min-width: 0;
  border-left: 0;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--paper-strong);
  border-bottom: 0;
}

.calendar-weekdays div {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d6f68;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
}

.calendar-week {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  min-height: 62px;
  border-bottom: 0;
}

.calendar-week:last-child {
  border-bottom: 0;
}

.month-day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: inherit;
  border-right: 0;
  border-radius: 0;
  background: var(--paper-strong);
  color: #5f625c;
  text-align: center;
  padding: 3px 0 0;
  overflow: visible;
}

.month-day:nth-child(7) {
  border-right: 0;
}

.month-day.weekend {
  background: var(--paper-strong);
}

.month-day.outside {
  background: var(--paper-strong);
  color: #b2b2ac;
}

.month-day.today {
  background: #eef3e4;
  box-shadow: none;
}

.month-day .day-number {
  position: static;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.day-dots {
  display: flex;
  justify-content: center;
  gap: 3px;
  min-height: 7px;
  margin-top: -1px;
  font-style: normal;
}

.day-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
}

.month-day.fully-blocked:not(.checkout-only) .day-number {
  color: #92948e;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.month-day.checkout-only .day-number {
  color: rgba(32, 36, 31, 0.55);
}

.day-bubble {
  position: absolute;
  left: 50%;
  bottom: -2px;
  z-index: 4;
  padding: 3px 7px;
  border-radius: 999px;
  color: #fff;
  background: #20241f;
  font-size: 10px;
  font-style: normal;
  line-height: 1.2;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow: 0 8px 20px rgba(32, 36, 31, 0.16);
}

.day-bubble::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #20241f;
  transform: translateX(-50%) rotate(45deg);
}

.month-day small {
  display: none;
}

.month-day.selected {
  background: var(--paper-strong);
  box-shadow: none;
}

.month-day.selected .day-number {
  color: #fff;
  background: var(--brand);
}

.month-day.in-range {
  background: #eef3e4;
}

.month-day.selected small,
.month-day.in-range small {
  color: #355344;
}

.week-bars {
  display: none;
}

.month-reservation {
  min-width: 0;
  height: 9px;
  border-radius: 999px;
  margin: 0 10px;
  box-shadow: 0 1px 2px rgba(32, 36, 31, 0.2);
}

.available-section,
.services-section {
  margin-top: 22px;
}

.cabin-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cabin-option {
  display: grid;
  grid-template-columns: minmax(160px, 26%) minmax(0, 1fr);
  min-height: 178px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-strong);
}

.cabin-option.available {
  border-color: rgba(31, 122, 77, 0.35);
}

.cabin-option.unavailable {
  opacity: 0.66;
}

.cabin-option.selected {
  border-color: rgba(85, 97, 58, 0.75);
  box-shadow: 0 14px 36px rgba(85, 97, 58, 0.12);
}

.cabin-photo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  background: #d9d2c4;
}

.cabin-photo-placeholder {
  padding: 14px;
  color: rgba(255, 250, 242, 0.88);
  background:
    linear-gradient(150deg, rgba(85, 97, 58, 0.92), rgba(32, 36, 31, 0.62)),
    #d9d2c4;
}

.cabin-photo-placeholder span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
}

.cabin-photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 178px;
  overflow: hidden;
  background: #d9d2c4;
}

.cabin-photo-frame .cabin-photo {
  position: absolute;
  inset: 0;
  min-height: 0;
  margin: 0;
}

.cabin-photo-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cabin-photo-frame.has-photo .cabin-photo-placeholder {
  opacity: 0;
}

.cabin-card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.cabin-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.cabin-card-top h3 {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.cabin-price {
  max-width: 240px;
  color: var(--brand);
  text-align: right;
  line-height: 1.25;
}

.cabin-description {
  margin: 0;
  max-width: 680px;
  color: #50554d;
  font-size: 14px;
  line-height: 1.55;
}

.cabin-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  align-self: end;
}

.availability {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.availability.yes {
  border-color: rgba(31, 122, 77, 0.3);
  color: var(--ok);
  background: #eaf7ef;
}

.availability.no {
  border-color: rgba(180, 35, 24, 0.2);
  color: var(--danger);
  background: #fff0ed;
}

.cabin-card-actions button {
  min-width: 150px;
  padding: 9px 10px;
  border-radius: 3px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.cabin-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cabin-features {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.cabin-feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #50554d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.cabin-feature svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cabin-feature .paw-icon {
  fill: currentColor;
  stroke: none;
}

.cabin-feature.muted {
  color: #8f8a82;
}

.service-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  background: var(--paper-strong);
}

.services-panel {
  margin-top: 16px;
}

.services-heading {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.services-heading h3 {
  margin-bottom: 4px;
}

.services-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-category {
  margin: 14px 0 8px;
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.service-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.service-price {
  font-weight: 800;
  white-space: nowrap;
}

.stepper {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.stepper button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #edf2ef;
  color: var(--ink);
  font-weight: 900;
}

.stepper span {
  text-align: center;
  font-weight: 900;
}

.service-controls {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.service-controls .stepper {
  margin-top: 0;
}

.service-add {
  min-height: 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-body {
  min-height: 0;
}

.empty-state {
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.quote-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.quote-section {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(32, 36, 31, 0.12);
  border-radius: 8px;
  background: var(--paper-strong);
}

.quote-section-head {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.quote-section-head > span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(85, 97, 58, 0.32);
  border-radius: 999px;
  color: #55613a;
  font-size: 12px;
  font-weight: 900;
}

.quote-section-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.quote-section-head p {
  margin: 3px 0 0;
  color: #66675f;
  font-size: 12px;
  line-height: 1.35;
}

.quote-empty-row,
.quote-subtotal,
.service-subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(32, 36, 31, 0.1);
  color: #66675f;
  font-size: 13px;
}

.quote-empty-row strong,
.quote-subtotal strong,
.service-subtotal strong {
  color: var(--ink);
}

.quote-final-section {
  background: #f5f0e6;
}

.actions {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.actions button {
  width: 100%;
  min-height: 42px;
  border-radius: 3px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.actions button:first-child {
  background: #edf2ef;
  color: var(--ink);
}

.actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.mini {
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .workspace {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .quote {
    grid-column: 1 / -1;
    position: static;
  }

  .booking-widget {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .topbar,
  .toolbar,
  .section-heading {
    display: grid;
  }

  .workspace {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .panel {
    position: static;
  }

  h1 {
    font-size: 23px;
  }

  .cabin-option {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 150px;
  }

  .cabin-photo {
    min-height: 150px;
  }

  .cabin-card-body {
    padding: 12px;
  }

  .cabin-card-top,
  .cabin-card-actions {
    display: grid;
    gap: 8px;
  }

  .cabin-price {
    max-width: none;
    text-align: left;
    font-size: 14px;
  }

  .cabin-card-top h3 {
    font-size: 18px;
  }

  .cabin-description {
    display: none;
  }

  .cabin-card-actions button {
    min-width: 0;
    width: 100%;
  }
}

[hidden] {
  display: none !important;
}

body {
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 0 clamp(16px, 4vw, 34px);
  color: #fff9ef;
  background: transparent;
  transition:
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  color: #20241f;
  background: #fbfaf4;
  box-shadow: 0 1px 0 rgba(32, 36, 31, 0.14);
}

.header-left {
  justify-self: start;
}

.menu-toggle {
  display: inline-grid;
  gap: 7px;
  width: 36px;
  padding: 8px 0;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
}

.menu-toggle span:nth-child(2) {
  width: 20px;
}

.menu-close {
  position: relative;
  height: 34px;
}

.menu-close span {
  position: absolute;
  top: 17px;
  left: 0;
  width: 24px;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.menu-close span:nth-child(2) {
  width: 24px;
}

.header-logo,
.menu-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: inherit;
  text-decoration: none;
}

.logo-mark {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.header-logo .logo-mark-dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.header-logo .logo-mark-light,
.header-logo .logo-mark-dark {
  transition: opacity 180ms ease;
}

.site-header.scrolled .header-logo .logo-mark-light,
.site-header.menu-active .header-logo .logo-mark-light {
  opacity: 0;
}

.site-header.scrolled .header-logo .logo-mark-dark,
.site-header.menu-active .header-logo .logo-mark-dark {
  opacity: 1;
}

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-contact svg,
.menu-link svg,
.menu-sublink svg {
  display: none;
  width: 16px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-mark circle {
  fill: currentColor;
  stroke: none;
}

.arrow-mark path {
  fill: none;
  stroke: currentColor;
}

.header-contact::after,
.menu-link::after,
.menu-sublink::after,
.contact-grid strong::after {
  content: "·›";
  display: inline-block;
  margin-left: 4px;
  color: currentColor;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 0.9;
  white-space: nowrap;
}

.menu-link-toggle::after {
  content: "⌄";
  margin-left: 0;
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 0.8;
  transition: transform 220ms ease;
}

.menu-link-toggle:not(.collapsed)::after {
  transform: rotate(180deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  color: #8f908a;
  background: var(--paper);
}

.site-menu-panel {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 18px clamp(18px, 5vw, 54px) 52px;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px);
  animation: menuReveal 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes menuReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.site-menu-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
}

.menu-logo {
  grid-column: 2;
}

.menu-nav {
  display: grid;
  gap: 0;
  width: min(360px, 100%);
  margin-top: clamp(22px, 7vh, 56px);
}

.menu-nav::before {
  content: "Villaggio Girotto";
  margin-bottom: 24px;
  color: #55613a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 400;
  line-height: 1.2;
}

.menu-link,
.menu-sublink {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  padding: 4px 0;
  border-bottom: 0;
  color: inherit;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 4.6vw, 28px);
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
}

.menu-link-toggle .down-arrow {
  width: 16px;
  height: 10px;
  transition: transform 180ms ease;
}

.menu-link-toggle.collapsed .down-arrow {
  transform: none;
}

.menu-subnav {
  display: grid;
  max-height: 180px;
  padding: 4px 0 10px 18px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-subnav.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.menu-sublink {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 4.2vw, 25px);
  font-weight: 400;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 78px clamp(18px, 5vw, 72px) 58px;
  color: #fff9ef;
  background:
    linear-gradient(180deg, rgba(48, 53, 43, 0.52), rgba(48, 53, 43, 0.78)),
    url("assets/home/SP%20-%20Vecchio%20Toro.png") center / cover no-repeat,
    #30352b;
}

.hero-top {
  display: none;
  align-items: flex-start;
  justify-content: center;
  min-height: 70px;
}

.hero-top .sync {
  display: none;
}

.logo-placeholder {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 249, 239, 0.72);
  color: rgba(255, 249, 239, 0.92);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy {
  grid-row: 3;
  max-width: 980px;
  align-self: end;
}

.hero-copy h1 {
  max-width: 1040px;
  margin-bottom: 22px;
  color: #fff9ef;
  font-size: clamp(28px, 3.2vw, 35px);
  line-height: 1.08;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span + span {
  max-width: 760px;
  margin-top: 12px;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.62em;
  font-weight: 600;
  line-height: 1.28;
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 249, 239, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.site-flow {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(14px, 4vw, 42px) 86px;
}

.app.detail-mode .hero,
.app.detail-mode .available-section,
.app.experience-mode .hero,
.app.experience-mode .booking-card,
.app.experience-mode .summary,
.app.experience-mode .available-section,
.app.experience-mode .cabin-detail {
  display: none;
}

.app.detail-mode .site-flow,
.app.experience-mode .site-flow {
  padding-top: 28px;
}

.app.detail-mode .booking-card {
  display: none;
}

.app.detail-mode .cabin-detail {
  margin-top: 0;
  border-top: 0;
}

.reveal-enabled .reveal-on-scroll,
.reveal-enabled .cabin-option,
.reveal-enabled .detail-layout {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(28px);
  transition:
    opacity 760ms ease,
    filter 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-enabled .reveal-on-scroll.is-visible,
.reveal-enabled .cabin-option.is-visible,
.reveal-enabled .detail-layout.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-enabled .reveal-on-scroll,
  .reveal-enabled .cabin-option,
  .reveal-enabled .detail-layout {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.booking-card {
  display: flex;
  justify-content: center;
  margin: -34px auto 64px;
}

.booking-widget {
  width: min(560px, 100%);
  max-width: none;
  border: 0;
  border-radius: 12px;
  background: var(--paper-strong);
  box-shadow: 0 24px 70px rgba(24, 27, 21, 0.2);
}

.booking-row {
  min-height: 66px;
  background: var(--paper-strong);
}

.booking-icon {
  color: #55613a;
}

.booking-icon-svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #55613a;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-icon-svg.calendar-icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.select-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #55613a;
}

.select-chevron svg {
  display: block;
  width: 12px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-value,
.date-range-text {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}

.calendar-panel {
  background: var(--paper-strong);
}

.calendar-actions,
.calendar-shell,
.calendar-weekdays,
.month-day,
.month-day.weekend,
.month-day.outside,
.calendar-weekdays div {
  background: var(--paper-strong);
}

.calendar-week {
  min-height: 78px;
}

.month-day {
  justify-content: flex-start;
  padding-top: 4px;
}

.month-day .day-number {
  width: 30px;
  height: 28px;
}

.month-day small {
  display: block;
  width: 100%;
  max-width: 58px;
  margin: 4px auto 0;
  color: #8a877e;
  font-size: 9px;
  line-height: 1.08;
  white-space: normal;
}

.available-section {
  margin-top: 0;
}

.section-heading {
  display: block;
  margin-bottom: 12px;
}

.section-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
}

.editorial-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.editorial-heading h2 {
  margin-bottom: 26px;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.08;
}

.editorial-heading p {
  max-width: 610px;
  color: #66675f;
  font-size: 17px;
  line-height: 1.62;
}

.editorial-heading #available-note {
  margin-top: 14px;
  font-size: 14px;
}

.section-heading p:last-child {
  max-width: 560px;
  color: #66675f;
  line-height: 1.5;
}

.yellow-note {
  display: inline-flex;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #3f4228;
  background: #d9c783;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.yellow-note[hidden] {
  display: none;
}

.reservation-channels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 22px;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(32, 36, 31, 0.14);
  border-bottom: 1px solid rgba(32, 36, 31, 0.14);
}

.reservation-channels p {
  margin: 0;
  max-width: 460px;
  color: #50554d;
  font-size: 15px;
  line-height: 1.45;
}

.reservation-channels .eyebrow {
  margin-bottom: 3px;
  color: #55613a;
}

.quote-channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.channel-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 8px 13px;
  border: 1px solid rgba(85, 97, 58, 0.32);
  border-radius: 999px;
  color: #55613a;
  background: rgba(247, 241, 228, 0.58);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.channel-contact-link::after {
  content: "·›";
  margin-left: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 0.9;
}

.cabin-options {
  gap: 0;
  border-top: 1px solid rgba(32, 36, 31, 0.18);
}

.cabin-option {
  grid-template-columns: minmax(180px, 31%) minmax(0, 1fr);
  min-height: 224px;
  border: 0;
  border-bottom: 1px solid rgba(32, 36, 31, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cabin-option.available,
.cabin-option.unavailable,
.cabin-option.selected {
  border-color: rgba(32, 36, 31, 0.18);
  box-shadow: none;
}

.cabin-option.unavailable {
  opacity: 1;
}

.cabin-photo {
  min-height: 184px;
  margin: 22px 0;
  background: #d5cabb;
}

.cabin-photo-frame {
  min-height: 184px;
  margin: 22px 0;
  background: #d5cabb;
}

.cabin-photo-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  text-align: left;
}

.cabin-photo-link:hover .cabin-photo {
  filter: brightness(0.94);
}

.cabin-photo-placeholder {
  align-items: flex-end;
  padding: 16px;
  background:
    linear-gradient(150deg, rgba(48, 53, 43, 0.94), rgba(48, 53, 43, 0.52)),
    #d5cabb;
}

.cabin-card-body {
  align-content: start;
  gap: 14px;
  padding: 26px 0 26px 38px;
}

.cabin-card-top {
  align-items: flex-start;
}

.cabin-card-top h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.05;
}

.cabin-title-button {
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
}

.cabin-title-button:hover {
  color: #55613a;
}

.availability {
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.cabin-price {
  display: grid;
  gap: 2px;
  max-width: 240px;
  color: var(--ink);
  text-align: right;
  line-height: 1.2;
}

.cabin-price strong {
  color: var(--brand);
  font-size: 19px;
}

.cabin-price span,
.cabin-price em {
  color: #696b63;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.cabin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.cabin-tabs button {
  padding: 0;
  color: #8f8a82;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
  text-transform: inherit;
}

.cabin-tabs button.active,
.cabin-tabs button:hover {
  color: #55613a;
}

.cabin-tab-panel {
  max-width: 560px;
}

.cabin-tab-panel p,
.cabin-description {
  margin: 0;
  color: #50554d;
  font-size: 15px;
  line-height: 1.55;
}

.cabin-tab-panel ul {
  margin: 4px 0 0;
  padding-left: 17px;
  color: #5f625c;
  font-size: 13px;
  line-height: 1.75;
}

.cabin-details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 620px;
}

.cabin-details-list ul,
.detail-meta ul {
  margin: 0;
  padding-left: 17px;
  color: #5f625c;
  font-size: 13px;
  line-height: 1.75;
}

.cabin-card-actions {
  justify-content: flex-start;
}

.cabin-card-actions button {
  min-width: 0;
  padding: 0;
  color: #55613a;
  background: transparent;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cabin-card-actions button::after {
  content: "·›";
  display: inline-block;
  margin-left: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 0.9;
  white-space: nowrap;
  vertical-align: 0;
}

.cabin-detail {
  margin-top: 70px;
  padding-top: 42px;
  border-top: 1px solid rgba(32, 36, 31, 0.18);
}

.back-button {
  margin-bottom: 22px;
  padding: 0;
  color: #55613a;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.detail-photo {
  display: block;
  min-height: 300px;
  margin-bottom: 26px;
  padding: 0;
  overflow: hidden;
  color: rgba(255, 249, 239, 0.9);
  background:
    linear-gradient(150deg, rgba(48, 53, 43, 0.94), rgba(48, 53, 43, 0.44)),
    #d5cabb;
}

.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-photo span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.detail-gallery {
  display: grid;
  gap: 12px;
  min-height: 390px;
  padding: 10px;
  background: #4b4d40;
}

.detail-gallery-placeholder {
  display: grid;
  place-items: end start;
  min-height: 300px;
  padding: 18px;
  background:
    linear-gradient(150deg, rgba(48, 53, 43, 0.94), rgba(48, 53, 43, 0.44)),
    #d5cabb;
}

.detail-gallery-stage {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #d5cabb;
}

.gallery-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: min(72vh, 680px);
  object-fit: cover;
  background: #d5cabb;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 420ms ease, transform 720ms ease;
}

.gallery-image.active {
  position: relative;
  opacity: 1;
  transform: scale(1);
}

.gallery-image.incoming {
  z-index: 1;
}

.gallery-image.incoming.visible {
  opacity: 1;
  transform: scale(1);
}

.gallery-image.active.leaving {
  opacity: 0;
  transform: scale(1.006);
}

.detail-gallery-stage.is-changing .gallery-arrow {
  opacity: 0.45;
  pointer-events: none;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 88px;
  padding: 0;
  border-radius: 0;
  color: #fff9ef;
  background: transparent;
  text-shadow: 0 2px 12px rgba(32, 36, 31, 0.55);
  transform: translateY(-50%);
  transition: color 180ms ease, opacity 180ms ease;
  z-index: 2;
}

.gallery-arrow:hover {
  background: transparent;
  color: #ffffff;
}

.gallery-arrow.prev {
  left: clamp(18px, 4vw, 48px);
}

.gallery-arrow.next {
  right: clamp(18px, 4vw, 48px);
}

.gallery-arrow.prev::before,
.gallery-arrow.next::before {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 0.9;
}

.gallery-arrow.prev::before {
  content: "‹·";
}

.gallery-arrow.next::before {
  content: "·›";
}

.cabin-detail h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
}

#detail-description {
  max-width: 650px;
}

.detail-tabs {
  margin: 4px 0 18px;
}

.detail-tabs .cabin-tabs {
  gap: 24px;
}

.detail-tabs .cabin-tabs button {
  font-size: 12px;
}

#detail-description p {
  color: #50554d;
  font-size: 18px;
  line-height: 1.62;
}

#detail-description ul {
  color: #50554d;
  font-size: 16px;
  line-height: 1.9;
}

.cabin-recommendation {
  max-width: 650px;
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(32, 36, 31, 0.14);
}

.cabin-recommendation .recommendation-kicker {
  margin-bottom: 18px;
  color: #55613a;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
}

.cabin-recommendation h3 {
  max-width: 560px;
  margin-bottom: 24px;
  color: #20241f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.04;
}

.cabin-recommendation p {
  color: #50554d;
  font-size: 18px;
  line-height: 1.62;
}

.cabin-recommendation strong {
  font-weight: 800;
}

.experience-page {
  padding-top: 54px;
}

.experience-page > h1 {
  max-width: 860px;
  margin-bottom: 24px;
  color: #20241f;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
}

.experience-intro {
  max-width: 720px;
  margin-bottom: 44px;
  color: #66675f;
  font-size: 19px;
  line-height: 1.58;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 0;
  background: rgba(32, 36, 31, 0.16);
}

.experience-grid article {
  min-height: 260px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper-strong);
}

.experience-grid span {
  display: block;
  margin-bottom: 18px;
  color: #55613a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-grid h2 {
  color: #20241f;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

.experience-grid h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3.4vw, 38px);
}

.experience-grid p {
  margin-bottom: 0;
  color: #5f625c;
  font-size: 15px;
  line-height: 1.65;
}

.experience-grid article:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 220px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.detail-meta strong {
  display: block;
  margin-bottom: 8px;
  color: #55613a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-quote {
  position: sticky;
  top: 18px;
  padding: 22px;
  border: 1px solid rgba(32, 36, 31, 0.18);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 52px rgba(34, 36, 31, 0.1);
}

.detail-quote h2 {
  margin-bottom: 8px;
  font-size: 26px;
}

.detail-help {
  color: #66675f;
  font-size: 13px;
  line-height: 1.45;
}

.quote-channels {
  margin: 14px 0 16px;
}

.quote-channels span {
  flex-basis: 100%;
  color: #6c7066;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-channels p {
  flex-basis: 100%;
  margin: 0;
  color: #66675f;
  font-size: 13px;
  line-height: 1.45;
}

.quote-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 6px 0 14px;
}

.detail-date-button {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  color: #fff;
  background: #55613a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-service-button {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(85, 97, 58, 0.32);
  border-radius: 999px;
  color: #55613a;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-calendar-host {
  margin-bottom: 14px;
}

.detail-calendar-host .calendar-panel {
  overflow: hidden;
  margin-top: 10px;
  border: 1px solid rgba(32, 36, 31, 0.16);
  border-radius: 10px;
  background: var(--paper-strong);
}

.detail-calendar-host .calendar-active-row,
.detail-calendar-host .calendar-actions,
.detail-calendar-host .calendar-shell,
.detail-calendar-host .calendar-weekdays,
.detail-calendar-host .month-day,
.detail-calendar-host .month-day.weekend,
.detail-calendar-host .month-day.outside,
.detail-calendar-host .calendar-weekdays div {
  background: var(--paper-strong);
}

.service-item {
  background: var(--paper-strong);
}

.services-panel {
  margin-top: 0;
}

.service-picker {
  gap: 8px;
}

.service-category {
  margin: 8px 0 2px;
  color: #55613a;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-item.compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(32, 36, 31, 0.1);
  border-radius: 0;
  background: transparent;
}

.service-item.compact.selected {
  color: #55613a;
}

.service-item.compact:last-of-type {
  border-bottom: 0;
}

.service-info {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.service-info strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.service-info .service-price-inline {
  color: #66675f;
  font-size: 12px;
}

.service-info small {
  color: #7a7c74;
  font-size: 11px;
  line-height: 1.25;
}

.service-stepper {
  display: grid;
  grid-template-columns: 28px 22px 28px;
  align-items: center;
  gap: 4px;
}

.service-stepper button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(32, 36, 31, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 900;
}

.service-stepper button:last-child {
  color: #fff;
  background: #55613a;
  border-color: #55613a;
}

.service-stepper span {
  text-align: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-footer {
  padding: 78px clamp(22px, 6vw, 74px);
  color: #f8f8f1;
  background: #30352b;
}

.contact-footer .eyebrow {
  color: rgba(248, 248, 241, 0.68);
}

.contact-footer h2 {
  max-width: 760px;
  margin-bottom: 34px;
  color: #fff9ef;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(248, 248, 241, 0.24);
}

.contact-grid a {
  display: grid;
  align-content: start;
  min-height: 150px;
  padding: 22px;
  color: #fff9ef;
  background: #30352b;
  text-decoration: none;
}

.contact-grid span {
  margin-bottom: 12px;
  color: rgba(248, 248, 241, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.12;
}

.contact-grid strong svg {
  display: none;
  flex: 0 0 auto;
  width: 16px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  opacity: 0.9;
}

.contact-grid em {
  margin-top: 10px;
  color: rgba(248, 248, 241, 0.72);
  font-size: 13px;
  font-style: normal;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 52px;
    padding-inline: 16px;
  }

  .header-logo,
  .menu-logo,
  .logo-mark {
    width: 52px;
    height: 52px;
  }

  .header-contact {
    font-size: 11px;
  }

  .menu-link {
    font-size: 24px;
  }

  .menu-sublink {
    font-size: 23px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(26px, 7vw, 35px);
  }

  .booking-card {
    margin-bottom: 46px;
  }

  .reservation-channels {
    align-items: flex-start;
    flex-direction: column;
  }

  .cabin-option {
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 190px;
  }

  .cabin-photo {
    min-height: 150px;
    margin: 18px 0;
  }

  .cabin-photo-frame {
    min-height: 150px;
    margin: 18px 0;
  }

  .cabin-card-body {
    padding: 18px 0 18px 18px;
  }

  .cabin-card-top {
    display: grid;
    gap: 10px;
  }

  .cabin-price {
    text-align: left;
  }

  .cabin-description {
    display: block;
    font-size: 13px;
  }

  .cabin-details-list {
    display: none;
  }

  .detail-layout,
  .detail-meta {
    grid-template-columns: 1fr;
  }

  .detail-gallery {
    min-height: 0;
    padding: 8px;
  }

  .detail-gallery-stage,
  .detail-gallery-stage img {
    min-height: 360px;
  }

  .gallery-arrow {
    width: 54px;
    height: 72px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .detail-quote {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-contact {
    max-width: 104px;
    justify-content: flex-end;
    line-height: 1.1;
    text-align: right;
  }

  .site-flow {
    padding-left: 10px;
    padding-right: 10px;
  }

  .booking-card {
    margin-top: -28px;
  }

  .yellow-note {
    border-radius: 12px;
  }

  .cabin-option {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .cabin-card-top h3 {
    font-size: 22px;
  }

  .cabin-tabs {
    gap: 9px;
    font-size: 10px;
  }

  .cabin-price strong {
    font-size: 16px;
  }

  .quote-quick-actions {
    grid-template-columns: 1fr;
  }

  .cabin-recommendation h3 {
    font-size: 34px;
  }

  .experience-page {
    padding-top: 34px;
  }

  .experience-grid article {
    min-height: 0;
  }
}
