:root {
  color-scheme: light;
  --ink: #1d2724;
  --muted: #66736d;
  --line: #d9e0dc;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --river: #355f6f;
  --forest: #315c44;
  --moss: #6f8d6a;
  --clay: #a56745;
  --gold: #c7954b;
  --danger: #b54335;
  --ok: #3c7650;
  --shadow: 0 18px 45px rgba(29, 39, 36, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

textarea { width: 100%; min-height: 84px; resize: vertical; }

.availability-check {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin: 0 0 18px;
}

.availability-check label { display: grid; gap: 6px; color: var(--muted); font-size: .9rem; }
.availability-check input { min-width: 0; }
.availability-check p { grid-column: 1 / -1; margin: -3px 0 0; }

@media (max-width: 640px) {
  .availability-check { grid-template-columns: 1fr; align-items: stretch; }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(53, 95, 111, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(29, 39, 36, 0.12);
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

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

nav a, .tab {
  border: 1px solid transparent;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

nav a:hover, .tab:hover, .tab.active {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.hero {
  position: relative;
  min-height: clamp(500px, 68vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(32px, 6vw, 82px);
  overflow: hidden;
  isolation: isolate;
  background: #17231f;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform-origin: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 29, 26, 0.02) 40%, rgba(18, 29, 26, 0.48));
  z-index: -1;
}

.hero-copy {
  max-width: 760px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}

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

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-tagline {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 750;
}

.hero p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero .hero-tagline {
  margin: 16px 0 0;
  line-height: 1.3;
  max-width: none;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.home-visuals {
  padding: 12px clamp(18px, 4vw, 56px) 0;
  background: #fff;
}

.home-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
}

.home-photo-card {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #edf2ef;
}

.home-photo-card img,
.home-photo-card video {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: #edf2ef;
}

.home-photo-card img {
  transform: scale(var(--crop-zoom, 1));
  transform-origin: var(--crop-x, 50%) var(--crop-y, 50%);
}

.homepage-photo-manager {
  display: grid;
  gap: 16px;
}

.homepage-photo-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.homepage-photo-selects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.homepage-photo-selects label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.homepage-photo-selects select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
  color: var(--ink);
}

.homepage-photo-message {
  min-height: 1.2em;
  margin: 0;
}

.data-backups,
.backup-list {
  display: grid;
  gap: 14px;
}

.backup-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.backup-card h4 {
  margin: 0 0 4px;
}

.backup-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.backup-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin: 14px 0 0;
}

.backup-stats div {
  padding: 10px;
  border-radius: 8px;
  background: #f4f7f5;
}

.backup-stats dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.backup-stats dd {
  margin: 4px 0 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.home-intro-section {
  padding-top: clamp(44px, 6vw, 78px);
}

.intro-actions {
  justify-content: flex-start;
  margin-top: 22px;
}

.hero-actions, .section-head, .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.button.primary {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.button.secondary {
  border-color: var(--river);
  color: var(--river);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.button:hover { transform: translateY(-1px); }

.section {
  padding: 64px clamp(16px, 4vw, 48px);
}

.section h2, .panel h3 {
  margin: 0;
}

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
}

.muted {
  color: var(--muted);
  line-height: 1.55;
}

.why-section {
  background:
    radial-gradient(circle at top left, rgba(211, 164, 83, 0.14), transparent 34%),
    linear-gradient(180deg, #fffaf2, #f6f4ec);
}

.story-head {
  align-items: flex-end;
}

.story-head h2 {
  max-width: 820px;
}

.story-head .muted {
  max-width: 520px;
}

.map-preview-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(199, 149, 75, 0.13), transparent 32%),
    linear-gradient(180deg, #fbfaf6, #f2f0e8);
}

.map-embed-card {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(53, 95, 111, 0.16);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.map-embed-card iframe {
  display: block;
  width: 100%;
  height: min(74vw, 760px);
  min-height: 420px;
  border: 0;
}

.map-full-link {
  margin-top: 18px;
}

@media (max-width: 700px) {
  .map-embed-card iframe {
    height: 620px;
    min-height: 0;
  }
}

.feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 205px;
  padding: 24px;
  border: 1px solid rgba(53, 95, 111, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(29, 39, 36, 0.06);
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--gold);
  font-weight: 850;
  font-size: 0.82rem;
}

.feature-card h3 {
  margin: 18px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.highlights-section {
  background: #fbfaf6;
}

.highlight-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(53, 95, 111, 0.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(29, 39, 36, 0.055);
}

.highlight-card span {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(211, 164, 83, 0.16);
  color: var(--forest);
  font-size: 1.2rem;
}

.highlight-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  line-height: 1.2;
  font-weight: 500;
}

.experience-section {
  background:
    linear-gradient(120deg, rgba(32, 53, 46, 0.94), rgba(53, 95, 111, 0.82)),
    url("/assets/rogue-river-aerial-hero.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.fishing-section {
  background:
    linear-gradient(120deg, rgba(32, 53, 46, 0.92), rgba(53, 95, 111, 0.78)),
    url("/assets/rogue-river-hero.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.experience-section .muted,
.fishing-section .muted {
  color: rgba(255, 255, 255, 0.82);
}

.experience-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.experience-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.experience-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest);
  font-size: 1.25rem;
}

.experience-card h3 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 500;
}

.property-grid, .wedding-packages {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wedding-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: start;
  background:
    linear-gradient(120deg, rgba(49, 92, 68, 0.92), rgba(53, 95, 111, 0.74)),
    url("/assets/rogue-river-hero.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.wedding-section .muted {
  color: rgba(255, 255, 255, 0.82);
}

.wedding-copy h2 {
  max-width: 760px;
}

.wedding-copy > .muted {
  max-width: 680px;
  font-size: 1.05rem;
}

.wedding-packages div {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.wedding-packages strong, .wedding-packages span {
  display: block;
}

.wedding-packages span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
}

.wedding-inquiry-link {
  margin-top: 22px;
}

.wedding-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.wedding-form h3 {
  margin: 0;
  font-size: 1.45rem;
}

.property-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(29, 39, 36, 0.06);
}

.property-art {
  min-height: 190px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent), #17231f 46%));
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  isolation: isolate;
}

.property-art-button {
  width: 100%;
  border: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.property-art-button:hover,
.property-art-button:focus-visible {
  transform: translateY(-1px);
}

.property-art-button small {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 800;
}

.property-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 29, 25, 0.08), rgba(16, 29, 25, 0.62));
  z-index: -1;
}

.property-art span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
}

.property-art h3 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.property-card h3 {
  margin: 0;
  font-size: 1.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.property-body {
  padding: 18px;
}

.property-description {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.included-stay {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(53, 95, 111, 0.14);
  border-radius: 8px;
  background: #fbfaf6;
}

.included-stay strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.included-stay ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-stay li {
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0;
}

.rate-row strong {
  font-size: 1.5rem;
}

.calendar-section {
  background: #f3f6f2;
  border-block: 1px solid var(--line);
}

.amenities-section,
.adventure-section {
  background: #fbfaf6;
}

.amenity-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.amenity-card {
  padding: 22px;
  border: 1px solid rgba(53, 95, 111, 0.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(29, 39, 36, 0.055);
}

.amenity-card h3,
.restaurant-grid h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.amenity-card p {
  margin: 0 0 14px;
}

.amenity-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.concierge-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.concierge-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(29, 39, 36, 0.055);
}

.concierge-list summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.guide-panel {
  margin-top: 16px;
  display: grid;
  gap: 18px;
}

.guide-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

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

.guide-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card {
  border: 1px solid rgba(53, 95, 111, 0.14);
  border-radius: 14px;
  padding: 18px;
  background: #fbfaf6;
  box-shadow: 0 10px 24px rgba(29, 39, 36, 0.045);
}

.guide-card h3 {
  margin: 6px 0 10px;
}

.guide-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.guide-card p:last-child {
  margin-bottom: 0;
}

.guide-kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-meta {
  font-size: 0.95rem;
}

.guide-meta a {
  color: var(--forest);
  font-weight: 700;
}

.guide-button {
  margin-top: 4px;
}

.compact-outfitter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.compact-outfitter-list span {
  border: 1px solid rgba(53, 95, 111, 0.14);
  border-radius: 999px;
  padding: 9px 12px;
  background: #fbfaf6;
  color: var(--forest);
  font-size: 0.94rem;
}

.guide-disclaimer {
  margin: 0;
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.restaurant-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.restaurant-card {
  display: flex;
  flex-direction: column;
}

.restaurant-card .guide-button {
  align-self: flex-start;
  margin-top: auto;
}

.restaurant-category {
  color: var(--accent);
  font-size: 0.94rem;
  font-weight: 700;
}

.featured-restaurant {
  grid-column: span 2;
  border-color: rgba(190, 151, 74, 0.42);
  background: linear-gradient(135deg, #fffaf0, #fbfaf6);
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.restaurant-grid article {
  border: 1px solid rgba(53, 95, 111, 0.14);
  border-radius: 12px;
  padding: 16px;
  background: #fbfaf6;
}

.calendar-shell {
  margin-top: 24px;
}

.calendar-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.calendar-toolbar .album-tabs {
  margin-top: 0;
}

.calendar-buttons {
  display: flex;
  gap: 8px;
}

.calendar-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 16px 0;
  color: var(--muted);
  font-weight: 750;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.calendar-legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
}

.calendar-legend .booked-dot {
  border-color: rgba(181, 67, 53, 0.3);
  background: #fde7e3;
}

.calendar-legend .pending-dot {
  border-color: rgba(199, 149, 75, 0.45);
  background: #fff1d7;
}

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

.calendar-month {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(29, 39, 36, 0.06);
}

.calendar-month h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

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

.calendar-weekdays {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-weekdays span {
  text-align: center;
}

.calendar-day {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: #fbfdfb;
  display: grid;
  align-content: start;
  gap: 5px;
}

.calendar-day strong {
  font-size: 0.95rem;
}

.calendar-day span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.calendar-day.booked {
  border-color: rgba(181, 67, 53, 0.28);
  background: #fde7e3;
}

.calendar-day.pending {
  border-color: rgba(199, 149, 75, 0.45);
  background: #fff1d7;
}

.calendar-day.muted-day {
  border-color: transparent;
  background: transparent;
}

.calendar-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.calendar-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfdfb;
}

.calendar-link-card strong,
.calendar-link-card code {
  display: block;
}

.calendar-link-card code {
  margin-top: 5px;
  color: var(--muted);
  white-space: normal;
  word-break: break-word;
}

.admin-shell {
  background: #eef3ef;
  border-block: 1px solid var(--line);
}

.admin-login {
  max-width: 440px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-login h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.admin-login .button {
  margin-top: 12px;
  width: 100%;
}

.login-message {
  min-height: 22px;
  margin: 0;
  color: var(--danger);
  font-weight: 750;
}

.admin-unlocked {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 0;
  border: 1px solid #bfd8c8;
  border-radius: 8px;
  padding: 14px;
  background: #e9f6ee;
  color: var(--forest);
}

.admin-unlocked strong,
.admin-unlocked span {
  display: block;
}

.admin-unlocked span {
  color: #456256;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.kpi small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.kpi strong {
  font-size: 1.65rem;
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.panel {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.panel.active { display: block; }

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

th, td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  background: #f4f7f4;
  color: #365045;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flag {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 0.78rem;
  font-weight: 800;
  background: #eef3ef;
  color: var(--forest);
}

.flag.danger {
  background: #fde7e3;
  color: var(--danger);
}

.flag.ok {
  background: #e2f2e7;
  color: var(--ok);
}

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

.pricing-manager {
  display: grid;
  gap: 12px;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) repeat(3, minmax(120px, 0.75fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfaf7;
}

.pricing-card > div {
  display: grid;
  gap: 4px;
  align-self: center;
}

.pricing-card .pricing-message {
  grid-column: 1 / -1;
  min-height: 1.2em;
  margin: 0;
}

.site-text-manager {
  display: grid;
  gap: 14px;
}

.site-text-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfaf7;
}

.site-text-card-title {
  display: grid;
  gap: 4px;
  grid-column: 1 / -1;
}

.site-text-card .button,
.site-text-card .site-text-message {
  grid-column: 1 / -1;
}

.site-text-card .site-text-message {
  min-height: 1.2em;
  margin: 0;
}

.calendar-sync-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.calendar-sync-intro p {
  flex: 1 1 320px;
  margin: 0;
}

.calendar-sync-grid {
  display: grid;
  gap: 16px;
  margin: 14px 0 26px;
}

.calendar-sync-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfaf7;
}

.calendar-sync-card h4 {
  margin: 0;
  font-size: 1.15rem;
}

.calendar-source-form {
  display: grid;
  grid-template-columns: minmax(120px, .4fr) minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.calendar-source-head {
  display: grid;
  gap: 8px;
  align-self: center;
}

.calendar-source-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  grid-column: 1 / -1;
}

.calendar-source-status {
  grid-column: 1 / -1;
  margin: 0;
}

label {
  display: grid;
  gap: 7px;
  color: #42514c;
  font-weight: 750;
}

input, select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  background: #fff;
  color: var(--ink);
}

.wide { grid-column: 1 / -1; }

.receipt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.activity-graphic {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  max-height: 320px;
}

.activity-graphic img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.activity-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(29, 39, 36, 0.06);
}

.activity-card h3 {
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.activity-card .flag {
  margin-bottom: 2px;
}

.availability-panel {
  padding: 22px;
  background: #fff;
}

.availability-admin-shell {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  min-height: calc(100vh - 260px);
}

.availability-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  border-right: 1px solid var(--line);
  padding-right: 18px;
}

.availability-side-head {
  display: grid;
  gap: 8px;
}

.availability-side-head strong {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.availability-side-head > div {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.availability-side-head .button {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
}

.availability-property-list {
  display: grid;
  gap: 12px;
}

.availability-property {
  display: grid;
  place-items: center;
  gap: 6px;
  width: 78px;
  min-height: 78px;
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 7px;
  background: #f4f4f2;
  color: var(--forest);
  text-align: center;
  cursor: pointer;
}

.availability-property.active {
  border-color: var(--unit-color);
  background: color-mix(in srgb, var(--unit-color) 14%, white);
}

.availability-property.blocking {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--unit-color) 22%, white);
}

.availability-property span:last-child {
  display: grid;
  gap: 2px;
}

.availability-property strong {
  overflow: hidden;
  max-width: 66px;
  font-size: 0.72rem;
  line-height: 1.12;
  text-overflow: ellipsis;
}

.availability-property small {
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.1;
}

.availability-swatch {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: var(--unit-color);
  box-shadow: 0 1px 4px rgba(20, 32, 28, 0.18);
}

.availability-main {
  min-width: 0;
  overflow: hidden;
}

.availability-hero-toolbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.availability-title-group {
  display: grid;
  gap: 4px;
}

.availability-month-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.availability-month-nav h2 {
  margin: 0;
  color: #202423;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 4.3rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.95;
  white-space: nowrap;
}

.availability-icon-button,
.availability-pill-button {
  border: 0;
  border-radius: 999px;
  background: #f0f0ee;
  color: #232725;
  cursor: pointer;
}

.availability-icon-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.availability-compact-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.availability-pill-button {
  min-height: 44px;
  padding: 0 18px;
  font-weight: 800;
}

.availability-block-target {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 999px;
  padding: 5px 6px 5px 16px;
  background: #f0f0ee;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.availability-block-target select {
  width: auto;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 4px 28px 4px 10px;
  background: #fff;
  font-weight: 850;
}

#availabilityCalendarMessage {
  min-height: 1.4em;
  margin: 0 0 14px;
}

.availability-month {
  min-width: 900px;
}

.availability-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-bottom: 1px solid #e1e1df;
  color: #6d716f;
  font-size: 1.05rem;
  font-weight: 600;
}

.availability-weekdays span {
  padding: 0 16px 16px;
  text-align: center;
}

.availability-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(118px, 13.5vh));
  position: relative;
  gap: 12px;
  padding-top: 14px;
  overflow: hidden;
}

.availability-day {
  border: 1px solid #dfdfdd;
  border-radius: 22px;
  padding: 18px;
  background: #f8f8f7;
  color: #666b69;
  text-align: left;
  cursor: pointer;
}

.availability-day:hover,
.availability-day:focus-visible {
  border-color: #bfc9c4;
  background: #fff;
}

.availability-day span {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 850;
}

.availability-day.muted-day {
  background: #fcfcfb;
  color: #a1a7a4;
}

.availability-day.today span {
  background: #d91450;
  color: #fff;
}

.availability-day.selected-range,
.availability-day.selected-boundary {
  background: color-mix(in srgb, var(--selected-block-color) 13%, #fff);
}

.availability-day.selected-boundary {
  border-color: var(--selected-block-color);
}

.availability-day.selected-boundary span {
  outline: 2px solid var(--selected-block-color);
  outline-offset: 2px;
}

.availability-bar {
  z-index: 2;
  align-self: start;
  height: 24px;
  margin: calc(58px + (var(--lane) * 28px)) 0 0;
  margin-left: 8px;
  margin-right: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  overflow: hidden;
  background: var(--unit-color);
  color: #fff;
  box-shadow: 0 5px 12px rgba(20, 32, 28, 0.18);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 24px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}

.availability-bar.starts-here {
  margin-left: calc(var(--half-cell) + 4px);
}

.availability-bar.ends-here {
  margin-right: calc(var(--half-cell) + 4px);
}

.availability-bar.tentative {
  border: 1px dashed rgba(255, 255, 255, 0.86);
  opacity: 0.76;
}

.availability-bar.continues-before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: 0;
}

.availability-bar.continues-after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: 0;
}

.availability-event-dialog {
  display: grid;
  gap: 16px;
}

.availability-event-dialog label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.availability-event-details {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.availability-event-details div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
}

.availability-event-details dt {
  color: var(--muted);
  font-weight: 800;
}

.availability-event-details dd {
  margin: 0;
}

.availability-block-target-card {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--unit-color) 28%, white);
  border-radius: 12px;
  padding: 14px;
  background: color-mix(in srgb, var(--unit-color) 10%, white);
}

