:root {
  --ink: #25302f;
  --muted: #66736f;
  --paper: #fffdfa;
  --shell: #f7f5ef;
  --line: #d7ded9;
  --sea: #0f766e;
  --sea-deep: #134e4a;
  --coral: #d85f44;
  --gold: #f4c66a;
  --sand: #efe6d4;
  --palm: #7fc8b5;
  --mint: #e6f3ee;
  --rose: #f9e5df;
  --shadow: 0 18px 55px rgba(37, 48, 47, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand span {
  min-width: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--sea-deep);
}

.nav-links .nav-book {
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--sea);
  color: white;
}

.nav-links .nav-book:hover {
  background: var(--sea-deep);
  color: white;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: calc(100vh - 72px);
  background: var(--shell);
}

.media-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--sea-deep);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 78, 74, 0.76), rgba(19, 78, 74, 0.18) 58%, rgba(19, 78, 74, 0.04)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 42%);
}

.hero-copy {
  position: absolute;
  left: clamp(24px, 6vw, 76px);
  bottom: clamp(32px, 8vw, 86px);
  width: min(720px, calc(100% - 48px));
  color: white;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #ffd8c8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 18ch;
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  letter-spacing: 0;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-lede {
  max-width: 58ch;
  margin: 18px 0 0;
  color: #f2fffb;
  font-size: 1.08rem;
  font-weight: 750;
}

.hero-facts span {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-actions a {
  text-decoration: none;
}

.hero-secondary-action {
  background: rgba(255, 255, 255, 0.88);
  color: var(--sea-deep);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.84rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.reserve-panel {
  align-self: center;
  width: min(100%, 520px);
  margin: 32px clamp(18px, 4vw, 54px);
  padding: clamp(20px, 3vw, 32px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-heading {
  margin-bottom: 18px;
}

.panel-intro,
.section-note {
  max-width: 62ch;
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.booking-form,
.guest-fields,
.manual-block-form,
.agreement-fields {
  display: grid;
  gap: 14px;
}

.promo-code-details {
  color: var(--sea-deep);
  font-size: 0.84rem;
  font-weight: 850;
}

.promo-code-details summary {
  width: fit-content;
  cursor: pointer;
}

.promo-code-details label {
  margin-top: 10px;
}

.booking-checkout-stage {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.booking-checkout-stage[hidden] {
  display: none;
}

.booking-step-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.booking-step-heading > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: var(--sea-deep);
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-step-heading div {
  display: grid;
  gap: 3px;
}

.booking-step-heading strong {
  color: var(--sea-deep);
  font-size: 1rem;
}

.booking-step-heading small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field-row.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 10px 12px;
  font-weight: 650;
  outline: none;
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  padding: 0;
}

.checkbox-field {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.35;
}

.screening-fields {
  display: grid;
  gap: 12px;
  margin: 2px 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7fbfa;
}

.screening-fields legend {
  padding: 0 6px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.screening-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.screening-question small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.4;
}

.identity-verification-field[hidden] {
  display: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.quote-box {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint);
}

.quote-empty,
.form-status {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.quote-line,
.quote-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.quote-total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(19, 78, 74, 0.18);
  font-size: 1.12rem;
  font-weight: 900;
}

.quote-alert {
  color: #a83f2d;
  font-weight: 800;
}

.quote-rate-details {
  padding: 6px 0;
  border-top: 1px solid rgba(19, 78, 74, 0.12);
  border-bottom: 1px solid rgba(19, 78, 74, 0.12);
}

.quote-rate-details summary {
  cursor: pointer;
  color: var(--sea-deep);
  font-size: 0.84rem;
  font-weight: 850;
}

.quote-rate-details > div {
  display: grid;
  gap: 6px;
  padding-top: 8px;
}

.quote-rate-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.quote-discount {
  color: var(--sea-deep);
  font-weight: 900;
}

.primary-action,
.secondary-action,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
}

.primary-action {
  background: var(--sea);
  color: white;
  padding: 10px 16px;
}

.primary-action:hover {
  background: var(--sea-deep);
}

.primary-action.small {
  min-height: 40px;
}

.secondary-action {
  background: var(--rose);
  color: #873924;
  padding: 10px 14px;
}

.secondary-action:hover {
  background: #f5d2c7;
}

.danger-action {
  background: #f8d8d2;
  color: #8f2d1f;
}

.danger-action:hover {
  background: #f2c3ba;
}

.icon-button {
  width: 44px;
  background: var(--mint);
  color: var(--sea-deep);
  font-size: 1.6rem;
}

button:disabled,
.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.availability-band,
.details-layout,
.gallery-section,
.local-access-section,
.visit-planner-section,
.admin-section {
  padding: clamp(34px, 6vw, 76px) clamp(18px, 4vw, 54px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 22px;
  max-width: 1180px;
}

.month-actions {
  display: flex;
  gap: 10px;
}

.months-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.month-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.month-title {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weekday,
.day-cell {
  display: grid;
  place-items: center;
  min-width: 0;
}

.weekday {
  height: 34px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.day-cell {
  aspect-ratio: 1;
  min-height: 42px;
  border-top: 1px solid #edf0ed;
  border-left: 1px solid #edf0ed;
  background: white;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.day-cell:nth-child(7n + 1) {
  border-left: 0;
}

.day-cell.muted {
  color: #bac3bf;
  cursor: default;
}

.day-cell.outside-window {
  background: #f4f6f4;
  color: #a8b3ae;
}

.day-cell.blocked {
  color: #7b3a2d;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(216, 95, 68, 0.16),
      rgba(216, 95, 68, 0.16) 6px,
      rgba(255, 255, 255, 0.9) 6px,
      rgba(255, 255, 255, 0.9) 12px
    );
}

.day-cell.selected,
.day-cell.in-range {
  background: var(--sea);
  color: white;
}

.day-cell.today {
  outline: 2px solid var(--gold);
  outline-offset: -3px;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--sea);
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--sea-deep);
  color: white;
}

.details-copy,
.details-list {
  max-width: 1180px;
}

.details-copy p {
  max-width: 58ch;
  color: #dbe8e3;
  font-size: 1.06rem;
}

.stay-description {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.stay-description p {
  margin: 0;
}

.stay-description .stay-notice {
  padding: 12px 14px;
  border: 1px solid rgba(255, 216, 200, 0.42);
  border-radius: 8px;
  background: rgba(216, 95, 68, 0.16);
  color: #ffe5db;
  font-weight: 800;
}

.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.details-list article,
.details-list details {
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.details-list .policy-card {
  grid-column: 1 / -1;
  min-height: 0;
}

.policy-details summary {
  cursor: pointer;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.policy-details[open] summary {
  margin-bottom: 14px;
}

.details-list p {
  margin: 0;
  color: #dbe8e3;
}

.details-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #dbe8e3;
}

.details-list li {
  line-height: 1.45;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 240px;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mint);
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(19, 78, 74, 0.78);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
}

.local-access-section {
  background: var(--shell);
}

.local-access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.local-access-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.local-access-grid h3 {
  margin-bottom: 12px;
  color: var(--sea-deep);
}

.local-access-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.landing-hero {
  position: relative;
  height: calc(92vh - 72px);
  min-height: 620px;
  max-height: 760px;
  overflow: hidden;
  background: var(--sea-deep);
}

.landing-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 78, 74, 0.82), rgba(19, 78, 74, 0.34) 62%, rgba(19, 78, 74, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 48%);
}

.landing-hero-copy {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 6vw, 76px);
  bottom: clamp(34px, 7vw, 92px);
  width: min(820px, calc(100% - 48px));
  color: white;
}

.landing-hero-copy .eyebrow {
  color: #ffd8c8;
}

.landing-hero-copy p {
  max-width: 62ch;
  color: #f2fffb;
  font-size: 1.08rem;
  font-weight: 750;
}

.landing-section {
  display: grid;
  gap: 28px;
  padding: clamp(34px, 6vw, 76px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.landing-copy {
  max-width: 1180px;
  margin: 0 auto;
}

.landing-copy p {
  max-width: 70ch;
  color: var(--muted);
  font-weight: 700;
}

.landing-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(30px, 5vw, 56px) clamp(18px, 4vw, 54px);
  background: var(--sea-deep);
  color: white;
}

.landing-cta-section > div {
  max-width: 760px;
}

.landing-cta-section p {
  color: #dbe8e3;
  font-weight: 700;
}

.visit-planner-section {
  background: #eef7f4;
}

.visit-planner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "copy"
    "nearby"
    "markets"
    "links";
  gap: clamp(22px, 4vw, 48px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.visit-copy {
  grid-area: copy;
  max-width: 920px;
}

.visit-copy h2 {
  max-width: 22ch;
}

.visit-copy p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1rem;
}

.distance-note {
  font-size: 0.9rem;
  font-weight: 800;
}

.visit-highlights {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(19, 78, 74, 0.18);
}

.visit-highlights li {
  display: grid;
  grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(19, 78, 74, 0.18);
}

.visit-highlights strong {
  color: var(--sea-deep);
  font-size: 0.92rem;
}

.visit-highlights span {
  color: var(--muted);
  font-weight: 650;
}

.nearby-grid {
  grid-area: nearby;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.nearby-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 24px rgba(37, 48, 47, 0.08);
}

.nearby-card figure {
  position: relative;
  height: 190px;
  margin: 0;
  background: var(--mint);
}

.nearby-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nearby-card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.distance-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--sea-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.nearby-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.nearby-card a {
  color: var(--sea-deep);
  font-weight: 900;
}

.nearby-card small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.market-columns {
  grid-area: markets;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.market-columns article {
  min-height: 182px;
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 24px rgba(37, 48, 47, 0.08);
}

.market-columns h3 {
  display: inline-flex;
  padding-top: 10px;
  border-top: 3px solid var(--coral);
}

.market-columns p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.related-stay-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.visit-planner .related-stay-links {
  grid-area: links;
}

.related-stay-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--sea-deep);
  padding: 8px 12px;
  font-weight: 900;
  text-decoration: none;
}

.related-stay-links a:hover {
  border-color: var(--sea);
  background: var(--mint);
}

.trip-planner-details {
  grid-column: 1 / -1;
  width: 100%;
}

.trip-planner-details > summary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  cursor: pointer;
  border: 1px solid var(--sea);
  border-radius: 10px;
  background: white;
  color: var(--sea-deep);
  padding: 10px 16px;
  font-weight: 900;
}

.trip-planner-details > summary:hover {
  background: var(--mint);
}

.trip-planner-expanded {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  margin-top: 22px;
}

.trip-planner-expanded > .nearby-grid,
.trip-planner-expanded > .market-columns,
.trip-planner-expanded > .related-stay-links {
  grid-area: auto;
  width: 100%;
  min-width: 0;
}

.trip-planner-expanded > .nearby-grid,
.trip-planner-expanded > .market-columns {
  align-items: stretch;
}

.trip-planner-expanded .nearby-card {
  min-width: 0;
}

.landing-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 44px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.landing-fact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-fact-list li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.landing-fact-list strong {
  color: var(--sea-deep);
}

.landing-fact-list span {
  color: var(--muted);
  font-weight: 700;
}

.reviews-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(30px, 5vw, 56px) clamp(18px, 4vw, 54px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.reviews-section[hidden] {
  display: none;
}

.reviews-section > div {
  max-width: 760px;
}

.reviews-section p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-section,
.review-submission-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(36px, 6vw, 70px) clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #eef7f3 0%, #fffaf0 100%);
}

.review-submission-section {
  background: linear-gradient(135deg, #fffaf0 0%, #eef7f3 100%);
}

.contact-copy,
.review-submission-copy {
  max-width: 560px;
}

.contact-copy h2,
.review-submission-copy h2,
.google-reviews-cta h3 {
  margin: 6px 0 10px;
  color: var(--sea-deep);
}

.contact-copy p,
.review-submission-copy p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.contact-response-note {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 46px rgba(23, 46, 38, 0.1);
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.optional-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.contact-website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.contact-submit-row .form-status {
  flex: 1 1 240px;
  margin: 0;
}

.guest-reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: start;
}

.guest-reviews-content {
  max-width: none !important;
}

.guest-review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.guest-review-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.guest-review-card strong {
  color: var(--sea-deep);
}

.guest-review-card p {
  line-height: 1.55;
}

.guest-review-stars {
  margin-top: 5px;
  color: #a56f13;
  letter-spacing: 0.08em;
}

.guest-review-source {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.google-reviews-cta {
  max-width: none !important;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.google-reviews-cta .primary-action {
  display: inline-flex;
  margin-top: 16px;
  text-decoration: none;
}

@media (max-width: 860px) {
  .contact-section,
  .review-submission-section,
  .guest-reviews-section {
    grid-template-columns: 1fr;
  }

  .guest-review-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .contact-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit-row button {
    width: 100%;
  }
}

.focused-page {
  background: var(--shell);
}

.focused-main {
  min-height: calc(100vh - 72px);
}

.focused-hero {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 70px);
  background: var(--sea-deep);
  color: white;
}

.focused-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 7vw, 4.8rem);
}

.focused-hero > p:last-child {
  max-width: 60ch;
  margin: 20px 0 0;
  color: #dbe8e3;
  font-size: 1.06rem;
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  margin-bottom: 42px;
  color: #dbe8e3;
  font-weight: 850;
  text-decoration: none;
}

.back-link:hover {
  color: white;
  text-decoration: underline;
}

.focused-form-section {
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer {
  padding: 32px clamp(18px, 5vw, 70px);
  background: #183b38;
  color: white;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer p {
  max-width: 48ch;
  margin: 6px 0 0;
  color: #dbe8e3;
  font-weight: 650;
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-links a {
  color: #eef7f4;
}

.footer-links a:hover {
  color: white;
}

.footer-links .owner-link {
  opacity: 0.72;
}

.mobile-booking-cta {
  display: none;
}

.admin-section {
  background: var(--shell);
}

.admin-page {
  min-height: calc(100vh - 72px);
  background: var(--shell);
}

.admin-panel {
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.admin-panel > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.admin-panel > summary::-webkit-details-marker {
  display: none;
}

.admin-panel > .form-status {
  padding: 0 20px 16px;
}

.admin-panel[open] .summary-chevron {
  transform: rotate(180deg);
}

.summary-chevron {
  transition: transform 0.2s ease;
  font-size: 1.4rem;
}

.admin-toolbar,
.admin-grid,
.bookings-block {
  border-top: 1px solid var(--line);
}

.admin-panel.is-locked #saveSources,
.admin-panel.is-locked #syncSources,
.admin-panel.is-locked #logoutAdmin,
.admin-panel.is-locked .admin-grid,
.admin-panel.is-locked .bookings-block {
  display: none;
}

.admin-panel:not(.is-locked) .admin-login-field,
.admin-panel:not(.is-locked) #loginAdmin {
  display: none;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) auto auto auto auto;
  gap: 12px;
  padding: 18px 20px;
  align-items: end;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  padding: 20px;
}

.admin-block {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.export-feed-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.bookings-block {
  padding: 20px;
}

.dashboard-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 16px;
  align-items: end;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.metric-tile {
  display: grid;
  gap: 2px;
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.metric-tile span,
.booking-facts span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-tile strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.metric-tile small {
  color: var(--muted);
  font-weight: 750;
}

.booking-search-field {
  min-width: 0;
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segmented-control button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  padding: 8px 11px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 850;
}

.segmented-control button.is-active {
  border-color: var(--sea);
  background: var(--sea);
  color: white;
}

.manual-reservation-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.manual-reservation-panel > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.manual-reservation-panel > summary::-webkit-details-marker {
  display: none;
}

.manual-reservation-panel[open] > summary {
  border-bottom: 1px solid var(--line);
}

.manual-reservation-panel[open] .summary-chevron {
  transform: rotate(180deg);
}

.manual-reservation-form {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.manual-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.social-post-form {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.social-scheduler-block {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.social-status {
  min-height: 22px;
  padding: 0 2px;
}

.platform-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.manual-reservation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.social-post-row {
  align-items: start;
}

.social-post-caption {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.social-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.owner-blocks-panel {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.owner-blocks-panel h4 {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
}

.sources-list,
.bookings-list {
  display: grid;
  gap: 12px;
}

.source-row {
  display: grid;
  grid-template-columns: 34px 1fr 1.5fr 84px;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.source-row input[type="checkbox"] {
  width: 22px;
  min-height: 22px;
  align-self: center;
}

.source-row input[type="color"] {
  min-height: 44px;
  padding: 4px;
}

.source-status {
  grid-column: 2 / -1;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.owner-block-row.is-editing {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.booking-dashboard-row {
  align-items: start;
  background: white;
}

.booking-row-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.booking-row-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.booking-row-title .status-pill {
  margin-left: 0;
}

.booking-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
}

.booking-facts div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.booking-facts strong {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.booking-note {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid var(--sea);
  background: var(--mint);
  color: var(--sea-deep);
  font-weight: 750;
}

.booking-notification-dialog {
  width: min(760px, calc(100vw - 28px));
  border: none;
  padding: 0;
  background: transparent;
}

.booking-notification-dialog::backdrop {
  background: rgba(19, 78, 74, 0.58);
  backdrop-filter: blur(8px);
}

.booking-notification-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, #fffdfa 0%, #f3efe4 100%);
  box-shadow: var(--shadow);
}

.booking-notification-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.booking-notification-field {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--ink);
}

.booking-notification-field input,
.booking-notification-field textarea {
  width: 100%;
  background: white;
}

.booking-notification-field textarea {
  min-height: 320px;
  resize: vertical;
}

.booking-notification-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.owner-block-row {
  background: #fbf6ed;
}

.booking-meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

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

.booking-actions button {
  min-height: 36px;
  padding: 8px 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--sea-deep);
  font-size: 0.76rem;
  font-weight: 900;
}

.lifecycle-current {
  background: var(--sea);
  color: white;
}

.lifecycle-future {
  background: var(--mint);
  color: var(--sea-deep);
}

.lifecycle-past {
  background: #edf0ed;
  color: var(--muted);
}

.lifecycle-cancelled {
  background: var(--rose);
  color: #873924;
}

.form-status {
  margin: 0;
}

.is-error {
  color: #a83f2d;
}

.is-success {
  color: var(--sea-deep);
}

@media (max-width: 1020px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .media-panel,
  .media-panel img {
    min-height: 540px;
  }

  h1 {
    font-size: 3.6rem;
  }

  .reserve-panel {
    width: auto;
    margin-top: -74px;
    position: relative;
    z-index: 4;
  }

  .months-grid,
  .details-layout,
  .local-access-grid,
  .visit-planner,
  .admin-grid,
  .dashboard-heading,
  .manual-reservation-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visit-planner {
    grid-template-areas:
      "copy"
      "nearby"
      "markets"
      "links";
  }

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

  .landing-cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .booking-page {
    padding-bottom: 72px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    padding: 10px 16px;
  }

  .brand {
    max-width: 100%;
    white-space: normal;
  }

  .brand span {
    line-height: 1.15;
  }

  .nav-links {
    justify-content: flex-start;
    width: 100%;
    gap: 8px 14px;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .nav-links .nav-book {
    order: -1;
  }

  .media-panel,
  .media-panel img {
    min-height: 560px;
  }

  .media-panel {
    display: grid;
    align-items: end;
    padding: 48px 16px 72px;
  }

  .media-panel img {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
  }

  .media-overlay {
    z-index: 1;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
  }

  .hero-copy .eyebrow {
    font-size: 0.7rem;
  }

  .hero-lede {
    max-width: 100%;
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-facts,
  .hero-actions,
  .trust-strip {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-facts span,
  .trust-strip li {
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 7px 9px;
    line-height: 1.2;
  }

  .trust-strip li {
    flex: 0 1 auto;
  }

  .trust-strip {
    display: none;
  }

  .hero-actions a,
  .reserve-panel .primary-action,
  .landing-cta-section .primary-action {
    width: 100%;
  }

  .landing-hero > img {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .landing-hero {
    display: grid;
    align-items: end;
    height: auto;
    min-height: 600px;
    max-height: none;
    padding: 160px 16px 28px;
  }

  .landing-hero-copy {
    position: relative;
    z-index: 1;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
  }

  .landing-hero-copy p,
  .panel-intro,
  .section-note {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.1rem, 12vw, 2.85rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.65rem, 9vw, 2rem);
  }

  .field-row,
  .field-row.compact,
  .details-list,
  .dashboard-metrics,
  .admin-toolbar,
  .export-feed-row,
  .visit-highlights li,
  .source-row,
  .booking-row,
  .booking-facts {
    grid-template-columns: 1fr;
  }

  .booking-step-heading {
    grid-template-columns: 1fr;
  }

  .booking-step-heading > span {
    width: fit-content;
  }

  .months-grid,
  .gallery-grid,
  .market-columns,
  .nearby-grid,
  .landing-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-grid figure:first-child {
    grid-row: span 1;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .reserve-panel {
    max-width: calc(100vw - 32px);
    margin: -42px 16px 24px;
    padding: 20px;
  }

  .reviews-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-booking-cta {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: var(--sea-deep);
    box-shadow: 0 14px 36px rgba(23, 46, 38, 0.32);
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-booking-cta.is-hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(calc(100% + 20px));
  }

  .mobile-booking-cta span {
    color: #dbe8e3;
    font-size: 0.78rem;
    font-weight: 750;
  }

  .mobile-booking-cta strong {
    font-size: 0.98rem;
  }

  .source-status {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mobile-booking-cta {
    transition: none;
  }
}
