:root {
  --forest: #163b2b;
  --forest-2: #24563f;
  --leaf: #6f9b57;
  --sage: #e8efe2;
  --cream: #fff9ef;
  --sand: #ead8bd;
  --sun: #f3b24d;
  --ink: #17211b;
  --muted: #647067;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(22, 59, 43, 0.15);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.section-padding {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 16px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 249, 239, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(22, 59, 43, 0.08);
}

.nav-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.site-header.scrolled .brand {
  color: var(--forest);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--sun);
  color: var(--forest);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  font-size: 0.78rem;
  opacity: 0.85;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.site-header.scrolled .site-nav {
  background: rgba(22, 59, 43, 0.06);
}

.site-nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 12px 16px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-header.scrolled .site-nav a {
  color: var(--forest);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

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

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 14px;
  background: var(--sun);
  color: var(--forest);
  font-size: 1.4rem;
  padding: 10px 14px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 130px 20px 80px;
  background: linear-gradient(120deg, rgba(15, 42, 30, 0.78), rgba(15, 42, 30, 0.28)), url("martin-dalsgaard-sGV1QDMM0Gg-unsplash.jpg") center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  text-align: center;
}

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

.eyebrow.dark {
  color: var(--leaf);
}

.hero h1,
.intro h2,
.section-heading h2,
.split-content h2,
.booking-copy h2,
.faq-grid h2,
.testimonial-wrap h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.92;
}

.hero-text {
  width: min(690px, 100%);
  margin: 28px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--sun);
  color: var(--forest);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-badges span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.intro h2,
.section-heading h2,
.split-content h2,
.booking-copy h2,
.faq-grid h2,
.testimonial-wrap h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
}

.intro p:last-child,
.section-heading p,
.split-content p,
.booking-copy p,
.faq-grid > div > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.services-section {
  background: var(--sage);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cards,
.steps {
  display: grid;
  gap: 24px;
}

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

.service-card,
.step,
.mini-card,
.faq-list details {
  background: var(--white);
  border: 1px solid rgba(22, 59, 43, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
}

.featured-card {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-12px);
}

.featured-card p,
.featured-card li {
  color: rgba(255, 255, 255, 0.78);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  background: var(--sage);
  margin-bottom: 22px;
}

.featured-card .service-icon {
  background: rgba(255, 255, 255, 0.12);
}

.popular {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 900;
}

.service-card h3,
.step h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: inherit;
}

.service-card p,
.step p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 8px 0;
  color: var(--muted);
  border-top: 1px solid rgba(22, 59, 43, 0.08);
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--cream);
}

.split-image {
  background: url("julia-vivcharyk-Z-M1sKVktGM-unsplash.jpg") center/cover no-repeat;
  min-height: 540px;
}

.split-content {
  padding: 90px clamp(30px, 6vw, 90px);
  align-self: center;
}

.check-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.check-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-list span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--leaf);
  color: var(--white);
  font-weight: 900;
}

.check-list p {
  margin: 4px 0 0;
}

.process-section {
  background: var(--forest);
  color: var(--white);
}

.process-section .section-heading h2 {
  color: var(--white);
}

.step {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.step span {
  display: inline-block;
  margin-bottom: 46px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.2rem;
  color: var(--sun);
}

.step p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

.testimonial-band {
  padding: 70px 0;
  color: var(--white);
  background: linear-gradient(120deg, rgba(22, 59, 43, 0.95), rgba(36, 86, 63, 0.85)), url("alvan-nee-1VgfQdCuX-4-unsplash.jpg") center/cover no-repeat;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 34px;
  align-items: center;
}

.testimonial-wrap h2 {
  color: var(--white);
}

.testimonial-wrap p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.faq-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

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

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--forest);
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.booking-section {
  background: var(--sage);
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.mini-card {
  margin-top: 28px;
  padding: 22px;
  line-height: 1.7;
  color: var(--muted);
}

.mini-card strong {
  color: var(--forest);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--forest);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 59, 43, 0.14);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
  background: #fbfbf7;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(111, 155, 87, 0.16);
}

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

.site-footer {
  padding: 60px 0 30px;
  background: var(--forest);
  color: var(--white);
}

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

.footer-brand {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.site-footer a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
}

.copyright {
  width: min(1120px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: linear-gradient(120deg, rgba(22, 59, 43, 0.92), rgba(36, 86, 63, 0.72)), url("joe-caione-qO-PIF84Vxg-unsplash.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.thank-you-card {
  width: min(720px, 100%);
  padding: clamp(32px, 6vw, 70px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.thank-you-card h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
}

.thank-you-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    width: min(320px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    background: rgba(255, 249, 239, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-header.scrolled .site-nav a {
    color: var(--forest);
  }

  .intro-grid,
  .split-feature,
  .faq-grid,
  .booking-grid,
  .testimonial-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .featured-card {
    transform: none;
  }

  .booking-copy {
    position: static;
  }

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

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-wrap,
  .copyright {
    width: min(100% - 28px, 1120px);
  }

  .section-padding {
    padding: 70px 0;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .gallery-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .service-card,
  .booking-form,
  .step,
  .mini-card,
  .faq-list details {
    border-radius: 22px;
  }
}


.form-status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status.error {
  color: #a52816;
}

.form-status.success {
  color: #1f6f43;
}

.booking-form button:disabled {
  cursor: wait;
  opacity: 0.75;
}