.availability-block-target-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

@media (max-width: 1280px) {
  .availability-admin-shell { grid-template-columns: 126px minmax(0, 1fr); gap: 24px; }
  .availability-month-nav h2 { font-size: 3.5rem; }
  .availability-hero-toolbar { gap: 16px; }
  .availability-compact-actions { max-width: 360px; }
}

.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
}

.check-label input {
  width: auto;
  min-height: 0;
}

.receipt-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.photo-manager {
  display: grid;
  gap: 18px;
}

.photo-property {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfdfb;
}

.photo-property-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.photo-upload {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
}

.upload-choices {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.upload-choices label {
  min-width: 185px;
}

.upload-help {
  flex-basis: 100%;
  margin: 0;
}

.photo-upload input[type="file"] {
  max-width: 260px;
}

.upload-dropzone {
  min-width: 230px;
  padding: 13px 16px;
  border: 2px dashed #9aaba2;
  border-radius: 10px;
  color: var(--muted);
  background: #f7faf8;
  text-align: center;
  cursor: pointer;
}

.upload-dropzone:hover,
.upload-dropzone:focus-visible,
.upload-dropzone.dragging {
  border-color: var(--forest);
  background: #edf5ef;
  color: var(--forest);
  outline: none;
}

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

.photo-tile {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.photo-tile img,
.photo-tile video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #edf2ef;
}

#photoEditorDialog { width: min(620px, calc(100vw - 32px)); border: 0; border-radius: 14px; box-shadow: var(--shadow); }
#photoEditorDialog::backdrop { background: rgba(19, 30, 26, .58); }
.photo-editor-form { position: relative; display: grid; gap: 16px; }
.photo-editor-form h3, .photo-editor-form p { margin: 0; }
.photo-editor-preview { width: min(100%, 520px); aspect-ratio: 4 / 3; border-radius: 10px; background-color: #edf2ef; background-repeat: no-repeat; background-size: cover; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }

.photo-tools {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 8px;
}

.photo-tools .header-tool {
  grid-column: 1 / -1;
  background: #fff8e6;
  color: #6f4b00;
  font-weight: 800;
}

.header-photo-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 250, 240, .94);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.media-meta {
  display: grid;
  gap: 8px;
  padding: 0 8px 8px;
}

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

.media-meta input {
  width: 100%;
  min-height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 7px 9px;
  font: inherit;
  color: var(--ink);
}

.size-select {
  min-height: 34px;
  margin-top: 6px;
  width: 100%;
}

.tool-button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.replace-input {
  display: none;
}

.album-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.album-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}

