:root {
  color-scheme: light;
  --paper: #f7f3ea;
  --paper-strong: #fffaf0;
  --ink: #17211f;
  --muted: #5c6862;
  --line: rgba(23, 33, 31, 0.14);
  --forest: #163e35;
  --moss: #6e7f43;
  --sun: #d79a42;
  --stone: #d8d0bf;
  --shadow: 0 18px 60px rgba(28, 35, 31, 0.16);
}

* {
  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.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 234, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: clamp(168px, 18vw, 250px);
  height: auto;
  max-height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.36));
}

.site-header.is-scrolled .brand-logo {
  filter: none;
}

.nav {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.nav a {
  padding: 8px 13px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.header-call {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.slideshow,
.slideshow::after,
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slideshow {
  z-index: -2;
}

.slideshow::after {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 18, 16, 0.78), rgba(10, 18, 16, 0.34) 48%, rgba(10, 18, 16, 0.16)), linear-gradient(0deg, rgba(10, 18, 16, 0.54), transparent 42%);
}

.slide {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1200ms ease, transform 7200ms ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  width: min(980px, 100%);
  padding: 160px clamp(20px, 6vw, 72px) 150px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.4vw, 4.45rem);
  max-width: 980px;
}

.hero-text {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--sun);
  color: #20170b;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #fff;
}

.hero-strip {
  position: absolute;
  left: clamp(20px, 6vw, 72px);
  right: clamp(20px, 6vw, 72px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-strip span {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 76px) 0;
}

.intro {
  display: grid;
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  max-width: 720px;
  font-size: clamp(1.42rem, 1.9vw, 2.05rem);
  line-height: 1.12;
}

.intro-copy,
.feature p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.intro-copy {
  max-width: 920px;
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.section-heading h2 {
  max-width: 560px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.experiences-band {
  width: 100%;
  max-width: none;
  padding-left: clamp(20px, 6vw, 72px);
  padding-right: clamp(20px, 6vw, 72px);
  background: var(--forest);
}

.experiences-band .section-heading,
.experiences-band .experience-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.experiences-band h2 {
  color: #fff;
}

.experience-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 12px 34px rgba(24, 31, 28, 0.08);
}

.experience-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.experience-card > div {
  padding: 22px;
}

.experience-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
}

.details-toggle {
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
}

.details-toggle:hover,
.details-toggle[aria-expanded="true"] {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.experience-details {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.experience-details dl {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}

.experience-details dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 0;
  font-size: 0.92rem;
}

.experience-details dt {
  color: var(--muted);
  font-weight: 700;
}

.experience-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.experience-details p {
  font-size: 0.95rem;
}

.feature,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.feature {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  border-bottom: 1px solid var(--line);
}

.feature img {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature p {
  color: var(--muted);
  margin-top: 18px;
}

.feature h2,
.contact h2 {
  font-size: clamp(1.42rem, 1.85vw, 2rem);
  max-width: 620px;
}

@media (min-width: 901px) {
  .section-heading h2,
  .intro h2 {
    white-space: nowrap;
  }
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  color: var(--forest);
  font-weight: 800;
}

.equipment {
  padding-top: clamp(42px, 5vw, 64px);
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.equipment-list li {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  color: var(--forest);
  font-weight: 850;
}

.pricing {
  border-bottom: 1px solid var(--line);
}

.price-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-strong);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.price-row + .price-row {
  border-top: 1px solid var(--line);
}

.price-row strong,
.price-row span {
  display: block;
}

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

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

.price-row b {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--forest);
}

.contact {
  align-items: stretch;
}

.contact-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(26px, 5vw, 42px);
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
}

.contact-phone {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.contact-email {
  width: fit-content;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.contact-email:hover {
  border-color: currentColor;
}

.map-frame {
  overflow: hidden;
  height: 210px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  width: fit-content;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.map-link:hover {
  border-color: currentColor;
}

.contact-panel p,
.contact-panel .muted {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
    margin-top: 4px;
    padding: 8px;
    border-color: rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(17, 31, 27, 0.82);
    backdrop-filter: blur(14px);
  }

  .site-header.is-scrolled .nav.is-open {
    border-color: var(--line);
    background: rgba(247, 243, 234, 0.98);
  }

  .nav.is-open a {
    padding: 11px 12px;
    border-radius: 6px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    padding: 128px 20px 180px;
  }

  .hero-strip,
  .intro,
  .experience-grid,
  .feature,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .hero-strip {
    left: 20px;
    right: 20px;
  }

  .feature img {
    order: -1;
  }
}

@media (max-width: 560px) {
  .header-call {
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .brand-logo {
    width: 126px;
  }

  .hero h1 {
    font-size: 2.28rem;
  }

  .hero-strip span {
    padding: 13px 10px;
    font-size: 0.9rem;
  }

  .section {
    width: min(100% - 28px, 1180px);
  }

  .section-heading {
    display: block;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .equipment-list {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }
}
