/* ══════════════════════════════════════════════
   Architect AI — Static Site Styles
   Design system matching raymondteran.me
   ══════════════════════════════════════════════ */

:root {
  --color-bg: #FDFDFB;
  --color-bg-alt: rgba(245, 244, 241, 0.4);
  --color-surface: #FFFFFF;
  --color-primary: #1A1A1A;
  --color-secondary: rgba(26, 26, 26, 0.60);
  --color-accent: #2D2D2D;
  --color-accent-light: #E8E8E8;
  --color-border: rgba(26, 26, 26, 0.08);
  --color-border-subtle: rgba(26, 26, 26, 0.05);
  --color-error: #8B3A3A;
  --color-gold: #B8A078;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & Base ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Background Watermark ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.018;
  background-image:
    linear-gradient(var(--color-primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-primary) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 253, 251, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.03);
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: rgba(26, 26, 26, 0.65);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.3;
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--color-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-primary);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 120px;
  text-align: center;
  margin-bottom: 120px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-ornament {
  width: 120px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.08;
  margin: 40px auto;
}

.hero-gold-line {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  opacity: 0.50;
  margin: 0 auto 40px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 36px;
  color: var(--color-primary);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-primary);
  opacity: 0.80;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(26, 26, 26, 0.85);
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.9;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  padding: 20px 60px;
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.4s ease, color 0.4s ease, letter-spacing 0.4s ease;
}

.hero-cta:hover {
  background: var(--color-accent);
  color: #fff;
  letter-spacing: 0.18em;
}

.hero-secondary {
  display: block;
  margin-top: 24px;
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.50);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.hero-secondary:hover {
  color: var(--color-primary);
}

/* ── Sections ── */
.section {
  padding: 0 40px;
  margin-bottom: 180px;
}

.section-alt {
  background: var(--color-bg-alt);
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.60);
  margin-bottom: 40px;
  font-weight: 400;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.80);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 70px;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--color-border);
  margin-bottom: 70px;
}

/* ── Assessment Bullets ── */
.assessment-list {
  max-width: 640px;
  padding-left: 40px;
}

.assessment-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.assessment-item:first-child {
  border-top: 1px solid var(--color-border);
}

.assessment-bullet {
  width: 4px;
  height: 4px;
  min-width: 4px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.35;
  margin-top: 0.6em;
}

.assessment-item p {
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: -0.005em;
}

.section-cta {
  margin-top: 56px;
}

.section-cta a {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.4s ease, color 0.4s ease, letter-spacing 0.4s ease;
}

.section-cta a:hover {
  background: var(--color-accent);
  color: #fff;
  letter-spacing: 0.18em;
}

/* ── Form ── */
.form-container {
  max-width: 520px;
}

.form-group {
  margin-bottom: 40px;
}

.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.60);
  margin-bottom: 12px;
  font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.7;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--color-accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(26, 26, 26, 0.30);
  font-weight: 300;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-width='1' fill='none' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-bottom-color: var(--color-error);
}

.form-error {
  font-size: 0.72rem;
  color: var(--color-error);
  margin-top: 8px;
  display: none;
  font-weight: 300;
}

.form-error.visible {
  display: block;
}

.form-submit {
  display: inline-block;
  padding: 20px 60px;
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, letter-spacing 0.4s ease;
  margin-top: 16px;
}

.form-submit:hover {
  background: var(--color-accent);
  color: #fff;
  letter-spacing: 0.18em;
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Focus-visible (keyboard navigation) ── */
.hero-cta:focus-visible,
.section-cta a:focus-visible,
.form-submit:focus-visible,
.hero-secondary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* ── Form Success State ── */
.form-success {
  text-align: center;
  padding: 48px 0;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.form-success p {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.80);
  font-weight: 300;
  line-height: 1.8;
}

/* ── Thank You ── */
.thankyou {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 40px 80px;
  text-align: center;
}

.thankyou-content {
  max-width: 560px;
}

.thankyou h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 36px;
  color: var(--color-primary);
}

