:root {
  --ink: #14211d;
  --green: #1f5c4d;
  --green-2: #2d7866;
  --gold: #b88636;
  --canada-red: #c5282f;
  --coral: #c86f4a;
  --blue: #31566d;
  --ivory: #fbf8ef;
  --cream: #f1ead9;
  --line: #e1d7bf;
  --muted: #66736f;
  --soft: #8d9893;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 33, 29, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1180px;
  --gut: clamp(1.1rem, 4vw, 3.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

img { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--coral); }

.wrap {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 239, 0.9);
  border-bottom: 1px solid rgba(225, 215, 191, 0.9);
  backdrop-filter: blur(14px) saturate(140%);
}
.site-head .wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
  white-space: nowrap;
}
.brand .dot { color: var(--gold); }
.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.2vw, 1.7rem);
}
.nav a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav a.active { color: var(--green); }
.nav .cta {
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  padding: 0.52rem 1rem;
}
.nav .cta:hover {
  background: var(--green);
  color: var(--ivory);
}

section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-tight { padding: clamp(2.8rem, 6vw, 4.6rem) 0; }
.band {
  background: var(--ink);
  color: var(--ivory);
}
.soft-band {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.03;
}
.band h1, .band h2, .band h3 { color: var(--ivory); }
p { margin: 0; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}
.band .lede { color: #c6d0ca; }
.accent { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font: 800 0.88rem/1 var(--sans);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--green); color: var(--ivory); }
.btn-solid:hover { background: var(--ink); color: var(--ivory); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #c99a4d; color: var(--ink); }
.btn-ghost { border-color: var(--green); color: var(--green); background: transparent; }
.btn-ghost:hover { background: var(--green); color: var(--ivory); }
.band .btn-ghost { border-color: var(--gold); color: var(--gold); }
.band .btn-ghost:hover { background: var(--gold); color: var(--ink); }

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8.8vw, 7.4rem);
  letter-spacing: 0;
}
.hero h1 span { color: var(--canada-red); }
.hero .lede {
  max-width: 42rem;
  margin-top: 1.3rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  color: var(--muted);
  background: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  font-weight: 700;
}

.event-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.event-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--cream), #e8f0ed);
  display: grid;
  place-items: end center;
}
.event-image img {
  width: min(82%, 340px);
  max-height: 112%;
  object-fit: contain;
  clip-path: inset(0 0 11% 0);
  margin-bottom: -8%;
}
.event-info { padding: 1.25rem; }
.event-info h2 { font-size: 1.55rem; }
.event-meta {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.meta-row strong { color: var(--ink); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
}
.section-head .lede { max-width: 38rem; }

.grid { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 1.7rem);
}
.motion-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(20, 33, 29, 0.06);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.motion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 0%), rgba(184, 134, 54, 0.17), transparent 15rem),
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.34) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 0.25s ease, transform 0.35s ease;
}
.motion-card:hover,
.motion-card.is-dynamic {
  border-color: rgba(184, 134, 54, 0.75);
  box-shadow: 0 28px 70px rgba(20, 33, 29, 0.13);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-8px);
}
.motion-card:hover::after,
.motion-card.is-dynamic::after {
  opacity: 1;
  transform: translateX(0);
}
.motion-card > * {
  position: relative;
  z-index: 1;
}
.motion-card:hover .card-link { color: var(--gold); }
.card h3 { font-size: 1.55rem; }
.card p { margin-top: 0.75rem; color: var(--muted); }
.card-link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(20, 33, 29, 0.08);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}
.story-panel h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 5vw, 3.4rem);
}
.story-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.7;
}
.story-panel p + p { margin-top: 1rem; }