.album-tab.active {
  border-color: var(--gold);
  color: var(--ink);
  background: #fffaf0;
}

.album-grid, .album-manager {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.album-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.album-placeholder {
  grid-column: span 2;
}

.album-card img,
.album-card video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #edf2ef;
}

.album-card img {
  transform: scale(var(--crop-zoom, 1));
  transform-origin: var(--crop-x, 50%) var(--crop-y, 50%);
}

.album-card p {
  margin: 0;
  padding: 10px;
  position: relative;
  background: #fff;
  color: var(--muted);
  line-height: 1.35;
}

.album-grid .album-size-wide,
.album-manager .album-size-wide,
.photo-grid .album-size-wide {
  grid-column: span 2;
}

.album-grid .album-size-tall img,
.album-grid .album-size-tall video,
.album-manager .album-size-tall img,
.album-manager .album-size-tall video,
.photo-grid .album-size-tall img,
.photo-grid .album-size-tall video {
  aspect-ratio: 3 / 4;
}

.album-grid .album-size-feature,
.album-manager .album-size-feature,
.photo-grid .album-size-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.album-grid .album-size-feature img,
.album-grid .album-size-feature video,
.album-manager .album-size-feature img,
.album-manager .album-size-feature video,
.photo-grid .album-size-feature img,
.photo-grid .album-size-feature video {
  aspect-ratio: 4 / 3;
  height: 100%;
}