.thankyou p {
  font-size: 1.05rem;
  color: rgba(26, 26, 26, 0.85);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.9;
  font-weight: 300;
}

.thankyou-spam-note {
  font-size: 0.82rem !important;
  color: rgba(26, 26, 26, 0.45) !important;
  font-weight: 300;
  font-style: italic;
  margin-top: 0 !important;
}

/* ── Thank-You: Ecosystem Reinforcement ── */
.ty-ecosystem {
  padding: 100px 40px;
  border-top: 1px solid var(--color-border-subtle);
}

.ty-ecosystem-copy {
  max-width: 560px;
}

.ty-ecosystem-copy p {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.78);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 24px;
}

.ty-ecosystem-emphasis {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem !important;
  color: var(--color-primary) !important;
  margin-top: 16px;
  letter-spacing: -0.01em;
}

/* ── Thank-You: Engagement Buttons ── */
.ty-engage {
  padding: 80px 40px 100px;
}

.ty-engage-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ty-btn {
  display: inline-block;
  padding: 18px 48px;
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.4s ease, color 0.4s ease, letter-spacing 0.4s ease;
  text-align: center;
}

.ty-btn:hover {
  background: var(--color-accent);
  color: #fff;
  letter-spacing: 0.18em;
}

.ty-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.ty-btn-secondary {
  border-color: rgba(26, 26, 26, 0.15);
  color: rgba(26, 26, 26, 0.70);
}

.ty-btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.ty-btn-tertiary {
  border-color: rgba(26, 26, 26, 0.10);
  color: rgba(26, 26, 26, 0.55);
}

.ty-btn-tertiary:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ── Thank-You: Authority Block ── */
.ty-authority {
  padding: 80px 40px 120px;
  border-top: 1px solid var(--color-border-subtle);
}

.ty-authority-block {
  text-align: center;
}

.ty-authority-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  margin-bottom: 20px;
  font-weight: 400;
}

.ty-authority-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.ty-authority-role {
  font-size: 0.82rem;
  color: rgba(26, 26, 26, 0.55);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ── Live / Privacy Pages ── */
.page-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 180px 40px 120px;
}

.page-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 48px;
  margin-bottom: 16px;
}

.page-content p {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.80);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 24px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.page-content li {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.80);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 8px;
}

/* ── Honeypot ── */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ── Footer ── */
.footer {
  padding: 56px 40px;
  text-align: center;
  border-top: 1px solid rgba(26, 26, 26, 0.03);
}

.footer-year {
  font-family: var(--font-heading);
  font-style: italic;
  letter-spacing: 0.02em;
}

.footer-name {
  font-family: var(--font-body);
  letter-spacing: 0.06em;
}

.footer p {
  font-size: 0.68rem;
  color: rgba(26, 26, 26, 0.45);
  font-weight: 300;
}

.footer a {
  color: rgba(26, 26, 26, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-primary);
}

/* ── Fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Skip Link (ADA) ── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.75rem;
  z-index: 200;
  transition: top 0.2s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ── Focus States (ADA) ── */
.nav-links a:focus-visible,
.footer a:focus-visible,
.page-content a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* ── Explainer Grid ── */
.explainer {
  padding: 0 40px 120px;
}

.explainer-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.explainer-card {
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  transition: border-color 0.3s ease;
}

.explainer-card:hover {
  border-color: rgba(26, 26, 26, 0.15);
}

.explainer-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.50);
  margin-bottom: 16px;
  font-weight: 400;
}

.explainer-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.explainer-card p {
  font-size: 0.88rem;
  color: rgba(26, 26, 26, 0.70);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
}

.explainer-card a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.explainer-card a:hover {
  color: var(--color-primary);
}

