:root {
  --ink: #14201d;
  --muted: #69736e;
  --line: rgba(31, 52, 46, 0.14);
  --paper: #fffaf1;
  --ivory: #fffdf8;
  --mist: #eef6f1;
  --leaf: #164f43;
  --leaf-dark: #0c332b;
  --gold: #c9953f;
  --gold-soft: #f5e3bc;
  --coral: #b95f4d;
  --water: #286f82;
  --shadow-soft: 0 18px 48px rgba(19, 42, 36, 0.14);
  --shadow-lift: 0 26px 70px rgba(19, 42, 36, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
.nav-cta {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  box-shadow: 0 12px 26px rgba(12, 51, 43, 0.18);
  color: white;
  cursor: pointer;
  font-weight: 800;
  min-height: 46px;
  padding: 0.82rem 1.08rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

button:hover,
.nav-cta:hover {
  box-shadow: 0 16px 30px rgba(12, 51, 43, 0.25);
  transform: translateY(-1px);
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 241, 0.82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(20, 32, 29, 0.06);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 0;
  padding: 0.8rem clamp(1rem, 4vw, 4rem);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 0.78rem;
  min-width: 240px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, #f8e1a7, var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(201, 149, 63, 0.28);
  color: #2f2411;
  display: grid;
  flex: 0 0 48px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 800;
  height: 48px;
  place-items: center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.05rem;
  justify-content: flex-end;
}

.nav-links a:not(.nav-cta) {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  display: grid;
  min-height: 84vh;
  overflow: hidden;
  position: relative;
}

.hero-media {
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(8, 31, 27, 0.78), rgba(8, 31, 27, 0.34) 48%, rgba(8, 31, 27, 0.08)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=85") center/cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.hero::after {
  background: linear-gradient(0deg, rgba(255, 250, 241, 1), rgba(255, 250, 241, 0));
  bottom: -1px;
  content: "";
  height: 12vh;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-content {
  align-self: end;
  color: white;
  max-width: 1040px;
  padding: clamp(2.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 0.72rem;
  text-transform: uppercase;
}

.section-heading .eyebrow,
.booking-layout .eyebrow,
.dialog-head .eyebrow {
  color: var(--gold);
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.92;
  margin: 0;
  max-width: 900px;
  text-wrap: balance;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.65;
  max-width: 680px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 1.55rem;
}

.hero-highlights span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.55rem 0.78rem;
}

.search-panel {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
  color: var(--ink);
  margin-top: 1.35rem;
  max-width: 850px;
  padding: 1.15rem;
}

.search-panel label,
.booking-card label {
  color: var(--ink);
  display: grid;
  font-size: 0.88rem;
  font-weight: 900;
  gap: 0.48rem;
}

.search-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr auto;
  margin-top: 0.65rem;
}

input,
select,
textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 0.82rem 0.9rem;
  transition: border 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(201, 149, 63, 0.7);
  box-shadow: 0 0 0 4px rgba(201, 149, 63, 0.14);
}

textarea {
  resize: vertical;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.suggestions button,
.secondary {
  background: #f4ead6;
  box-shadow: none;
  color: var(--ink);
}

.suggestions button {
  border: 1px solid rgba(201, 149, 63, 0.22);
  min-height: 34px;
  padding: 0.46rem 0.72rem;
}

.trust-strip {
  background: var(--paper);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: -2.3rem auto 0;
  max-width: 1120px;
  padding: 0 clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 3;
}

.trust-strip div {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.28rem;
  min-height: 112px;
  padding: 1.1rem;
}

.trust-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.trust-strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.trust-strip strong {
  color: var(--leaf-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.experience-band,
.gallery-section,
.moments-section,
.packages-section,
.location-section,
.reviews-section,
.contact-section,
.faq-section,
.booking-section {
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 4vw, 4rem);
}

.experience-band {
  background: var(--paper);
}

.gallery-section {
  background: var(--ivory);
}

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

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

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.35fr 1fr 1fr;
  margin-top: 1.65rem;
}

.gallery-grid figure {
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 32, 29, 0.08);
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.gallery-large {
  grid-row: span 2;
}

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

.gallery-grid figcaption {
  background: rgba(255, 253, 248, 0.92);
  border-radius: 999px;
  bottom: 0.85rem;
  color: var(--leaf-dark);
  font-size: 0.82rem;
  font-weight: 900;
  left: 0.85rem;
  padding: 0.44rem 0.68rem;
  position: absolute;
}

.moments-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-top: 1.65rem;
}

.moment-card {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 32, 29, 0.08);
  color: var(--ink);
  display: block;
  margin: 0;
  overflow: hidden;
  text-decoration: none;
}

.moment-card img,
.moment-card iframe {
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.moment-card figcaption {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.7rem 0.85rem;
}

.moment-link {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  place-content: center;
  text-align: center;
}

.moment-play {
  color: white;
  font-weight: 900;
}

.moment-link figcaption {
  color: rgba(255, 255, 255, 0.86);
  padding: 0;
}

.empty-state {
  color: var(--muted);
  grid-column: 1 / -1;
  line-height: 1.6;
  margin: 0;
}

.packages-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.4), rgba(238, 246, 241, 0.96)),
    var(--mist);
}

