:root {
  --ink: #182015;
  --muted: #677260;
  --paper: #f6eedf;
  --canvas: #fffaf0;
  --moss: #263c2a;
  --deep: #11170f;
  --fern: #667e4c;
  --flame: #c95d31;
  --ember: #ec9b44;
  --sun: #f1c767;
  --line: rgba(24, 32, 21, 0.16);
  --white: #fffdf7;
  --shadow: 0 28px 90px rgba(24, 32, 21, 0.18);
  --font-sans: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-display: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-label: "Avenir Next", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(236, 155, 68, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(102, 126, 76, 0.14), transparent 26rem),
    linear-gradient(90deg, rgba(38, 60, 42, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(38, 60, 42, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 238, 223, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--sun), var(--flame) 42%, var(--moss) 44%);
  box-shadow: 0 0 0 5px rgba(210, 103, 60, 0.11);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
}

.nav a,
.admin-link {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid transparent;
  background: none;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
}

.nav a:hover,
.admin-link:hover {
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.64);
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: var(--deep);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 23, 15, 0.08), rgba(17, 23, 15, 0.36)),
    linear-gradient(180deg, rgba(17, 23, 15, 0.02), rgba(17, 23, 15, 0.52));
  pointer-events: none;
}

.hero-media::after {
  content: "5-8 JUNE · PRIVATE FOREST · 30 SEATS";
  position: absolute;
  z-index: 2;
  left: clamp(20px, 4vw, 54px);
  bottom: clamp(20px, 4vw, 54px);
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 253, 247, 0.28);
  background: rgba(17, 23, 15, 0.42);
  color: rgba(255, 253, 247, 0.86);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(246, 238, 223, 0.98)),
    var(--paper);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--flame);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7.4vw, 98px);
  line-height: 0.95;
  font-family: var(--font-display);
  font-weight: 800;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.lead-text {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 28px;
}

.hero-facts span,
.activity-list span,
.booking-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.74);
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-button {
  background: var(--ink);
  color: var(--white);
}

.secondary-button {
  background: transparent;
  color: var(--ink);
}

.primary-button:hover {
  background: var(--flame);
  border-color: var(--flame);
  transform: translateY(-1px);
}

.secondary-button:hover {
  background: rgba(29, 36, 27, 0.06);
  transform: translateY(-1px);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 32px;
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 13px;
}

.hero-note span:first-child {
  color: var(--flame);
  font-weight: 700;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 4vw, 54px);
}

.intro-grid,
.split,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

.feature-grid article,
.included-grid article,
.booking-form,
.price-panel,
.faq details {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(236, 155, 68, 0.12);
}

.feature-grid article,
.included-grid article {
  padding: 24px;
}

.feature-grid span {
  color: var(--flame);
  font-family: var(--font-label);
  font-weight: 700;
}

.muted,
.feature-grid p,
.included-grid li,
.faq p,
.booking-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.timeline {
  background:
    linear-gradient(180deg, rgba(17, 23, 15, 0.9), rgba(38, 60, 42, 0.96)),
    var(--moss);
  color: var(--white);
}

.timeline .section-kicker {
  color: var(--sun);
}

.moment-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.15fr 0.9fr;
  gap: 16px;
  margin-top: 26px;
}

.video-reel {
  background: #171d15;
  color: var(--white);
}

.video-reel .section-kicker {
  color: var(--sun);
}

.video-reel .muted {
  max-width: 420px;
  color: rgba(255, 253, 247, 0.7);
}

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

.video-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050705;
}

.moment-strip article {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.moment-strip img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) contrast(1.04);
}

.moment-strip h3,
.moment-strip p {
  padding: 0 18px;
}

.moment-strip h3 {
  padding-top: 18px;
}

.moment-strip p {
  color: rgba(255, 253, 247, 0.78);
  padding-bottom: 18px;
}

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

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

.activity-list span {
  justify-content: center;
  min-height: 92px;
  text-align: center;
}

.inline-cta {
  display: inline-flex;
  margin-top: 18px;
  color: var(--flame);
  font-weight: 700;
}

.price-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  box-shadow: var(--shadow);
}

.price-panel div {
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.price-panel div:last-child {
  border-right: 0;
}

.price-panel span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.price-panel strong {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.9;
}

.included-grid ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.moodboard {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.82), rgba(239, 230, 211, 0.96)),
    #f7efe0;
}

.moodboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
  gap: 14px;
}

.moodboard-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.78);
}

.moodboard-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.moodboard-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(17, 23, 15, 0.92), rgba(17, 23, 15, 0.62)),
    url("assets/photos/forest-view.JPG") center / cover;
  color: var(--white);
}

.booking-form {
  padding: 24px;
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.booking-copy .section-kicker {
  color: var(--sun);
}

.booking-copy p {
  color: rgba(255, 253, 247, 0.76);
}

.booking-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.booking-badges span {
  border-color: rgba(255, 253, 247, 0.22);
  background: rgba(255, 253, 247, 0.1);
  color: var(--white);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(210, 103, 60, 0.35);
  outline-offset: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 12px 0 18px;
  padding: 18px;
  background: var(--moss);
  color: var(--white);
}

.total-row strong {
  font-size: 34px;
}

.checkline {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 400;
  color: var(--muted);
}

.checkline input {
  min-height: 18px;
  margin-top: 4px;
}

.full {
  width: 100%;
}

.form-message {
  min-height: 22px;
  color: var(--flame);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.faq details {
  padding: 18px 20px;
}

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

.success-modal,
.admin-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(29, 36, 27, 0.58);
}

.modal-card,
.admin-card {
  position: relative;
  width: min(100%, 980px);
  max-height: 88vh;
  overflow: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 28px;
}

.modal-card {
  width: min(100%, 520px);
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.admin-login {
  max-width: 420px;
  margin: 22px 0;
}

.admin-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stats span {
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--white);
}

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

th {
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

[hidden] {
  display: none !important;
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 12px 14px;
  }

  .nav {
    flex: 1;
    justify-content: flex-end;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .brand {
    flex: 0 0 auto;
    max-width: 156px;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero,
  .intro-grid,
  .split,
  .booking-section,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: var(--paper);
  }

  .hero-media {
    min-height: 58vh;
    order: -1;
  }

  .hero-media img {
    object-position: 45% center;
  }

  .hero-content {
    padding-top: 30px;
    padding-bottom: 38px;
  }

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

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

  .video-grid,
  .moodboard-grid,
  .activity-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-list span {
    min-height: 72px;
  }
}

@media (max-width: 640px) {
  .nav a,
  .admin-link {
    min-height: 34px;
    padding: 7px 10px;
    white-space: nowrap;
  }

  h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  h3 {
    font-size: 20px;
  }

  .feature-grid,
  .included-grid,
  .moment-strip,
  .moodboard-grid,
  .price-panel,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .video-grid video {
    width: 100%;
    max-height: none;
  }

  .moment-strip img {
    aspect-ratio: 4 / 3.7;
  }

  .price-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero-content,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-media::after {
    right: 18px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-facts,
  .hero-actions,
  .booking-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-facts span,
  .booking-badges span {
    justify-content: space-between;
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

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

  .booking-form,
  .modal-card,
  .admin-card {
    padding: 20px;
  }

  input,
  select {
    min-height: 50px;
    font-size: 16px;
  }

  .total-row {
    padding: 16px;
  }

  .total-row strong {
    font-size: 30px;
  }

  .success-modal,
  .admin-panel {
    align-items: start;
    padding: 12px;
  }

  .admin-card,
  .modal-card {
    width: 100%;
    max-height: calc(100vh - 24px);
  }
}
}
