:root {
  --ink: #17201f;
  --muted: #64706b;
  --paper: #f7f4ef;
  --paper-alt: #ede8df;
  --surface: #ffffff;
  --line: #ded8cf;
  --teal: #11635d;
  --teal-dark: #0d4544;
  --clay: #a85d42;
  --gold: #d4a552;
  --shadow: 0 24px 70px rgba(20, 25, 24, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 244, 239, 0.94);
  box-shadow: 0 10px 30px rgba(20, 25, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--surface);
  background: linear-gradient(135deg, var(--teal), #1f8178);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 99, 93, 0.25);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 64px) 42px;
  color: var(--surface);
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 28, 29, 0.84) 0%, rgba(15, 31, 30, 0.62) 42%, rgba(18, 23, 22, 0.14) 100%),
    linear-gradient(0deg, rgba(12, 20, 20, 0.54) 0%, rgba(12, 20, 20, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding-bottom: 10vh;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd997;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.4vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  color: var(--surface);
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(17, 99, 93, 0.22);
}

.button.primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 20px 42px rgba(17, 99, 93, 0.28);
}

.button.secondary {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.14);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  width: min(300px, calc(100% - 36px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  color: #ffd997;
  font-weight: 900;
}

.hero-panel strong {
  color: rgba(255, 255, 255, 0.93);
}

.section {
  padding: clamp(64px, 10vw, 126px) clamp(18px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) 1fr;
  gap: clamp(24px, 5vw, 76px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.intro p,
.why-copy p,
.contact-copy p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-card,
.steps article,
.package-card,
.why-points div,
.contact-form {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(20, 25, 24, 0.05);
}

.service-card {
  min-height: 246px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 99, 93, 0.28);
  box-shadow: var(--shadow);
}

.service-card p,
.steps p,
.package-card p,
.package-card li,
.why-points span {
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal);
  font-weight: 900;
}

.why {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    radial-gradient(circle at 85% 12%, rgba(212, 165, 82, 0.16), transparent 30%),
    var(--ink);
  color: var(--surface);
}

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

.why-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.why-points {
  display: grid;
  gap: 14px;
}

.why-points div {
  padding: 22px;
  color: var(--ink);
  background: var(--surface);
}

.why-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.process {
  background: #eceee8;
}

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

.steps article {
  min-height: 230px;
  padding: 24px;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--surface);
  background: var(--clay);
  border-radius: 50%;
  font-weight: 900;
}

.packages {
  background: var(--surface);
}

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

.package-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-card.featured {
  border-color: rgba(17, 99, 93, 0.34);
  background: linear-gradient(180deg, #ffffff, #f4fbf9);
}

.package-kicker {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
}

.package-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.package-card a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 850;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(64px, 10vw, 126px) clamp(18px, 5vw, 64px);
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
}

.contact h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.contact-copy a {
  color: var(--teal);
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form .full,
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(17, 99, 93, 0.68);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(17, 99, 93, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1100px) {
  .service-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .intro,
  .why,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 740px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 10px;
    color: inherit;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid currentColor;
    border-radius: var(--radius);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .hero {
    min-height: 92svh;
    padding: 104px 18px 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 28, 29, 0.88), rgba(11, 28, 29, 0.56)),
      linear-gradient(0deg, rgba(12, 20, 20, 0.72), rgba(12, 20, 20, 0.08));
  }

  .hero-content {
    padding-bottom: 150px;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    bottom: 24px;
    width: auto;
  }

  .section,
  .contact {
    padding: 58px 18px;
  }

  .service-grid,
  .steps,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .steps article {
    min-height: auto;
  }
}
