:root {
  --paper: #fbf8ef;
  --paper-strong: #f3eee1;
  --ink: #173c2a;
  --ink-soft: #486050;
  --gold: #bf8a28;
  --line: #d8d0bf;
  --forest: #173c2a;
  --forest-deep: #0d2b1c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; line-height: 1.55; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.hero { position: relative; min-height: 700px; overflow: hidden; color: white; }
.hero-video, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; }
.hero-overlay { background: rgba(9, 34, 22, .6); }
.hero-shell { position: relative; z-index: 1; width: min(1160px, calc(100% - 40px)); min-height: 700px; margin: auto; display: flex; flex-direction: column; }
.site-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.brand img { display: block; width: 72px; height: 72px; object-fit: contain; }
.language-links { display: flex; gap: 3px; padding: 4px; border: 1px solid rgba(255,255,255,.42); background: rgba(10,32,21,.35); }
.language-links a { min-width: 39px; padding: 7px 9px; color: white; text-decoration: none; text-align: center; font-size: .78rem; font-weight: 700; }
.language-links a[aria-current="page"] { background: var(--paper); color: var(--forest); }
.hero-copy { width: min(760px, 100%); margin: auto; padding: 76px 0 116px; text-align: center; }
.eyebrow { margin: 0 0 14px; color: #f0ca77; font-size: .76rem; font-weight: 700; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.08; }
h1 { margin-bottom: 20px; font-size: clamp(2.7rem, 6vw, 5.4rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.75rem); }
h3 { margin-bottom: 12px; font-size: 1.45rem; }
.hero-copy p:not(.eyebrow) { max-width: 690px; margin: 0 auto 28px; font-size: clamp(1.02rem, 2vw, 1.23rem); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 22px; border: 1px solid transparent; background: var(--forest); color: white; font-weight: 700; text-decoration: none; cursor: pointer; }
.button:hover { background: #24563d; }
.button.gold { background: #e5bd68; color: var(--forest-deep); }
.button.gold:hover { background: #efcf88; }
.button.full { width: 100%; }

.section { padding: 92px 0; }
.section.alt { background: var(--paper-strong); }
.container { width: min(1160px, calc(100% - 40px)); margin: auto; }
.section-kicker { margin: 0 0 10px; color: var(--gold); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.section-lead { max-width: 680px; margin: -4px 0 36px; color: var(--ink-soft); font-size: 1.04rem; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.step { min-height: 222px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step-number { display: block; margin-bottom: 26px; color: var(--gold); font-size: .78rem; font-weight: 700; }
.step p { margin: 0; color: var(--ink-soft); }

.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 16px; }
.plan { position: relative; display: flex; flex-direction: column; min-height: 570px; padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.plan.featured { border-color: var(--forest); background: var(--forest); color: white; }
.plan.featured h3, .plan.featured .price, .plan.featured .plan-summary { color: white; }
.plan.featured li, .plan.featured .plan-note { color: #e6eee8; }
.badge { display: inline-block; align-self: flex-start; margin: -8px 0 18px; color: var(--gold); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.plan-head { display: flex; gap: 12px; align-items: start; justify-content: space-between; }
.price { color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: 2rem; white-space: nowrap; }
.plan-summary { min-height: 54px; margin: 10px 0 18px; color: var(--ink-soft); }
.plan ul { margin: 0 0 22px; padding-left: 20px; }
.plan li { margin: 7px 0; color: var(--ink-soft); }
.plan-note { margin: auto 0 18px; color: var(--ink-soft); font-size: .86rem; }
.plan .button { margin-top: auto; background: transparent; color: var(--forest); border-color: var(--line); }
.plan.featured .button { background: #e5bd68; border-color: #e5bd68; color: var(--forest-deep); }

.includes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 56px; }
.includes-item { padding: 18px 0; border-top: 1px solid var(--line); }
.includes-item h3 { margin-bottom: 6px; font-size: 1.16rem; }
.includes-item p { margin: 0; color: var(--ink-soft); }
.purchase-note { max-width: 740px; margin: 34px 0 0; padding: 18px 20px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.45); color: var(--ink-soft); }

.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
details { border-top: 1px solid var(--line); padding: 18px 0; }
summary { cursor: pointer; font-weight: 700; }
details p { margin: 10px 0 0; color: var(--ink-soft); }

.site-footer { padding: 38px 0; background: var(--forest-deep); color: #dbe4dc; }
.footer-inner { width: min(1160px, calc(100% - 40px)); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-inner img { width: 58px; height: 58px; object-fit: contain; filter: grayscale(1) brightness(3); opacity: .55; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; font-size: .92rem; }
.footer-links a { color: #dbe4dc; text-decoration: none; }

.brief-page { min-height: 100vh; background: var(--paper-strong); }
.brief-header { width: min(760px, calc(100% - 40px)); margin: auto; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; }
.brief-header img { width: 64px; height: 64px; object-fit: contain; }
.brief-card { width: min(760px, calc(100% - 40px)); margin: 24px auto 70px; padding: clamp(24px, 5vw, 48px); border: 1px solid var(--line); background: var(--paper); }
.brief-card h1 { color: var(--forest); font-size: clamp(2.2rem, 5vw, 4rem); }
.brief-card > p { color: var(--ink-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.wide { grid-column: 1 / -1; }
.field label, .legend { font-size: .9rem; font-weight: 700; }
input, select, textarea { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid #c8c0af; border-radius: 0; background: #fffef9; color: var(--ink); }
textarea { min-height: 110px; resize: vertical; }
fieldset { grid-column: 1 / -1; margin: 0; padding: 0; border: 0; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 10px; }
.check { display: flex; gap: 9px; align-items: center; color: var(--ink-soft); font-size: .92rem; }
.check input { width: 17px; min-height: auto; height: 17px; margin: 0; }
.consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: start; margin: 8px 0 4px; color: var(--ink-soft); font-size: .86rem; }
.consent input { width: 17px; min-height: auto; height: 17px; margin-top: 2px; }
.form-note { margin: 14px 0 0; color: var(--ink-soft); font-size: .86rem; }

@media (max-width: 760px) {
  .hero, .hero-shell { min-height: 610px; }
  .hero-shell, .container, .footer-inner { width: min(100% - 32px, 1160px); }
  .hero-copy { padding: 64px 0 82px; }
  .section { padding: 64px 0; }
  .steps, .plans, .includes, .faq { grid-template-columns: 1fr; }
  .step { min-height: 0; }
  .plan { min-height: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
  .form-grid, .check-grid { grid-template-columns: 1fr; }
  .field.wide, fieldset, .consent { grid-column: auto; }
}
