:root {
  --ink: #18211f;
  --muted: #5f6a65;
  --paper: #faf8f3;
  --surface: #ffffff;
  --sage: #59756b;
  --sage-dark: #2f5148;
  --clay: #b86f45;
  --sky: #d6e5e3;
  --line: rgba(24, 33, 31, 0.14);
  --shadow: 0 24px 70px rgba(24, 33, 31, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px rgba(24, 33, 31, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--sage-dark);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.main-nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.95rem;
  font-weight: 650;
}

.main-nav a {
  color: rgba(24, 33, 31, 0.82);
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--sage-dark);
}

.hero {
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 1fr);
  min-height: 92vh;
  overflow: hidden;
  padding: 112px clamp(18px, 4vw, 56px) 44px;
  align-items: center;
  position: relative;
}

.hero-image,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 28, 24, 0.46), rgba(17, 28, 24, 0.18) 50%, rgba(17, 28, 24, 0.46)),
    linear-gradient(0deg, rgba(17, 28, 24, 0.58), transparent 42%);
}

.hero-content {
  color: #fff;
  justify-self: start;
  max-width: 860px;
  padding-bottom: 0;
  position: relative;
  text-align: left;
  z-index: 1;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c69f;
}

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

h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: 0;
  line-height: 1.03;
  margin-bottom: 18px;
}

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

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 610px;
  white-space: pre-line;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-decoration: none;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease;
}

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

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

.button.primary:hover {
  background: #9f5f3b;
}

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

.button.ghost-dark,
.nav-button {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.small-button {
  margin-top: 14px;
  min-height: 40px;
}

.quick-request,
.booking-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 22px;
  position: relative;
  width: min(100%, 520px);
  z-index: 2;
}

.quick-request {
  justify-self: end;
}

.form-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

input,
select,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(89, 117, 107, 0.18);
  outline: none;
}

.estimate,
.form-status {
  font-size: 0.92rem;
  margin: 12px 0;
}

.estimate {
  color: var(--sage-dark);
  font-weight: 800;
}

.package-options {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 12px 0;
  padding: 12px;
}

.package-options:empty {
  display: none;
}

.package-options > p {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  margin: 0 0 10px;
}

.package-option-list {
  display: grid;
  gap: 8px;
}

.package-option {
  align-items: center;
  background: #f8f7f2;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 10px;
}

.package-option input {
  min-height: auto;
  width: auto;
}

.package-option strong,
.package-option small,
.package-option em {
  display: block;
}

.package-option small {
  color: var(--muted);
  font-weight: 650;
}

.package-option em {
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 900;
}

.package-options--compact {
  padding: 10px;
}

.form-status {
  color: var(--muted);
  min-height: 22px;
}

.editor-help,
.external-calendar-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 14px;
}

.external-calendar-meta {
  font-weight: 750;
}

.section-inner {
  margin: 0 auto;
  max-width: 1160px;
  padding: 84px clamp(18px, 4vw, 56px);
}

