:root {
  color-scheme: light dark;
  --bg: #f7f4ed;
  --bg-soft: #ece5d7;
  --ink: #142018;
  --muted: #59665c;
  --forest: #12251b;
  --forest-2: #203f2e;
  --moss: #77916f;
  --pine: #0d1a13;
  --cream: #fffaf0;
  --line: rgba(20, 32, 24, 0.14);
  --gold: #d8b66a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 37, 27, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1;
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--cream);
  color: var(--forest);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 16px 16px auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(18, 37, 27, 0.34);
  color: var(--cream);
  backdrop-filter: blur(24px);
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.94);
  color: var(--forest);
  border-color: var(--line);
  box-shadow: 0 14px 44px rgba(18, 37, 27, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible {
  background: rgba(18, 37, 27, 0.08);
}

.nav-cta {
  background: var(--gold);
  color: var(--forest);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--pine);
  color: var(--cream);
  padding: 150px 0 72px;
}

.hero-landscape,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-landscape {
  width: 112%;
  height: 112%;
  left: -6%;
  top: -6%;
  background:
    linear-gradient(90deg, rgba(9, 17, 12, 0.12), rgba(9, 17, 12, 0.02)),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=2200&q=86") center / cover;
  filter: saturate(0.94) contrast(1.08);
  animation: landscapeSweep 34s ease-in-out infinite alternate;
  transform-origin: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 17, 12, 0.82), rgba(9, 17, 12, 0.42) 54%, rgba(9, 17, 12, 0.68)),
    linear-gradient(0deg, rgba(9, 17, 12, 0.84), transparent 44%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center end;
  gap: 34px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 10vw, 8.5rem);
}

.hero-text {
  max-width: 620px;
  margin-top: clamp(136px, 20vw, 232px);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255, 250, 240, 0.84);
}

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

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 14px 36px rgba(216, 182, 106, 0.22);
}

.hero-actions .button.primary {
  color: var(--cream);
  border-color: rgba(255, 250, 240, 0.42);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.hero-actions .button.primary:hover,
.hero-actions .button.primary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.glass-button {
  color: var(--cream);
  border-color: rgba(255, 250, 240, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  background: var(--forest);
  color: var(--cream);
  padding: 22px 0 18px;
}

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

.trust-grid div {
  display: grid;
  gap: 2px;
  border-left: 1px solid rgba(255, 250, 240, 0.14);
  padding-left: 18px;
}

.trust-grid strong {
  font-size: 1.25rem;
}

.trust-grid span {
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.84rem;
}

.section {
  padding: clamp(76px, 10vw, 130px) 0;
}

.split,
.contact-grid,
.contact-simple {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.contact-simple {
  grid-template-columns: minmax(0, 760px);
}

.section-copy h2,
.section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  color: var(--forest);
}

.section-copy > p:not(.eyebrow),
.section-heading p,
.body-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.body-copy {
  display: grid;
  gap: 18px;
}

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
}

.section-heading p {
  max-width: 620px;
}

.services,
.faq {
  background: var(--cream);
}

.offer-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.offer-card,
.process-card,
.group-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(18, 37, 27, 0.06);
}

.process-card,
.group-card {
  background: rgba(255, 255, 255, 0.68);
}

.offer-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  background: #efe2c7;
  color: var(--forest);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.offer-card h3,
.offer-card .price,
.offer-card .card-link,
.offer-card .offer-time {
  color: var(--forest);
}

.offer-card p {
  color: #445344;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--moss), var(--gold));
  opacity: 0;
  transition: opacity 220ms ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 182, 106, 0.5);
  box-shadow: var(--shadow);
}

.offer-card:hover::before,
.offer-card.featured::before,
.offer-card.intro-offer::before {
  opacity: 1;
}

.offer-card.featured {
  background: linear-gradient(145deg, var(--forest), #0c1b13);
  color: var(--cream);
}

.offer-card.featured p {
  color: rgba(255, 250, 240, 0.72);
}

.offer-card.intro-offer {
  background: #efe2c7;
}

.tag,
.offer-time {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.75rem;
  font-weight: 800;
}

.tag {
  background: var(--gold);
  color: var(--forest);
}

.offer-time {
  margin-top: 18px;
  background: rgba(18, 37, 27, 0.08);
  color: var(--forest);
}

.featured .offer-time {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
}

.offer-card h3 {
  margin-top: 20px;
  font-size: 1.7rem;
}

.offer-card p {
  margin-top: 14px;
}

.price {
  margin-top: auto;
  padding-top: 30px;
  font-size: 1.75rem;
  font-weight: 800;
}

.card-link {
  margin-top: 20px;
  font-weight: 800;
  color: var(--forest);
}

.featured .card-link {
  color: var(--gold);
}

.featured .card-link {
  color: var(--gold);
}

.image-break {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  color: var(--cream);
  padding: 48px;
}

.landscape-sweep {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  background: url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=2000&q=86") center / cover;
  filter: brightness(0.58) saturate(0.9);
  transform: translateY(var(--parallax, 0));
  animation: forestSweep 30s ease-in-out infinite alternate;
}

@keyframes landscapeSweep {
  0% {
    background-position: 36% 50%;
    transform: scale(1.04) translate3d(-1.8%, 0, 0);
  }
  100% {
    background-position: 64% 48%;
    transform: scale(1.1) translate3d(1.8%, -1%, 0);
  }
}

@keyframes forestSweep {
  0% {
    background-position: 28% 50%;
  }
  100% {
    background-position: 72% 46%;
  }
}

.image-break div {
  position: relative;
  max-width: 720px;
}

.image-break p {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-break h2 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
}

.group-section {
  background: var(--forest);
  color: var(--cream);
}

.group-section h2 {
  color: var(--cream);
}

.group-section .section-copy > p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.7);
  margin-top: 18px;
}

