:root {
  --ink: #17221f;
  --forest: #183c34;
  --leaf: #2f7a5f;
  --mint: #d9eee3;
  --paper: #f7faf8;
  --white: #ffffff;
  --line: #d7dfda;
  --coral: #c9523c;
  --gold: #d3a643;
  --shadow: 0 18px 50px rgba(23, 34, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 38px rgba(23, 34, 31, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  font-size: 0.76rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: var(--mint);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: var(--forest);
  background: var(--white);
  font-weight: 800;
}

.site-header.is-scrolled .site-nav .nav-cta,
.site-header.is-open .site-nav .nav-cta {
  color: var(--white);
  background: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 78svh;
  padding: 112px clamp(18px, 4vw, 56px) 44px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 22, 19, 0.86) 0%, rgba(12, 22, 19, 0.58) 45%, rgba(12, 22, 19, 0.22) 100%),
    url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 740px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions,
.contact-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: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button-primary:hover {
  background: #b54531;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.46);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-secondary.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-package {
  color: var(--forest);
  background: var(--mint);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 138px;
  padding: 28px clamp(18px, 3vw, 34px);
  background: var(--white);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 1.06rem;
}

.proof-strip span {
  color: #4d5c56;
  font-size: 0.95rem;
}

.section,
.split-section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.section-logo {
  display: block;
  width: min(440px, 100%);
  height: auto;
  margin-bottom: 26px;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

p {
  color: #40514b;
}

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

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-number {
  display: block;
  margin-bottom: 42px;
  color: var(--leaf);
  font-weight: 900;
}

.service-card p {
  margin: 12px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 40px 0 96px;
}

.image-panel {
  min-height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(23, 34, 31, 0.05), rgba(23, 34, 31, 0.22)),
    url("https://images.unsplash.com/photo-1519682337058-a94d519337bc?auto=format&fit=crop&w=1200&q=82") center/cover;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #34443f;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--white);
  background: var(--leaf);
  border-radius: 50%;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

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

.timeline article,
.package-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline article {
  padding: 24px;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-weight: 900;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 28px;
}

.package-featured {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: var(--shadow);
}

.package-featured p,
.package-featured li {
  color: rgba(255, 255, 255, 0.82);
}

.package-kicker {
  margin: 0 0 12px;
  color: var(--leaf);
  font-weight: 900;
}

.package-featured .package-kicker,
.package-featured .price {
  color: var(--gold);
}

.price {
  margin: 14px 0 16px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.package-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 20px 0 28px;
}

.package-card .button {
  margin-top: auto;
}

.testimonial-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
}

blockquote {
  margin: 0;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

blockquote p {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

blockquote cite {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.compact {
  gap: 10px;
}

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

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

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--forest);
  font-weight: 900;
}

.faq-list p {
  margin-top: 0;
  padding-bottom: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24, 60, 52, 0.96), rgba(24, 60, 52, 0.82)),
    url("https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=1400&q=82") center/cover;
  border-radius: 8px;
}

.contact-section h2 {
  max-width: 720px;
}

.contact-section p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: #56635f;
  font-size: 0.92rem;
}

.site-footer p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.footer-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.site-footer a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 940px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav .nav-cta {
    margin-left: 0;
    color: var(--white);
    background: var(--forest);
  }

  .hero {
    align-items: center;
    min-height: 78svh;
    padding: 98px 18px 40px;
    background:
      linear-gradient(180deg, rgba(12, 22, 19, 0.58) 0%, rgba(12, 22, 19, 0.9) 74%),
      url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1200&q=82") center/cover;
  }

  .proof-strip,
  .service-grid,
  .timeline,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-section,
  .split-section,
  .testimonial-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .image-panel {
    min-height: 380px;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .proof-strip,
  .service-grid,
  .timeline,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
  }

  .section {
    padding: 68px 0;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 24px;
  }

  .package-card {
    min-height: auto;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 12px;
  }
}
