:root {
  --ink: #1d1b18;
  --muted: #665f57;
  --paper: #f8f4ee;
  --white: #ffffff;
  --line: #ded5cb;
  --green: #1f6f5b;
  --green-dark: #134437;
  --gold: #b0834f;
  --clay: #c65f43;
  --shadow: 0 24px 70px rgba(39, 31, 22, 0.14);
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(248, 244, 238, 0.92);
  border-bottom: 1px solid rgba(102, 95, 87, 0.16);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: clamp(190px, 25vw, 280px);
  height: auto;
  border-radius: 8px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
}

.top-nav a,
.text-link,
.site-footer a {
  text-decoration: none;
}

.top-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--green);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 6vw, 86px) clamp(18px, 5vw, 76px) 54px;
  background:
    linear-gradient(120deg, rgba(31, 111, 91, 0.13), transparent 42%),
    linear-gradient(315deg, rgba(198, 95, 67, 0.12), transparent 36%),
    var(--paper);
}

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

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary:hover,
.package-button:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero-panel {
  align-self: center;
  aspect-ratio: 3 / 2;
  max-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(102, 95, 87, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.intro-section,
.register-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  background: var(--white);
}

.intro-section p:last-child,
.form-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.packages-section,
.process-section {
  background: #edf5f0;
}

.package-grid,
.services-grid,
.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.package-card,
.services-grid article {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(39, 31, 22, 0.08);
}

.package-card.featured {
  border-color: rgba(31, 111, 91, 0.45);
  box-shadow: 0 24px 60px rgba(31, 111, 91, 0.16);
}

.package-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.price {
  flex: 0 0 auto;
  margin: 0;
  color: var(--green);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 8px;
}

.package-card p,
.services-grid p {
  color: var(--muted);
}

.package-button {
  width: 100%;
  margin-top: 24px;
}

.services-section,
.disclosure-section {
  background: var(--paper);
}

.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.addon-row:first-of-type {
  border-top: 1px solid var(--line);
}

.addon-row strong {
  color: var(--clay);
  font-size: 1.18rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(31, 111, 91, 0.18);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.process-list span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.86rem;
}

.registration-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.field-group {
  display: grid;
  gap: 7px;
}

label,
legend {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfc4b7;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid #d8cec2;
  border-radius: 8px;
}

.choice {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.choice input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.disclosure-choice {
  color: var(--ink);
}

.form-submit {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  color: var(--green);
  font-weight: 800;
}

.disclosure-grid p {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.source-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.source-note a {
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--green-dark);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

@media (max-width: 920px) {
  .hero,
  .intro-section,
  .register-section,
  .package-grid,
  .services-grid,
  .disclosure-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-height: 560px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 4rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .process-list {
    grid-template-columns: 1fr;
  }
}