.package-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.65rem;
}

.package-card {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 32, 29, 0.08);
  display: grid;
  gap: 0.72rem;
  padding: 1.15rem;
}

.package-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  color: var(--leaf-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.48rem;
  line-height: 1.1;
  margin: 0;
}

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

.package-card strong {
  color: var(--leaf-dark);
}

.pricing-note {
  color: var(--muted);
  line-height: 1.6;
  margin: 1rem 0 0;
}

.location-section {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(12, 51, 43, 0.94), rgba(40, 111, 130, 0.86)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: white;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.location-copy {
  max-width: 720px;
}

.location-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  line-height: 1.03;
  margin: 0 0 1rem;
}

.location-copy p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.map-link {
  background: var(--gold-soft);
  border-radius: 8px;
  color: #442d0d;
  display: inline-flex;
  font-weight: 900;
  margin-top: 0.6rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
}

.nearby-list {
  display: grid;
  gap: 0.75rem;
}

.nearby-list span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  padding: 0.86rem;
}

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

.contact-section {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.65rem;
}

.contact-card {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(31, 52, 46, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 32, 29, 0.08);
  display: grid;
  gap: 0.65rem;
  padding: 1.15rem;
}

.contact-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--leaf-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  overflow-wrap: anywhere;
}

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

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.65rem;
  max-width: 920px;
}

.faq-list details {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(31, 52, 46, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 32, 29, 0.06);
  padding: 1rem;
}

.faq-list summary {
  color: var(--leaf-dark);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0.75rem 0 0;
}

.reviews-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.9fr);
  margin-top: 1.65rem;
}

.reviews-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.review-card {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(31, 52, 46, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 32, 29, 0.08);
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
}

.review-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.review-card-body {
  display: grid;
  gap: 0.55rem;
  padding: 1.05rem;
}

.star-glyphs {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}