.official-context {
  margin-top: clamp(2rem, 6vw, 4rem);
}
.official-context .section-head { margin-bottom: 1.5rem; }
.official-context .section-head h2 { max-width: 14ch; }
.official-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(20, 33, 29, 0.08);
}
.official-table table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}
.official-table th,
.official-table td {
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}
.official-table th {
  color: var(--green);
  background: rgba(241, 234, 217, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.official-table tr:last-child td { border-bottom: 0; }
.official-table td {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}
.official-table td strong {
  display: block;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.official-table td span {
  display: block;
  color: var(--ink);
  font-weight: 700;
}
.official-table td a {
  display: inline-flex;
  margin-top: 0.65rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.source-note {
  margin-top: 1rem;
  color: var(--soft);
  font-size: 0.85rem;
  line-height: 1.5;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}
.stat {
  padding: clamp(1rem, 3vw, 1.5rem);
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline {
  border-top: 1px solid rgba(255,255,255,0.16);
}
.time-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  padding: 1.2rem 0;
}
.time {
  color: var(--gold);
  font-weight: 800;
}
.time-row h3 {
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.time-row p {
  margin-top: 0.25rem;
  color: #c6d0ca;
}

.portrait-row {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.portrait-frame {
  width: 280px;
  height: 280px;
  border: 5px solid var(--gold);
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
}
.portrait-frame .portrait {
  width: 122%;
  max-width: none;
  height: 122%;
  object-fit: cover;
  transform: translate(-9%, -7%);
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: steps;
}
.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  counter-increment: steps;
}
.step::before {
  content: counter(steps, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ivory);
  font-weight: 800;
}
.step h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
}
.step p { margin-top: 0.3rem; color: var(--muted); }

.pricing-hero {
  text-align: center;
  padding-bottom: clamp(2rem, 6vw, 4rem);
  background:
    radial-gradient(circle at 18% 10%, rgba(184, 134, 54, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}
.pricing-hero h1 {
  max-width: 13ch;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: 0;
}
.pricing-hero .lede {
  max-width: 48rem;
  margin: 1.2rem auto 0;
  color: var(--muted);
}
.billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  margin-top: 1.8rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(20, 33, 29, 0.08);
}
.billing-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 0.6rem 1.05rem;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.billing-toggle button:hover { transform: translateY(-1px); }
.billing-toggle button:focus-visible {
  outline: 3px solid rgba(184, 134, 54, 0.45);
  outline-offset: 2px;
}
.billing-toggle button.active {
  background: var(--green);
  color: var(--ivory);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.pricing-choice-section.is-hidden { display: none; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 12px 35px rgba(20, 33, 29, 0.07);
  color: var(--ink);
  overflow: hidden;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 0%), rgba(184, 134, 54, 0.18), transparent 17rem),
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.34) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 0.25s ease, transform 0.35s ease;
}
.price-card:hover,
.price-card.is-dynamic {
  border-color: rgba(184, 134, 54, 0.75);
  box-shadow: 0 28px 70px rgba(20, 33, 29, 0.14);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-8px);
}
.price-card:hover::after,
.price-card.is-dynamic::after {
  opacity: 1;
  transform: translateX(0);
}
.price-card.featured {
  border: 2px solid var(--green);
  padding-top: 4.65rem;
  box-shadow: 0 24px 60px rgba(31, 92, 77, 0.18);
}
.price-card.featured:hover,
.price-card.featured.is-dynamic {
  border-color: var(--gold);
  box-shadow: 0 30px 80px rgba(31, 92, 77, 0.22);
}
.badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 14px 14px 0 0;
  background: var(--green);
  color: var(--ivory);
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0;
}
.tag {
  min-height: 3.2em;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}
.save {
  display: inline-flex;
  align-self: flex-start;
  margin: 1rem 0 0.6rem;
  border-radius: 999px;
  background: rgba(184, 134, 54, 0.16);
  color: #805d23;
  padding: 0.35rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease;
}
.price-card:hover .save { transform: translateY(-1px); background: rgba(184, 134, 54, 0.24); }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: 0.2rem;
}
.price-amount .cur { color: var(--muted); font-weight: 900; }
.price-amount .now {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(2.9rem, 5vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
  transition: color 0.22s ease, transform 0.22s ease;
}
.price-card:hover .price-amount .now { color: var(--green); transform: translateY(-1px); }
.price-note {
  min-height: 2.8em;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.feature-label {
  margin-top: 1.1rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feat {
  flex: 1;
  margin: 0.5rem 0 1.5rem;
  padding: 0;
  list-style: none;
}
.feat li {
  position: relative;
  border-top: 1px solid var(--cream-line, var(--line));
  padding: 0.7rem 0 0.7rem 1.65rem;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.35;
}
.feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.88rem;
  width: 8px;
  height: 13px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(42deg);
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.price-card:hover .feat li::before {
  border-color: var(--gold);
  transform: rotate(42deg) scale(1.08);
}
.price-card .btn {
  width: 100%;
  min-height: 50px;
  border-radius: 8px;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.price-card .btn-solid {
  background: var(--green);
  color: var(--ivory);
}
.price-card .btn-solid:hover {
  background: var(--ink);
  color: var(--ivory);
}
.price-card .btn-ghost {
  border-color: var(--green);
  color: var(--green);
  background: var(--white);
}
.price-card .btn-ghost:hover {
  background: var(--green);
  color: var(--ivory);
}

.pricing-choice-section:not(.is-hidden) .price-card,
.pricing-choice-section:not(.is-hidden) .card {
  animation: priceIn 0.42s ease backwards;
}
.pricing-choice-section:not(.is-hidden) .price-card:nth-child(2) { animation-delay: 0.05s; }
.pricing-choice-section:not(.is-hidden) .price-card:nth-child(3) { animation-delay: 0.1s; }

@keyframes priceIn {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.compare {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}
.compare table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.compare th,
.compare td {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem;
  text-align: left;
}
.compare th {
  color: var(--green);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare tr:last-child td { border-bottom: 0; }

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem 1.1rem;
}
.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}
.faq p { margin-top: 0.7rem; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.phone-big {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1;
}
.contact-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-line { color: var(--muted); }
.qr {
  width: 230px;
  height: 230px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
}

.site-foot {
  background: #101a17;
  color: #c6d0ca;
  padding: 2.6rem 0;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.foot-brand {
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 700;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
}
.foot-links a { color: #c6d0ca; font-size: 0.88rem; }
.foot-meta,
.disclaimer {
  margin-top: 1.2rem;
  max-width: 760px;
  color: #9ca8a2;
  font-size: 0.88rem;
}
.disclaimer a { color: var(--gold); }

.reveal,
.js-reveal .reveal,
.js-reveal .reveal.in {
  opacity: 1;
}

@media (max-width: 920px) {
  .hero { min-height: auto; }
  .hero-grid,
  .section-head,
  .story-panel,
  .portrait-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .price-grid,
  .grid-3,
  .grid-2,
  .faq {
    grid-template-columns: 1fr;
  }
  .event-panel { max-width: 460px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-head .wrap { align-items: flex-start; padding-top: 0.8rem; padding-bottom: 0.8rem; }
  .nav { justify-content: flex-end; flex-wrap: wrap; gap: 0.6rem 0.9rem; }
  .nav a { font-size: 0.7rem; }
  .nav .cta { padding: 0.4rem 0.65rem; }
  .hero h1 { font-size: clamp(2.85rem, 16vw, 4.6rem); }
  .time-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .portrait-frame { width: 230px; height: 230px; }
}