.split,
.pricing-layout,
.booking-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.booking-layout {
  align-items: end;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.intro-band {
  background: #fff;
}

.intro-band p,
.pricing-band p,
.location p,
.booking-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

[data-content-text="intro.copy"],
[data-content-text="pricing.copy"],
[data-content-text="location.copy"],
[data-content-text="booking.copy"],
.amenity-grid p,
.faq-list p,
.gallery-grid figcaption,
.gallery-lightbox figcaption,
.package-option small,
.legal-grid p {
  white-space: pre-line;
}

.facts {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  margin: 0;
}

.facts div,
.amenity-grid article,
.price-list,
.map-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facts div {
  min-width: 0;
  padding: 22px;
}

.facts dt {
  color: var(--sage-dark);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.facts dd {
  color: var(--muted);
  margin: 0;
  overflow-wrap: anywhere;
}

.section-heading {
  max-width: 720px;
}

.amenity-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  margin-top: 32px;
}

.amenity-grid article {
  height: 190px;
  min-width: 0;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: height 180ms ease, box-shadow 180ms ease;
}

.amenity-grid article.has-overflow {
  cursor: pointer;
}

.amenity-grid article.has-overflow::after {
  align-items: center;
  background: var(--sage-dark);
  border-radius: 999px;
  bottom: 14px;
  color: #fff;
  content: "+";
  display: inline-flex;
  font-size: 1rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: 14px;
  width: 28px;
}

.amenity-grid article.is-expanded {
  box-shadow: 0 16px 34px rgba(24, 33, 31, 0.12);
  height: auto;
  min-height: 190px;
}

.amenity-grid article.is-expanded::after {
  content: "-";
}

.amenity-toggle {
  align-items: flex-start;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font: inherit;
  font-weight: 900;
  gap: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.amenity-toggle:disabled {
  cursor: default;
}

.amenity-toggle span:last-child {
  display: block;
  font-size: 1.12rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.amenity-toggle:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 4px;
}

.amenity-grid p {
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.58;
  margin-bottom: 0;
  overflow: hidden;
  overflow-wrap: anywhere;
  padding-right: 32px;
  text-overflow: ellipsis;
  word-break: normal;
}

.amenity-grid article.is-expanded p {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.icon {
  align-items: center;
  background: var(--sky);
  border-radius: 50%;
  color: var(--sage-dark);
  display: inline-flex;
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.pricing-band {
  background: #e8eee7;
}

.gallery-section {
  background: #fff;
}

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

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.gallery-filter button {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  padding: 9px 14px;
}

.gallery-filter button.is-active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}

.creator-gallery-filter {
  margin: 16px 0;
}

.compact-repeat {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  margin-bottom: 12px;
}

.item-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-grid figure {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.gallery-open {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  display: block;
  padding: 0;
  width: 100%;
}

.gallery-open:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: -3px;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
  width: 100%;
}

.gallery-open:hover img {
  transform: scale(1.025);
}

.gallery-category {
  color: var(--sage-dark);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  padding: 12px 14px 0;
  text-transform: uppercase;
}

.gallery-grid figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  padding: 12px 14px;
}

.gallery-lightbox {
  align-items: center;
  background: rgba(24, 33, 31, 0.86);
  display: grid;
  inset: 0;
  justify-items: center;
  padding: clamp(18px, 4vw, 48px);
  position: fixed;
  z-index: 80;
}

.gallery-lightbox figure {
  margin: 0;
  max-width: min(1120px, 100%);
  width: 100%;
}

.gallery-lightbox img {
  background: #fff;
  border-radius: 8px;
  display: block;
  max-height: 82vh;
  object-fit: contain;
  width: 100%;
}

.gallery-lightbox figcaption {
  color: #fff;
  font-weight: 850;
  margin-top: 12px;
  text-align: center;
}

.gallery-lightbox-close {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 2rem;
  height: 46px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: clamp(18px, 4vw, 44px);
  top: clamp(18px, 4vw, 36px);
  width: 46px;
}

.lightbox-open {
  overflow: hidden;
}

.price-list {
  padding: 8px 24px;
}

.price-list div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 70px;
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list span {
  color: var(--muted);
}

.price-list strong {
  font-size: 1.18rem;
}

.season-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 10px 0 18px;
  padding: 0;
}

.season-list li {
  background: #f8f7f2;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 2px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px;
}

.season-list span,
.season-list strong {
  font-weight: 900;
}

.season-list small {
  color: var(--muted);
  grid-column: 1 / -1;
}

.location {
  background: #fff;
}

.map-panel {
  aspect-ratio: 1.25;
  background: #edf2ef;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.map-panel iframe,
.location-image {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.location-image {
  display: block;
  object-fit: cover;
}

.map-water {
  background: #aaccc7;
  border-radius: 42% 58% 62% 38%;
  height: 78%;
  left: -18%;
  position: absolute;
  top: -16%;
  width: 78%;
}

.map-road {
  background: var(--clay);
  height: 14px;
  left: 10%;
  opacity: 0.82;
  position: absolute;
  top: 65%;
  transform: rotate(-18deg);
  width: 100%;
}

.map-pin {
  background: var(--sage-dark);
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 16px 32px rgba(24, 33, 31, 0.24);
  height: 42px;
  left: 58%;
  position: absolute;
  top: 42%;
  transform: rotate(-45deg);
  width: 42px;
}

.map-panel span {
  bottom: 24px;
  font-weight: 900;
  left: 24px;
  position: absolute;
}

.booking-section {
  background: var(--paper);
}

.availability-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 33, 31, 0.07);
  margin-top: 24px;
  max-width: 520px;
  padding: 16px;
}

.availability-card--compact {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  margin: 10px 0 14px;
  max-width: none;
  padding: 12px;
}

.availability-heading {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.availability-heading h3 {
  margin-bottom: 0;
}

.availability-card--compact .availability-heading {
  gap: 8px;
  margin-bottom: 10px;
}

.availability-card--compact .availability-heading h3 {
  font-size: 0.95rem;
}

.availability-filters {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.availability-filters label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.availability-card--compact .availability-filters {
  gap: 8px;
  margin-bottom: 10px;
}

.availability-card--compact .availability-filters label {
  font-size: 0.72rem;
}

.availability-card--compact .availability-filters select {
  min-height: 38px;
  padding: 7px 9px;
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.availability-legend span {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 6px;
}

.availability-card--compact .availability-legend span {
  font-size: 0.74rem;
}

.legend-dot.is-free {
  background: #f8f7f2;
}

.legend-dot.is-selected {
  background: var(--sage);
  border-color: var(--sage-dark);
}

.availability-calendar {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(7, minmax(32px, 1fr));
}

.availability-card--compact .availability-calendar {
  gap: 4px;
  grid-template-columns: repeat(7, minmax(28px, 1fr));
}

.availability-weekday {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.availability-card--compact .availability-weekday {
  font-size: 0.64rem;
}

.availability-empty {
  min-height: 42px;
}

.availability-card--compact .availability-empty {
  min-height: 34px;
}

.availability-day {
  background: #f8f7f2;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  min-height: 42px;
  padding: 5px;
  text-align: left;
}

.availability-card--compact .availability-day {
  font-size: 0.82rem;
  min-height: 34px;
  padding: 4px;
}

.availability-day strong,
.availability-day span,
.availability-day em {
  display: block;
}

.availability-day span,
.availability-day em {
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
  text-transform: uppercase;
}

.availability-day em {
  color: var(--sage-dark);
  font-size: 0.66rem;
  font-weight: 850;
  margin-top: 1px;
  text-transform: none;
}

.availability-card--compact .availability-day span,
.availability-card--compact .availability-day em {
  display: none;
}

.availability-day.is-blocked {
  background: #f7e1dc;
  border-color: rgba(139, 59, 45, 0.28);
  color: #8b3b2d;
  cursor: not-allowed;
}

.availability-day.is-past {
  background: #eeeae1;
  border-color: rgba(24, 33, 31, 0.08);
  color: rgba(24, 33, 31, 0.38);
  cursor: not-allowed;
}

.availability-day.is-selected {
  background: var(--sage);
  border-color: var(--sage-dark);
  color: #fff;
}

.availability-day.is-selected span {
  color: rgba(255, 255, 255, 0.82);
}

.availability-day.is-selected em {
  color: #fff;
}

.availability-day:disabled {
  opacity: 1;
}

.availability-day:not(:disabled):hover {
  border-color: var(--sage);
  box-shadow: 0 0 0 2px rgba(89, 117, 107, 0.16);
}

.availability-status {
  color: var(--sage-dark);
  font-size: 0.92rem;
  font-weight: 800;
  margin: 12px 0 0;
}

.availability-card--compact .availability-status {
  font-size: 0.78rem;
  margin-top: 8px;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-list details,
.legal-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
}

.legal-section {
  background: var(--paper);
}

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

.legal-grid h2 {
  font-size: 1.35rem;
}

.legal-grid p {
  color: var(--muted);
}

.booking-card {
  box-shadow: 0 20px 55px rgba(24, 33, 31, 0.12);
  width: 100%;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 56px);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.creator-page {
  background: #f4f1e8;
}

.creator-header {
  position: sticky;
}

.nav-button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
  padding: 0;
}

.creator-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 58px clamp(18px, 4vw, 56px) 84px;
}

.creator-login,
.creator-toolbar {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.creator-login h1,
.creator-toolbar h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.creator-login p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.creator-auth-card {
  width: 100%;
}

.creator-auth-card label + label,
.editor-panel label + label {
  margin-top: 14px;
}

.toggle-row {
  align-items: center;
  display: flex;
  gap: 10px;
  margin: 12px 0 18px;
}

.toggle-row input {
  min-height: auto;
  width: auto;
}

.toggle-row span {
  color: var(--ink);
}

.creator-toolbar {
  margin-bottom: 28px;
}

.creator-menu {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 33, 31, 0.07);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
  padding: 16px;
}

.creator-menu div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.creator-menu p {
  color: var(--muted);
  flex: 1 0 100%;
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.creator-menu button {
  background: #f8f7f2;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  min-height: 40px;
  padding: 0 14px;
}

.creator-menu button.is-active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}

.session-pill {
  align-self: end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-dark);
  font-weight: 850;
  justify-self: end;
  margin: 0 0 14px;
  padding: 10px 16px;
}

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

.editor-panel,
.editor-actions {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 33, 31, 0.07);
  padding: 22px;
}

.editor-panel.wide,
.editor-actions.wide {
  grid-column: 1 / -1;
}

.admin-database,
.admin-bookings {
  margin-bottom: 18px;
}

.database-settings {
  display: grid;
  gap: 14px;
}

.user-settings {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

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

.import-button {
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.import-button input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.panel-heading {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.editor-panel h2 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.panel-heading h2 {
  margin-bottom: 0;
}

.media-editor {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 0.72fr) minmax(260px, 1fr);
  margin-bottom: 18px;
}

.media-editor img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.editor-thumb {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  margin-bottom: 12px;
  object-fit: cover;
  width: 100%;
}

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

.repeat-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.repeat-item + .repeat-item {
  margin-top: 14px;
}

.repeat-grid .repeat-item + .repeat-item {
  margin-top: 0;
}

.remove-button {
  background: #fff;
  border: 1px solid rgba(139, 59, 45, 0.28);
  border-radius: 6px;
  color: #8b3b2d;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  margin-top: 12px;
  min-height: 38px;
  padding: 0 12px;
}

.editor-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.editor-actions .form-status {
  flex: 1 1 280px;
  margin: 0;
}

.upload-progress {
  align-items: center;
  display: flex;
  flex: 1 1 260px;
  gap: 10px;
  min-width: min(100%, 260px);
}

.upload-progress-track {
  background: #eeeae1;
  border: 1px solid var(--line);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
  width: 100%;
}

.upload-progress-track span {
  background: var(--sage-dark);
  display: block;
  height: 100%;
  transition: width 160ms ease;
  width: 0%;
}

.upload-progress > span {
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 900;
  min-width: 38px;
  text-align: right;
}

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

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

.user-item {
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.55fr) minmax(180px, 0.7fr) auto;
  padding: 16px;
}

.user-item h3 {
  margin-bottom: 4px;
}

.user-item p {
  color: var(--muted);
  margin: 0;
}

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

.booking-item {
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 16px;
}

.booking-item h3 {
  margin-bottom: 6px;
}

.booking-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.booking-message {
  background: #f4f1e8;
  border-radius: 6px;
  margin-top: 12px;
  padding: 10px 12px;
}

.booking-item.has-overlap {
  background: #fff8eb;
  border-color: rgba(184, 111, 69, 0.55);
  box-shadow: 0 0 0 2px rgba(184, 111, 69, 0.12);
}

.booking-overlap {
  color: #8a4e16 !important;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 8px !important;
  text-transform: uppercase;
}

.booking-packages {
  margin-top: 8px;
}

.booking-status {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 10px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.status-new {
  background: #e9f2ff;
  color: #28547c;
}

.status-contacted {
  background: #fff0d9;
  color: #855a1c;
}

.status-confirmed {
  background: #dfefe5;
  color: #2f6043;
}

.status-declined {
  background: #f7e1dc;
  color: #8b3b2d;
}

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

.booking-actions button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  min-height: 38px;
  padding: 0 12px;
}

.booking-actions .danger-button {
  border-color: rgba(139, 59, 45, 0.34);
  color: #8b3b2d;
}

.booking-actions .danger-button:hover {
  background: #f7e1dc;
}

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

.calendar-heading {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.calendar-heading h3 {
  margin-bottom: 0;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.calendar-legend span {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 6px;
}

.legend-dot {
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-block;
  height: 11px;
  width: 11px;
}

.legend-dot.is-blocked {
  background: #f7e1dc;
  border-color: rgba(139, 59, 45, 0.28);
}

.legend-dot.is-manual-blocked {
  background: #f7e1dc;
  border-color: rgba(139, 59, 45, 0.28);
}

.legend-dot.is-external-blocked {
  background: #dce9f7;
  border-color: rgba(47, 84, 122, 0.28);
}

.legend-dot.is-confirmed {
  background: #dfefe5;
  border-color: rgba(47, 96, 67, 0.3);
}

.legend-dot.has-request {
  background: #fff0d9;
  border-color: rgba(133, 90, 28, 0.24);
}

.legend-dot.has-overlap-request {
  background: #ffe3ad;
  border-color: rgba(184, 111, 69, 0.56);
}

.calendar-tools {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 14px;
}

.calendar-filters {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  max-width: 420px;
  width: min(100%, 420px);
}

.calendar-filters label {
  font-size: 0.78rem;
}

.calendar-tools .small-button {
  margin-top: 0;
}

.calendar-tools .form-status {
  margin: 0;
  min-height: auto;
}

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

.calendar-weekday {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-empty {
  min-height: 48px;
}

.calendar-day {
  background: #f8f7f2;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  min-height: 48px;
  padding: 6px;
  text-align: left;
}

.calendar-day strong,
.calendar-day span,
.calendar-day em,
.calendar-day small {
  display: block;
}

.calendar-day span,
.calendar-day em,
.calendar-day small {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
}

.calendar-day em {
  font-size: 0.64rem;
  margin-top: 2px;
  text-transform: none;
}

.calendar-day small {
  color: var(--sage-dark);
  font-size: 0.66rem;
  font-weight: 850;
  margin-top: 2px;
  text-transform: none;
}

.calendar-day.is-blocked {
  background: #f7e1dc;
  border-color: rgba(139, 59, 45, 0.28);
}

.calendar-day.is-manual-blocked {
  background: #f7e1dc;
  border-color: rgba(139, 59, 45, 0.28);
}

.calendar-day.is-external-blocked {
  background: #dce9f7;
  border-color: rgba(47, 84, 122, 0.28);
  cursor: not-allowed;
}

.calendar-day.is-past {
  background: #eeeae1;
  border-color: rgba(24, 33, 31, 0.08);
  color: rgba(24, 33, 31, 0.38);
  cursor: not-allowed;
}

.calendar-day.is-confirmed {
  background: #dfefe5;
  border-color: rgba(47, 96, 67, 0.3);
  cursor: not-allowed;
}

.calendar-day.has-request:not(.is-blocked):not(.is-manual-blocked):not(.is-external-blocked) {
  background: #fff0d9;
  border-color: rgba(133, 90, 28, 0.24);
}

.calendar-day.has-overlap-request:not(.is-blocked):not(.is-manual-blocked):not(.is-external-blocked) {
  background: #ffe3ad;
  border-color: rgba(184, 111, 69, 0.56);
  box-shadow: inset 0 0 0 2px rgba(184, 111, 69, 0.14);
}

.calendar-day.has-request {
  cursor: not-allowed;
}

.calendar-day:disabled {
  opacity: 1;
}

.calendar-day:not(:disabled):hover {
  border-color: var(--sage);
  box-shadow: 0 0 0 2px rgba(89, 117, 107, 0.16);
}

.empty-state {
  background: #f4f1e8;
  border-radius: 8px;
  color: var(--muted);
  margin: 0;
  padding: 16px;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-height: auto;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 140px;
  }

  .split,
  .split.reverse,
  .pricing-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

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

  .creator-login,
  .creator-toolbar,
  .creator-menu,
  .editor-grid,
  .media-editor,
  .repeat-grid,
  .user-item,
  .booking-item,
  .gallery-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .session-pill {
    justify-self: start;
  }

  .booking-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .main-nav {
    font-size: 0.85rem;
    gap: 10px 14px;
  }

  .hero {
    padding: 142px 16px 28px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .quick-request,
  .booking-card {
    padding: 18px;
  }

  .form-row.two,
  .availability-filters,
  .calendar-filters,
  .amenity-grid,
  .gallery-grid,
  .facts {
    grid-template-columns: 1fr;
  }

  .section-inner {
    padding: 62px 16px;
  }
}