.review-card-body p {
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

.review-card-body strong {
  color: var(--leaf-dark);
}

.review-form {
  background: #f8f1e4;
  border: 1px solid rgba(201, 149, 63, 0.2);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  height: fit-content;
  padding: 1.15rem;
}

.review-form h3 {
  color: var(--leaf-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  margin: 0;
}

.review-form label {
  color: var(--ink);
  display: grid;
  font-size: 0.88rem;
  font-weight: 900;
  gap: 0.48rem;
}

.star-field {
  display: grid;
  gap: 0.48rem;
}

.star-field > span {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.star-picker {
  display: flex;
  gap: 0.3rem;
}

.star-picker button {
  background: transparent;
  box-shadow: none;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  min-height: auto;
  padding: 0.1rem 0.15rem;
}

.star-picker button:hover {
  transform: scale(1.1);
}

.file-field input[type="file"] {
  background: white;
  min-height: auto;
  padding: 0.6rem;
}

.file-field small {
  color: var(--muted);
  font-weight: 600;
}

.form-message {
  color: var(--leaf-dark);
  font-weight: 800;
  margin: 0;
  min-height: 1.2rem;
}

.honeypot-field {
  height: 1px;
  left: -9999px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.review-form-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

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

.section-heading h2,
.booking-layout h2,
.dialog-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  line-height: 1.03;
  margin: 0 0 1rem;
  text-wrap: balance;
}

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

.feature-card {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 32, 29, 0.08);
  overflow: hidden;
}

.feature-card h3 {
  color: var(--leaf-dark);
}

.feature-card p,
.booking-layout p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-card {
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.feature-image {
  overflow: hidden;
  position: relative;
}

.feature-image::after {
  background: linear-gradient(0deg, rgba(12, 51, 43, 0.46), rgba(12, 51, 43, 0));
  bottom: 0;
  content: "";
  height: 46%;
  left: 0;
  position: absolute;
  right: 0;
}

.feature-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 280ms ease;
}

.feature-card:hover img {
  transform: scale(1.04);
}

.feature-image span {
  background: rgba(255, 253, 248, 0.92);
  border-radius: 999px;
  bottom: 0.8rem;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 900;
  left: 0.8rem;
  padding: 0.42rem 0.66rem;
  position: absolute;
  z-index: 1;
}

.feature-body {
  display: grid;
  gap: 0.55rem;
  padding: 1.05rem;
}

.feature-kicker {
  color: var(--gold) !important;
  font-size: 0.72rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.feature-card h3,
.feature-card p {
  margin: 0;
}

.feature-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.booking-section {
  background:
    linear-gradient(120deg, rgba(9, 42, 35, 0.94), rgba(31, 91, 103, 0.86)),
    url("https://images.unsplash.com/photo-1475924156734-496f6cac6ec1?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: white;
  position: relative;
}

.booking-section::before {
  background: rgba(255, 255, 255, 0.08);
  content: "";
  inset: 1rem;
  pointer-events: none;
  position: absolute;
}

.booking-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
}

.booking-layout p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
}

.booking-notes {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.booking-notes span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.85rem;
}

.booking-notes strong {
  color: var(--gold-soft);
}

.booking-card {
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
  color: var(--ink);
  display: grid;
  gap: 1rem;
  padding: clamp(1.05rem, 3vw, 1.55rem);
}

.form-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 0.9rem;
}

.form-header span {
  color: var(--leaf-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.form-header strong {
  background: var(--gold-soft);
  border-radius: 999px;
  color: #5a3d10;
  font-size: 0.75rem;
  padding: 0.42rem 0.65rem;
}

.form-grid,
.dynamic-options {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.selected-bookings {
  background: #f8f1e4;
  border: 1px solid rgba(201, 149, 63, 0.2);
  border-radius: 8px;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.selected-head {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.selected-head span {
  color: var(--leaf-dark);
  display: block;
  font-weight: 900;
}

.selected-head small {
  color: var(--muted);
  display: block;
  line-height: 1.4;
}

.selected-head strong {
  background: white;
  border: 1px solid rgba(201, 149, 63, 0.22);
  border-radius: 999px;
  color: var(--leaf-dark);
  flex: 0 0 auto;
  font-size: 0.78rem;
  padding: 0.42rem 0.66rem;
}

.selected-list {
  display: grid;
  gap: 0.72rem;
}

.empty-booking {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.selected-item {
  align-items: center;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(31, 52, 46, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr auto;
  padding: 0.85rem;
}

.selected-item strong,
.selected-item span,
.selected-item small {
  display: block;
}

.selected-item strong {
  color: var(--leaf-dark);
  font-weight: 900;
}

.selected-item span {
  color: var(--ink);
  font-size: 0.88rem;
  margin-top: 0.2rem;
}

.selected-item small {
  color: var(--muted);
  line-height: 1.45;
  margin-top: 0.2rem;
}

.item-actions {
  display: flex;
  gap: 0.45rem;
}

.item-actions button {
  font-size: 0.78rem;
  min-height: 36px;
  padding: 0.45rem 0.62rem;
}

.danger {
  color: #7b261f;
}

.form-actions,
.dialog-actions,
.dialog-head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

.review-dialog {
  background: var(--ivory);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
  max-width: 620px;
  padding: 0;
  width: min(92vw, 620px);
}

.review-dialog::backdrop {
  background: rgba(11, 27, 24, 0.72);
  backdrop-filter: blur(5px);
}

.review-dialog form {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
}

.dialog-head h2 {
  font-size: 2rem;
}

.icon-btn {
  background: #f4ead6;
  box-shadow: none;
  color: var(--ink);
  min-height: 38px;
  padding: 0.4rem 0.8rem;
}

.review-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  max-height: min(58vh, 560px);
  overflow: auto;
  padding-right: 0.2rem;
}

.review-booking {
  background: #f8f1e4;
  border: 1px solid rgba(201, 149, 63, 0.2);
  border-radius: 8px;
  padding: 1rem;
}

.review-booking h3 {
  color: var(--leaf-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  margin: 0 0 0.8rem;
}

.review-booking dl {
  display: grid;
  gap: 0.62rem;
  margin: 0;
}

.review-booking div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.25rem;
  grid-template-columns: 150px 1fr;
  padding-bottom: 0.65rem;
}

.review-booking div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.review-list dt {
  color: var(--muted);
  font-weight: 900;
}

.review-list dd {
  margin: 0;
}

.toast {
  background: var(--leaf-dark);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  bottom: 1rem;
  box-shadow: var(--shadow-lift);
  color: white;
  left: 50%;
  max-width: min(92vw, 540px);
  opacity: 0;
  padding: 1rem;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 1rem);
  transition: 180ms ease;
  z-index: 30;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

footer {
  background: #0c1916;
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  gap: 0.38rem;
  padding: 2.2rem clamp(1rem, 4vw, 4rem);
}

footer strong {
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

@media (max-width: 1000px) {
  .feature-grid,
  .package-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .location-section,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-row: span 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 720px) {
  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .trust-strip div,
  .trust-strip div:first-child,
  .trust-strip div:last-child {
    border-radius: 8px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 3rem;
    padding-top: 8rem;
  }

  .search-row,
  .form-grid,
  .dynamic-options,
  .feature-grid,
  .package-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .selected-item {
    grid-template-columns: 1fr;
  }

  .item-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .form-header,
  .form-actions,
  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions,
  .dialog-actions {
    flex-direction: column-reverse;
  }

  .form-actions button,
  .dialog-actions button {
    width: 100%;
  }

  .review-booking div {
    grid-template-columns: 1fr;
  }
}