.album-manager .album-size-feature img,
.album-manager .album-size-feature video,
.photo-grid .album-size-feature img,
.photo-grid .album-size-feature video {
  height: auto;
}

.album-upload {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

#albumDialog {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #0b0f0d;
  color: #fff;
  overflow: hidden;
}

#albumDialog::backdrop {
  background: #0b0f0d;
}

#albumDialog .icon-button {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
}

.album-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #111a17;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.album-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.album-prev {
  left: 14px;
}

.album-next {
  right: 14px;
}

#albumDialogMedia {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 64px);
  background: #0b0f0d;
}

#albumDialog img,
#albumDialog video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: #0b0f0d;
}

#albumDialog p {
  margin: 0;
  padding: 14px 18px 18px;
  min-height: 64px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.receipt-card h3 {
  margin: 0 0 8px;
}

.receipt-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

dialog {
  width: min(680px, calc(100vw - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(20, 32, 28, 0.55);
}

dialog form {
  padding: 24px;
}

.icon-button {
  float: right;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.quote-box {
  margin: 16px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf8;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .property-grid, .feature-grid, .highlight-grid, .experience-grid, .amenity-grid, .restaurant-grid, .restaurant-resource-grid, .guide-grid, .guide-grid.three, .kpi-grid, .receipt-grid, .wedding-packages, .activity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-restaurant { grid-column: span 2; }
  .album-grid, .album-manager { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .homepage-photo-preview, .homepage-photo-selects { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .calendar-grid { grid-template-columns: 1fr; }
  .wedding-section { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-card { grid-template-columns: 1fr 1fr; }
  .pricing-card > div, .pricing-card .button { grid-column: 1 / -1; }
  .site-text-card { grid-template-columns: 1fr; }
  .calendar-source-form { grid-template-columns: 1fr; }
  .backup-head { flex-direction: column; }
  .availability-admin-shell { grid-template-columns: 1fr; }
  .availability-sidebar { position: static; }
  .availability-property-list { display: flex; overflow-x: auto; padding-bottom: 4px; }
  .availability-main { overflow-x: auto; padding-bottom: 4px; }
  .availability-month-nav h2 { font-size: 3.8rem; }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-block: 12px;
  }
  nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent 100%);
  }
  nav::-webkit-scrollbar { display: none; }
  nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
  }
  .hero { min-height: 460px; align-items: flex-end; padding: 28px 18px; }
  .hero::after { background: linear-gradient(180deg, rgba(18, 29, 26, 0.02) 36%, rgba(18, 29, 26, 0.5)); }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .home-visuals { padding-inline: 14px; }
  .home-photo-grid { gap: 10px; }
  .homepage-photo-preview, .homepage-photo-selects { grid-template-columns: 1fr; }
  .property-grid, .feature-grid, .highlight-grid, .experience-grid, .amenity-grid, .restaurant-grid, .restaurant-resource-grid, .guide-grid, .guide-grid.three, .kpi-grid, .receipt-grid, .form-grid, .wedding-packages, .activity-grid { grid-template-columns: 1fr; }
  .featured-restaurant { grid-column: auto; }
  .pricing-card { grid-template-columns: 1fr; }
  .site-text-card { grid-template-columns: 1fr; }
  .album-grid, .album-manager { grid-template-columns: 1fr; }
  .calendar-day { min-height: 58px; padding: 6px; }
  .calendar-day span { font-size: 0.65rem; }
  .calendar-link-card { align-items: stretch; flex-direction: column; }
  .availability-hero-toolbar { align-items: stretch; flex-direction: column; }
  .availability-compact-actions { justify-content: flex-start; }
  .availability-month-nav h2 { font-size: 3rem; }
  .availability-month { min-width: 700px; }
  .availability-days { grid-template-rows: repeat(6, 106px); }
  .availability-event-details div { grid-template-columns: 1fr; gap: 2px; }
  .album-grid .album-size-wide,
  .album-grid .album-size-feature,
  .album-manager .album-size-wide,
  .album-manager .album-size-feature,
  .photo-grid .album-size-wide,
  .photo-grid .album-size-feature {
    grid-column: span 1;
  }
  .photo-grid { grid-template-columns: 1fr; }
  .section { padding-block: 42px; }
  table { min-width: 920px; }
}

@media print {
  body * { visibility: hidden; }
  .print-target, .print-target * { visibility: visible; }
  .print-target { position: absolute; inset: 20px; box-shadow: none; border: 0; }
}
/* Search-friendly accommodation pages and shared footer */
.site-footer {
  background: #24372e;
  color: #f4efe4;
  display: grid;
  gap: 1rem;
  padding: 2.5rem max(1.25rem, calc((100vw - 1180px) / 2));
}
.site-footer p { margin: .35rem 0 0; color: rgba(255,255,255,.78); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; }
.site-footer a { color: #fff; }
.site-footer small { color: rgba(255,255,255,.65); }
.stay-page { max-width: 1180px; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; color: #5c6b63; }
.breadcrumbs a { color: inherit; }
.stay-hero { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 2rem; align-items: center; }
.stay-hero > img { width: 100%; max-height: 620px; object-fit: cover; border-radius: 1rem; }
.stay-hero h1 { margin: .3rem 0 .8rem; }
.stay-summary { margin-bottom: 1.5rem; color: #5c6b63; }
.stay-description { max-width: 850px; }
.stay-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.stay-gallery img { width: 100%; height: 360px; object-fit: cover; border-radius: .75rem; }
.related-stays { display: flex; flex-wrap: wrap; gap: .75rem; }
.related-stays a { border: 1px solid rgba(36,55,46,.25); border-radius: 999px; padding: .7rem 1rem; color: #24372e; }
.not-found-page { max-width: 760px; min-height: 55vh; margin: 0 auto; padding: 6rem 1.25rem; text-align: center; }
.not-found-page h1 { margin-top: .25rem; }
@media (max-width: 760px) {
  .stay-hero { grid-template-columns: 1fr; }
  .stay-gallery { grid-template-columns: 1fr; }
  .stay-gallery img { height: auto; max-height: 520px; }
}
