:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #66716b;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --jade: #1d6a58;
  --jade-dark: #0f4a3e;
  --cinnabar: #aa3f32;
  --gold: #c69642;
  --line: #e5e0d3;
  --shadow: 0 20px 60px rgba(23, 32, 27, 0.14);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, 0.9);
  border-bottom: 1px solid rgba(229, 224, 211, 0.75);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: 160px;
  height: 48px;
}

.nav-links {
  color: #3f4a44;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 2px;
}

.nav-cta {
  color: var(--jade-dark);
  font-weight: 750;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 20, 16, 0.82) 0%, rgba(10, 20, 16, 0.62) 42%, rgba(10, 20, 16, 0.16) 100%),
    linear-gradient(0deg, rgba(10, 20, 16, 0.28), rgba(10, 20, 16, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 90px);
  padding: 80px 0 118px;
  color: white;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary,
.price-card .button {
  background: var(--cinnabar);
  color: white;
  box-shadow: 0 12px 30px rgba(170, 63, 50, 0.24);
}

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

.button.full {
  width: 100%;
  margin-top: auto;
}

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

.trust-strip div {
  padding: 22px clamp(18px, 4vw, 56px);
  background: #f5f1e8;
}

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

.trust-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
}

.intro p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 28px;
}

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

.pricing-grid.expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card,
.compliance-grid article,
.steps li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(23, 32, 27, 0.06);
}

.price-card.featured {
  border-color: rgba(29, 106, 88, 0.46);
  box-shadow: var(--shadow);
}

.price {
  margin: 18px 0 8px;
  color: var(--jade-dark);
  font-size: 2.4rem;
  font-weight: 850;
  line-height: 1;
}

.price-card p:not(.price-label):not(.price) {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 26px;
  padding-left: 18px;
  color: #3e4842;
}

.process {
  width: min(1280px, calc(100% - 36px));
}

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

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

.steps span {
  display: block;
  margin-bottom: 36px;
  color: var(--cinnabar);
  font-weight: 850;
}

.steps p,
.compliance-grid p,
.research-table span {
  color: var(--muted);
}

.research {
  padding-top: 0;
}

.research-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.research-table > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.research-table > div:last-child {
  border-bottom: 0;
}

.booking {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 4vw, 56px);
  background: #edf1ec;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 82px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
}

.booking-panel > div > p:last-child {
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(23, 32, 27, 0.08);
}

label {
  display: grid;
  gap: 7px;
  color: #3e4842;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4ccbc;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.booking-form .button.secondary {
  color: var(--jade-dark);
  border-color: rgba(29, 106, 88, 0.28);
  background: #f7f5ee;
}

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

.compliance-grid article {
  padding: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #65716b;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
  }

  .intro,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .steps,
  .compliance-grid,
  .pricing-grid.expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    display: grid;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    margin: 0 auto;
    padding-bottom: 84px;
  }

  .trust-strip,
  .pricing-grid,
  .steps,
  .compliance-grid,
  .pricing-grid.expanded {
    grid-template-columns: 1fr;
  }

  .research-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-card,
  .steps li {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }
}
