:root {
  --bg: #081816;
  --bg-soft: #0d2522;
  --panel: rgba(12, 37, 34, 0.68);
  --text: #e6ecea;
  --muted: #a5b9b4;
  --accent: #65e7d5;
  --accent-2: #40bdd5;
  --sand: #d8c7a2;
  --border: rgba(166, 198, 192, 0.25);
  --shadow: 0 28px 60px rgba(4, 10, 9, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(39, 114, 95, 0.24), transparent 45%),
    radial-gradient(circle at 85% 22%, rgba(47, 124, 147, 0.3), transparent 42%),
    linear-gradient(160deg, #071412 0%, #091b19 40%, #0d2321 100%);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: 1rem;
}

.site-glow {
  position: fixed;
  width: 30rem;
  height: 30rem;
  pointer-events: none;
  filter: blur(70px);
  z-index: -1;
}

.site-glow-a {
  top: -9rem;
  left: -10rem;
  background: rgba(103, 224, 193, 0.16);
}

.site-glow-b {
  right: -10rem;
  bottom: -8rem;
  background: rgba(64, 189, 213, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(8, 24, 22, 0.62);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: lowercase;
}

.menu-toggle {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
}

.site-nav {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.75rem);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(12, 37, 34, 0.95);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.site-nav.open {
  display: flex;
}

.nav-cta {
  color: var(--accent);
}

main,
.page-main {
  padding: 1rem;
}

section {
  margin: 2.5rem auto;
  max-width: 74rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--sand);
  margin-bottom: 0.8rem;
}

h1 {
  font-size: clamp(2rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(1.6rem, 5vw, 3.4rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: linear-gradient(120deg, var(--accent), #6ff2b9);
  color: #05201b;
  font-weight: 650;
  box-shadow: 0 14px 28px rgba(98, 229, 200, 0.2);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-split {
  display: grid;
  gap: 1rem;
}

.hero-copy {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  border-radius: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.hero-strip img {
  min-height: 17rem;
  object-fit: cover;
}

.editorial-intro {
  position: relative;
  background: linear-gradient(180deg, rgba(26, 62, 57, 0.66), rgba(11, 31, 29, 0.78));
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.5rem;
}

.floating-price {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  border: 1px solid rgba(101, 231, 213, 0.45);
  border-radius: 1rem;
  padding: 0.75rem 0.9rem;
  background: rgba(6, 24, 22, 0.7);
  color: var(--text);
}

.floating-price span,
.price-tag {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 650;
}

.section-head {
  margin-bottom: 1rem;
}

.h-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.65rem;
  scroll-snap-type: x mandatory;
}

.h-scroll::-webkit-scrollbar {
  height: 0.65rem;
}

.h-scroll::-webkit-scrollbar-thumb {
  background: rgba(87, 221, 205, 0.5);
  border-radius: 999px;
}

.chapter {
  min-width: min(88vw, 26rem);
  background: rgba(11, 34, 31, 0.85);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 0.8rem;
  scroll-snap-align: start;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.chapter:hover {
  transform: translateY(-6px);
  border-color: rgba(101, 231, 213, 0.65);
}

.chapter img {
  margin-bottom: 0.85rem;
  min-height: 16rem;
  object-fit: cover;
}

.meta {
  color: var(--sand);
  font-size: 0.92rem;
}

.deep-zones {
  display: grid;
  gap: 1rem;
}

.zone {
  padding: 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
}

.zone-main {
  background: linear-gradient(140deg, rgba(10, 33, 30, 0.9), rgba(17, 56, 52, 0.75));
}

.zone-price {
  background: linear-gradient(140deg, rgba(15, 51, 48, 0.8), rgba(15, 31, 42, 0.92));
}

.location-story,
.experience-story,
.location-edit,
.contact-layout {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.story-copy,
.experience-story > div,
.location-edit > div,
.contact-info,
.contact-form {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(9, 29, 26, 0.75);
  padding: 1rem;
}

.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.testimonials-creative {
  display: grid;
  gap: 0.8rem;
}

.testimonials-creative blockquote {
  margin: 0;
  padding: 1.1rem;
  border-radius: 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(14, 37, 34, 0.82);
  color: #dce7e4;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: 1.2rem;
}

.final-cta {
  text-align: center;
  background: linear-gradient(150deg, rgba(12, 43, 39, 0.94), rgba(17, 34, 44, 0.94));
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.8rem 1rem;
}

.final-cta h2 span {
  color: var(--accent);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 1.5rem 1rem 2.5rem;
}

.page-hero {
  max-width: 60rem;
}

.editorial-columns {
  display: grid;
  gap: 1rem;
}

.editorial-columns article {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(10, 30, 28, 0.74);
  padding: 1rem;
}

.image-band {
  display: grid;
  gap: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: rgba(9, 30, 27, 0.74);
  padding: 0.95rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 620;
  color: #d9e7e2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: rgba(7, 25, 22, 0.86);
  color: var(--text);
  font: inherit;
  padding: 0.72rem 0.8rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(97, 221, 204, 0.5);
  border-color: rgba(97, 221, 204, 0.75);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .site-header {
    padding: 1rem 2.2rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 0;
    gap: 1.2rem;
  }

  main,
  .page-main {
    padding: 1.6rem 2.2rem;
  }

  .hero-split {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .deep-zones {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .location-story,
  .experience-story,
  .location-edit,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .reverse > img {
    order: 2;
  }

  .reverse > div {
    order: 1;
  }

  .testimonials-creative {
    grid-template-columns: 1.3fr 1fr 1.2fr;
  }

  .editorial-columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-band {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