/* ── Hero Text Link ── */
.hero-text-link {
  display: block;
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-text-link:hover {
  color: var(--color-primary);
}

/* ── Section CTA Link ── */
.section-cta-link {
  display: block;
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.50);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.section-cta-link:hover {
  color: var(--color-primary);
}

/* ── Assessment Audience ── */
.assessment-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 48px;
  letter-spacing: -0.01em;
}

.assessment-heading:first-of-type {
  margin-top: 0;
}

.assessment-audience {
  margin-bottom: 40px;
}

.assessment-audience ul {
  list-style: none;
  padding: 0;
}

.assessment-audience li {
  font-size: 0.92rem;
  color: rgba(26, 26, 26, 0.78);
  font-weight: 300;
  line-height: 1.8;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.assessment-audience li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.6;
}

.assessment-audience.not-for li::before {
  background: var(--color-primary);
  opacity: 0.2;
}

/* ── Consent Checkbox ── */
.form-group-checkbox {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-group-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.form-checkbox-text {
  font-size: 0.82rem;
  color: rgba(26, 26, 26, 0.70);
  font-weight: 300;
  line-height: 1.7;
}

.form-checkbox-text a {
  color: var(--color-primary);
  text-underline-offset: 3px;
}

/* ── Inquiry Expectations ── */
.inquiry-expectations {
  font-size: 0.82rem;
  color: rgba(26, 26, 26, 0.55);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 32px;
  font-style: italic;
}

.inquiry-warning {
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.45);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 16px;
  padding: 16px 20px;
  border-left: 2px solid var(--color-border);
}

/* ── Live Page ── */
.live-platforms {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

.live-platforms h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.live-platforms p {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.80);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 24px;
}

.live-redaction-note {
  margin-top: 48px;
  padding: 20px 24px;
  border-left: 2px solid var(--color-gold);
  opacity: 0.7;
}

.live-redaction-note p {
  font-size: 0.82rem;
  color: rgba(26, 26, 26, 0.60);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Footer Attribution ── */
.footer-attribution {
  font-size: 0.72rem;
  color: rgba(26, 26, 26, 0.40);
  font-weight: 300;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-attribution a {
  color: rgba(26, 26, 26, 0.50);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-attribution a:hover {
  color: var(--color-primary);
}

.footer-links {
  margin-top: 12px;
}

.footer-links a {
  font-size: 0.68rem;
  font-weight: 300;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    padding: 120px 24px 60px;
    min-height: auto;
    margin-bottom: 80px;
  }

  .section {
    padding: 0 24px;
    margin-bottom: 120px;
  }

  .section-alt {
    padding: 80px 24px;
  }

  .nav-inner {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .nav-links a::after { display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero-cta,
  .form-submit {
    padding: 16px 36px;
  }

  .assessment-list {
    padding-left: 0;
  }

  .thankyou {
    padding: 120px 24px 60px;
    min-height: auto;
  }

  .ty-ecosystem {
    padding: 80px 24px;
  }

  .ty-engage {
    padding: 60px 24px 80px;
  }

  .ty-engage-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .ty-btn {
    padding: 16px 36px;
    width: 100%;
  }

  .ty-authority {
    padding: 60px 24px 80px;
  }

  .footer {
    padding: 40px 24px;
  }

  .page-content {
    padding: 140px 24px 80px;
  }

  .explainer {
    padding: 0 24px 80px;
  }

  .explainer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .explainer-card {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .hero h1,
  .thankyou h1 {
    font-size: 2rem;
  }

  .hero-ornament {
    width: 50%;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ── Print ── */
@media print {
  .nav { position: static; border-bottom: none; backdrop-filter: none; }
  .nav-toggle { display: none; }
  .hero, .thankyou { min-height: auto; padding: 60px 40px 40px; }
  .hero-ornament, .hero-gold-line { display: none; }
  .fade-in { opacity: 1; transform: none; }
  .section { break-inside: avoid; }
  .section-alt { background: transparent; }
  body::before { display: none; }
}
