:root {
  --bg: #f7f3ec;
  --ink: #1f2933;
  --muted: #5d6773;
  --card: #ffffff;
  --line: #ded6ca;
  --brand: #263f32;
  --brand-dark: #17271f;
  --accent: #b8894d;
  --soft: #efe7db;
  --shadow: 0 18px 45px rgba(31, 41, 51, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.narrow {
  width: min(840px, calc(100% - 40px));
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 236, 0.88);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  padding: 90px 0 56px;
}

.hero-centered {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0;
}

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

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  margin: 26px 0 10px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.lead {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-centered .lead {
  margin-left: auto;
  margin-right: auto;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--brand);
  box-shadow: var(--shadow);
}

.button.secondary {
  color: var(--brand);
  border: 1px solid var(--brand);
  background: transparent;
}

.section-pad {
  padding: 56px 0;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.package-card {
  padding: 30px;
}

.package-card.featured {
  border-color: rgba(38, 63, 50, 0.55);
}

.package-summary {
  color: var(--muted);
  font-size: 1.08rem;
}

.rule-box {
  margin: 24px 0;
  padding: 16px;
  border-radius: 18px;
  background: var(--soft);
}

.rule-box.dark {
  color: #fff;
  background: var(--brand);
}

.check-list,
.x-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.check-list li::marker {
  content: "✓  ";
  color: var(--brand);
  font-weight: 900;
}

.x-list li::marker {
  content: "—  ";
  color: var(--accent);
  font-weight: 900;
}

.soft-section {
  background: var(--soft);
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.notice-card {
  max-width: 860px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.notice-card p:last-child,
.card p:last-child,
.two-column p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner a {
  text-decoration: none;
}

@media (max-width: 760px) {
  .site-header,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-centered {
    text-align: left;
    place-items: start;
  }

  .hero-centered .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .button-row {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

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

/* Form Inputs */
input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-top: 6px;
  font-size: 0.95rem;
}

input:focus {
  outline: none;
  border-color: var(--brand);
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}

.radio-group {
  display: grid;
  gap: 10px;
  margin: 10px 0 20px;
}

.radio-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* ← this fixes the centering issue */
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: border 0.15s ease, background 0.15s ease;
  text-align: left;              /* ← prevents text drifting */
}

.radio-option input[type="radio"] {
  width: auto;
  margin: 0;
  flex: 0 0 auto;
}

.radio-option span {
  flex: 0 0 auto;
}

.radio-option:has(input:checked) {
  border-color: var(--brand);
  background: #f9f6f1;
}

textarea {
  resize: vertical;
  min-height: 140px;
}