.group-card {
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.16);
  padding: 30px;
}

.group-price span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.group-price strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.group-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.group-card li {
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  padding-bottom: 12px;
  color: rgba(255, 250, 240, 0.82);
}

.process-card {
  padding: 30px;
}

.process-card span {
  color: var(--gold);
  font-weight: 800;
}

.process-card h3 {
  margin-top: 24px;
  font-size: 1.5rem;
}

.process-card p {
  margin-top: 12px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18, 37, 27, 0.05);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

details[open] {
  border-color: rgba(216, 182, 106, 0.62);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(18, 37, 27, 0.1);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 22px 24px;
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.contact {
  background: var(--forest);
  color: var(--cream);
}

.contact h2 {
  color: var(--cream);
}

.contact .section-copy > p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.72);
  margin-top: 18px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-list a,
.contact-list span {
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  padding-bottom: 10px;
  color: rgba(255, 250, 240, 0.86);
}

.hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  background: var(--pine);
  color: var(--cream);
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 250, 240, 0.68);
}

.footer-logo {
  width: 132px;
  max-width: 100%;
  height: auto;
  margin-bottom: 14px;
  border-radius: 8px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

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

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #101812;
    color: #f8f3e8;
  }

  .intro-section,
  .process {
    background: #101812;
  }

  .services,
  .faq,
  .section-copy h2,
  .section-heading h2,
  .process-card h3,
  .offer-card h3,
  .faq h2,
  .section-copy > p:not(.eyebrow),
  .section-heading p,
  .body-copy p,
  .process-card p,
  details p,
  .offer-card p {
    color: #bac7b7;
  }

  .offer-card,
  .process-card,
  details,
  .offer-time {
    background: rgba(255, 250, 240, 0.1);
    color: #f8f3e8;
  }

  .offer-card {
    background: #efe2c7;
    color: #142018;
  }

  .price,
  .card-link {
    color: #f8f3e8;
  }

  .offer-card h3,
  .offer-card .price,
  .offer-card .card-link,
  .offer-card .offer-time {
    color: #142018;
  }

  .offer-card p {
    color: #445344;
  }

  .offer-card.featured {
    background: linear-gradient(145deg, var(--forest), #0c1b13);
    color: #f8f3e8;
  }

  .offer-card.featured h3,
  .offer-card.featured .price,
  .offer-card.featured .offer-time {
    color: #f8f3e8;
  }

  .offer-card.featured .card-link {
    color: var(--gold);
  }

  .offer-card.featured p {
    color: #bac7b7;
  }

  .offer-card.intro-offer {
    background: #efe2c7;
    color: #142018;
  }

  .offer-card.intro-offer h3,
  .offer-card.intro-offer .price,
  .offer-card.intro-offer .card-link,
  .offer-card.intro-offer .offer-time {
    color: #142018;
  }

  .offer-card.intro-offer p {
    color: #445344;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .site-header {
    inset: 12px 12px auto;
    left: 12px;
    right: 12px;
    transform: none;
    width: calc(100% - 24px);
    max-width: none;
    margin-inline: 0;
    border-radius: 18px;
    padding: 8px;
    gap: 12px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 44px;
    place-items: center;
    color: currentColor;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    left: 12px;
    right: 12px;
    display: none;
    width: auto;
    max-height: calc(100svh - 104px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--cream);
    color: var(--forest);
    padding: 10px;
    box-shadow: var(--shadow);
    z-index: 60;
  }

  .main-nav a {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 12px 14px;
  }

  .main-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 42px;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .contact-simple,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .trust-grid,
  .offer-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 240, 0.14);
    padding: 12px 0 0;
  }

  .image-break {
    min-height: 360px;
    padding: 28px 16px;
  }

  .sticky-mobile-cta {
    position: fixed;
    inset: auto 12px 12px;
    z-index: 35;
    display: block;
    transform: translateY(90px);
    transition: transform 220ms ease;
  }

  .sticky-mobile-cta.is-visible {
    transform: translateY(0);
  }

  .sticky-mobile-cta a {
    display: grid;
    min-height: 52px;
    place-items: center;
    border-radius: 999px;
    background: var(--gold);
    color: var(--forest);
    font-weight: 900;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    inset: 10px 10px auto;
    left: 10px;
    right: 10px;
    transform: none;
    width: calc(100% - 20px);
    margin-inline: 0;
    min-height: 66px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .main-nav {
    top: 84px;
    left: 10px;
    right: 10px;
    max-height: calc(100svh - 98px);
  }

  .hero-grid {
    gap: 22px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

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

  .offer-card {
    min-height: 0;
  }
}
