:root {
  --brand-green: #305e42;
  --brand-red: #ec3b38;
  --ink: #172018;
  --muted: #657165;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: #d9dfd8;
  --soft-green: #e9f2eb;
  --soft-red: #fff0ee;
  --soft-blue: #eaf3f7;
  --amber: #f3b33d;
  --shadow: 0 16px 40px rgba(23, 32, 24, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.gallery-viewer-open {
  overflow: hidden;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.shell {
  min-height: 100vh;
}

.container {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(48, 94, 66, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  padding: 4px 8px;
  text-decoration: none;
}

.brand img {
  width: 172px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 650;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(48, 94, 66, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(233, 242, 235, 0.7));
  padding: 8px 12px;
  text-decoration: none;
  color: var(--ink);
}

.nav-links a:hover {
  border-color: rgba(48, 94, 66, 0.32);
  background: var(--soft-green);
}

.nav-links .button {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: white;
}

.button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--brand-green);
  color: white;
  text-decoration: none;
  font-weight: 760;
  box-shadow: none;
}

.button:hover {
  filter: brightness(0.96);
}

.button.secondary {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}

.button.danger {
  background: var(--brand-red);
}

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

.button.small {
  min-height: 34px;
  padding: 6px 10px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 179, 61, 0.2), transparent 30%),
    linear-gradient(135deg, #172018 0%, #305e42 58%, #e6dfce 58%, #f8f1df 100%);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 36px 4% auto auto;
  width: min(42vw, 520px);
  height: 260px;
  background: url("/logo-cropped.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.18;
  pointer-events: none;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 24, 18, 0.5), rgba(15, 24, 18, 0.12) 50%, rgba(255, 250, 240, 0.2));
  pointer-events: none;
}

.hero-video-panel {
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--brand-green);
  pointer-events: none;
}

.hero-media img,
.hero-media video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  object-fit: cover;
}

.hero-media img {
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(1.05) contrast(1.04);
}

.hero-media video {
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero-media.is-video-ready video {
  opacity: 0.92;
}

.hero-media.is-video-ready img {
  opacity: 0;
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: min(680px, calc(100vh - 128px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 44px 0 72px;
}

.hero-copy-panel {
  max-width: 620px;
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 32, 24, 0.74), rgba(48, 94, 66, 0.5)),
    rgba(23, 32, 24, 0.42);
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.hero-copy-panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero-focused .hero-copy-panel {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.hero-focus-toggle {
  position: absolute;
  right: 0;
  bottom: 24px;
  z-index: 4;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(23, 32, 24, 0.42);
  color: white;
  padding: 9px 12px;
  font-weight: 760;
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 780;
  text-transform: uppercase;
}

.section-eyebrow {
  color: var(--brand-green);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

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

.section {
  padding: 72px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, #f8f1df 0%, #f4ead6 48%, #eef3ef 100%);
  border-top: 1px solid rgba(48, 94, 66, 0.12);
  border-bottom: 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.address-line {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.location-copy {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.location-copy h3 {
  margin: 24px 0 6px;
  font-size: 22px;
}

.feature-band {
  border-left: 4px solid var(--brand-red);
  padding-left: 20px;
}

.location-actions {
  margin-top: 12px;
  margin-bottom: 12px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.card.pad {
  padding: 22px;
}

.tent-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 210px 1fr;
}

.tent-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(48, 94, 66, 0.8), rgba(236, 59, 56, 0.66)),
    var(--soft-blue);
}

.tent-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34px;
  width: 260px;
  height: 150px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(23, 32, 24, 0.18);
}

.tent-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(76%, 360px);
  height: 14px;
  transform: translateX(-50%);
  background: rgba(23, 32, 24, 0.18);
  border-radius: 999px;
}

.tent-visual.with-image {
  background: #eef3ef;
}

.tent-visual.with-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tent-visual.with-image::before,
.tent-visual.with-image::after {
  display: none;
}

.tent-body {
  padding: 22px;
}

.tent-body h3,
.card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.meta-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 20px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.meta-list li {
  display: flex;
  gap: 8px;
}

.footer {
  padding: 28px 0;
  background: var(--ink);
  color: white;
}

.map-panel {
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(48, 94, 66, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 48px rgba(48, 94, 66, 0.12);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.location-copy .location-note {
  width: 100%;
  margin-top: 14px;
}

.location-note h3 {
  margin: 0 0 6px;
}

.location-note p {
  margin: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-section {
  position: relative;
  background:
    radial-gradient(circle at 92% 10%, rgba(243, 179, 61, 0.12), transparent 26%),
    linear-gradient(180deg, #eef3ef 0%, #f6f1e7 100%);
}

.gallery-section .container {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 31%);
  grid-template-rows: repeat(2, 230px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 2px 2px 10px;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce6de;
  scroll-snap-align: start;
}

.gallery-grid figure.is-featured {
  grid-row: span 2;
}

.gallery-media-button {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-media-button:hover img,
.gallery-media-button:hover video,
.gallery-media-button:focus-visible img,
.gallery-media-button:focus-visible video {
  filter: brightness(0.92);
  transform: scale(1.025);
}

.gallery-media-button:focus-visible {
  outline: 3px solid rgba(243, 179, 61, 0.86);
  outline-offset: -3px;
}

.gallery-grid video {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
  background: var(--ink);
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-grid figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 7px 9px;
  border-radius: var(--radius);
  background: rgba(23, 32, 24, 0.64);
  color: white;
  font-size: 13px;
  font-weight: 760;
  pointer-events: none;
}

.gallery-controls {
  position: absolute;
  left: -18px;
  right: -18px;
  top: 58%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.gallery-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(233, 242, 235, 0.7));
  color: var(--brand-green);
  pointer-events: auto;
  box-shadow: 0 14px 34px rgba(23, 32, 24, 0.18);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.gallery-arrow:hover {
  border-color: rgba(48, 94, 66, 0.26);
  background: rgba(255, 253, 248, 0.96);
}

.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255, 253, 248, 0.1), transparent 42%),
    rgba(12, 18, 14, 0.62);
  padding: clamp(16px, 4vw, 44px);
  backdrop-filter: blur(16px) saturate(0.86);
}

.gallery-viewer.is-open {
  display: flex;
}

.gallery-viewer-inner {
  position: relative;
  width: min(1180px, 100%);
  height: min(820px, calc(100vh - 48px));
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-viewer-inner img,
.gallery-viewer-inner video {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.04);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.gallery-viewer-inner video {
  width: min(100%, 980px);
  background: black;
}

.gallery-viewer-inner p {
  position: absolute;
  left: 50%;
  bottom: -34px;
  max-width: min(720px, 92vw);
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  font-size: 14px;
  font-weight: 650;
  transform: translateX(-50%);
}

.gallery-viewer-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(23, 32, 24, 0.34);
  color: white;
  padding: 0;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.gallery-viewer-close:hover,
.gallery-viewer-close:focus-visible {
  background: rgba(23, 32, 24, 0.58);
  border-color: rgba(255, 255, 255, 0.5);
}

.gallery-viewer-nav {
  position: fixed;
  top: 50%;
  width: 48px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(23, 32, 24, 0.32);
  color: white;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.gallery-viewer-nav.is-prev {
  left: 18px;
}

.gallery-viewer-nav.is-next {
  right: 18px;
}

.gallery-viewer-nav:hover,
.gallery-viewer-nav:focus-visible {
  background: rgba(23, 32, 24, 0.58);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-section {
  background: var(--ink);
  color: white;
}

.contact-section p,
.contact-band p {
  color: inherit;
  opacity: 0.82;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(48, 94, 66, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(48, 94, 66, 0.15), rgba(236, 59, 56, 0.08)),
    white;
  color: var(--ink);
}

.contact-section .contact-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(243, 179, 61, 0.12)),
    rgba(255, 255, 255, 0.04);
  color: white;
}

.tent-section {
  background:
    radial-gradient(circle at 10% 14%, rgba(243, 179, 61, 0.1), transparent 28%),
    linear-gradient(180deg, #eef3ef 0%, #f7f1e3 100%);
}

.tent-section .section-head {
  justify-content: center;
  text-align: center;
  padding: 18px 0 24px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.tent-section .section-head p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.tent-section .tent-card {
  border-color: rgba(48, 94, 66, 0.14);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 32px rgba(48, 94, 66, 0.08);
}

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

.contact-missing {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--muted);
  font-size: 14px;
}

.contact-placeholder {
  opacity: 0.72;
  cursor: default;
}

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

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #21a65b;
  color: white;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.page {
  padding: 40px 0 80px;
}

.page-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.page-title h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.wizard {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.steps {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
}

.step-pill {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--muted);
  padding: 12px;
  text-align: left;
  font-weight: 750;
}

.step-pill.active {
  border-color: var(--brand-green);
  background: var(--soft-green);
  color: var(--brand-green);
}

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

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.label {
  font-size: 13px;
  font-weight: 780;
  color: var(--ink);
}

.field-hint {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

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

.field textarea {
  min-height: 100px;
  resize: vertical;
}

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

.choice {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 16px;
  text-align: left;
}

.choice.active {
  border-color: var(--brand-green);
  box-shadow: inset 0 0 0 1px var(--brand-green);
  background: var(--soft-green);
}

.choice strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

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

.tent-choice {
  z-index: 1;
}

.tent-choice:hover,
.tent-choice:focus-visible {
  z-index: 8;
}

.tent-choice-preview {
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 10px);
  z-index: 20;
  width: min(420px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.tent-choice:hover .tent-choice-preview,
.tent-choice:focus-visible .tent-choice-preview {
  opacity: 1;
  transform: translateY(0);
}

.tent-choice-preview-media {
  min-height: 112px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(48, 94, 66, 0.82), rgba(236, 59, 56, 0.62)),
    var(--soft-blue);
}

.tent-choice-preview-media img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
  display: block;
}

.tent-choice-preview-fallback {
  position: relative;
  display: block;
  min-height: 112px;
}

.tent-choice-preview-fallback::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: 92px;
  height: 58px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: rgba(255, 253, 248, 0.86);
}

.tent-choice-preview-body {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.tent-choice-preview-title {
  color: var(--ink);
  font-weight: 850;
  font-size: 15px;
}

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

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

.price-reference {
  min-height: 64px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(48, 94, 66, 0.08), rgba(243, 179, 61, 0.12)),
    white;
  padding: 12px;
}

.availability-note {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  border: 1px solid #c9ddcc;
  border-radius: var(--radius);
  background: var(--soft-green);
  color: var(--brand-green);
  padding: 12px 14px;
}

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

.note {
  border: 1px solid #d8dfef;
  border-radius: var(--radius);
  background: var(--soft-blue);
  color: #33435a;
  padding: 14px;
}

.note.full {
  grid-column: 1 / -1;
}

.error-box {
  border: 1px solid #f0b7b2;
  border-radius: var(--radius);
  background: var(--soft-red);
  color: #7d1c18;
  padding: 12px 14px;
}

.summary-box {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 16px;
}

.line-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.line-total {
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 12px;
  font-size: 20px;
  font-weight: 850;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.checkbox-row {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.checkbox-row input {
  margin-top: 4px;
}

.addon-thumb {
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  object-fit: cover;
}

.success-panel {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--soft-green);
  border: 1px solid #c9ddcc;
  border-radius: var(--radius);
}

.payment-box {
  display: grid;
  gap: 14px;
  max-width: 760px;
  padding: 18px;
  border: 1px solid #c9ddcc;
  border-radius: var(--radius);
  background: white;
}

.payment-box-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.payment-box-head h3 {
  margin: 0;
}

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

.payment-details div {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafbf8;
}

.payment-details span {
  color: var(--muted);
  font-size: 13px;
}

.admin-layout {
  display: grid;
  gap: 18px;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-tabs button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 10px 14px;
  font-weight: 780;
}

.admin-tabs button.active {
  border-color: var(--brand-green);
  background: var(--soft-green);
  color: var(--brand-green);
}

.admin-header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-collapse {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 0;
}

.admin-collapse > summary {
  list-style: none;
  padding: 16px 18px;
  font-weight: 850;
  cursor: pointer;
}

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

.admin-collapse > :not(summary) {
  margin: 0 18px 18px;
}

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

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

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

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

td input,
td select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 9px 10px;
}

th {
  background: #f4f7f3;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 820;
}

.badge.pending {
  background: #fff5d9;
  color: #815b00;
}

.badge.confirmed {
  background: var(--soft-green);
  color: var(--brand-green);
}

.badge.payment-pending_manual {
  background: #fff5d9;
  color: #815b00;
}

.badge.payment-pending_gateway {
  background: #eaf3f7;
  color: #1f5067;
}

.badge.payment-paid {
  background: var(--soft-green);
  color: var(--brand-green);
}

.badge.payment-refunded {
  background: var(--soft-blue);
  color: #33435a;
}

.badge.cancelled,
.badge.abandoned,
.badge.payment-failed,
.badge.payment-cancelled {
  background: var(--soft-red);
  color: #7d1c18;
}

.detail-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #fafbf8;
}

.price-form {
  display: grid;
  gap: 18px;
}

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

.admin-row-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.admin-row-head h3 {
  margin: 0 0 4px;
}

.admin-row-head p {
  margin: 0;
  color: var(--muted);
}

.addon-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.3fr 120px 110px auto;
  gap: 10px;
  align-items: end;
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.check-list label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 720;
}

.upload-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.upload-inline input[type="file"] {
  flex: 1 1 260px;
}

.gallery-admin-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 14px;
}

.gallery-admin-row + .gallery-admin-row {
  margin-top: 12px;
}

.admin-media-preview {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft-green);
}

.admin-media-preview img,
.admin-media-preview video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.availability-grid {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.availability-table {
  min-width: 980px;
  table-layout: fixed;
}

.availability-table th:first-child,
.availability-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #f9fbf8;
  width: 120px;
}

.day-cell {
  height: 34px;
  text-align: center;
  font-size: 12px;
}

.day-cell.free {
  background: #ffffff;
}

.day-cell.pending {
  background: #fff5d9;
}

.day-cell.confirmed {
  background: #dceddf;
}

.day-cell.cancelled,
.day-cell.abandoned {
  background: #f7f7f7;
  color: #9a9a9a;
}

.day-cell.blocked {
  background: #ffe4e1;
  color: #8d211b;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  font-size: 28px;
  margin-top: 34px;
}

@media (max-width: 860px) {
  .nav-inner,
  .footer-inner,
  .section-head,
  .page-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 148px;
  }

  .hero-inner,
  .split,
  .tent-grid,
  .wizard {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 48px 0 64px;
  }

  .location-copy {
    min-height: auto;
  }

  .location-copy .location-note {
    margin-top: 24px;
  }

  .admin-row-head {
    flex-direction: column;
  }

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

  .form-grid,
  .choice-grid,
  .period-grid,
  .price-reference-grid,
  .filters,
  .price-grid,
  .payment-details,
  .addon-row,
  .gallery-admin-row {
    grid-template-columns: 1fr;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .gallery-grid {
    grid-auto-columns: minmax(230px, 72vw);
    grid-template-rows: repeat(2, 210px);
  }

  .gallery-controls {
    left: 4px;
    right: 4px;
    top: 61%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 24px, 1120px);
  }

  .nav-inner {
    min-height: 64px;
    gap: 10px;
  }

  .brand img {
    width: 138px;
    height: 48px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
  }

  .nav-links a {
    min-height: 34px;
    padding: 7px 9px;
  }

  .nav-booking-link {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-inner {
    position: relative;
    min-height: min(620px, calc(100vh - 104px));
    align-items: start;
    padding: 26px 0 24px;
    overflow: hidden;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(15, 24, 18, 0.46), rgba(15, 24, 18, 0.08) 42%, rgba(15, 24, 18, 0.56));
  }

  .hero-video-panel {
    display: none;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-media img,
  .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-copy-panel {
    position: relative;
    z-index: 2;
    align-self: start;
    max-width: none;
    padding: 16px;
    background: linear-gradient(135deg, rgba(23, 32, 24, 0.66), rgba(48, 94, 66, 0.42));
    color: white;
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
  }

  .hero-copy-panel .eyebrow {
    color: rgba(255, 255, 255, 0.78);
  }

  .hero-copy-panel p:not(.eyebrow) {
    display: none;
  }

  .hero-focus-toggle {
    display: inline-flex;
    right: 0;
    bottom: 12px;
    font-size: 13px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 22px;
  }

  .hero-copy-panel .button {
    flex: 1 1 150px;
  }

  .gallery-grid {
    grid-auto-columns: minmax(220px, 82vw);
    grid-template-rows: repeat(2, 190px);
  }

  .gallery-grid img,
  .gallery-grid video,
  .gallery-media-button {
    min-height: 190px;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 29px;
  }

  .gallery-viewer {
    padding: 12px;
  }

  .gallery-viewer-inner {
    height: min(720px, calc(100vh - 78px));
  }

  .gallery-viewer-inner img {
    max-height: 100%;
  }

  .gallery-viewer-inner video {
    width: 100%;
    max-height: 100%;
  }

  .gallery-viewer-inner p {
    bottom: -28px;
    font-size: 12px;
  }

  .gallery-viewer-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 27px;
  }

  .gallery-viewer-nav {
    width: 38px;
    height: 46px;
    font-size: 32px;
  }

  .gallery-viewer-nav.is-prev {
    left: 8px;
  }

  .gallery-viewer-nav.is-next {
    right: 8px;
  }

  .section,
  .page {
    padding: 44px 0;
  }

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

  .wizard-actions {
    flex-direction: column-reverse;
  }

  .wizard-actions .button {
    width: 100%;
  }

  .tent-choice-preview {
    width: min(320px, calc(100vw - 40px));
    grid-template-columns: 1fr;
  }
}
