/* Devi Arts — shared stylesheet (v1.0)
   Design inspiration: tanjorecollective.com (no copy/images reused).
   Edit colors in :root to recolor the whole site. */

:root {
  --ivory: #FAF6EE;
  --cream: #F2E7D0;
  --cream-2: #EAD9B5;
  --maroon: #8B1E1E;
  --maroon-dark: #6E1414;
  --red: #A02C2C;
  --gold: #C9A24B;
  --gold-soft: #E5C880;
  --charcoal: #2A1E15;
  --ink: #1B130C;
  --muted: #6B5A48;
  --line: #DDCFB4;
  --green-wa: #25D366;
  --shadow: 0 6px 24px rgba(43, 30, 21, 0.10);
  --shadow-lg: 0 12px 32px rgba(43, 30, 21, 0.14);
  --radius: 10px;
  --container: 1180px;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--maroon-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 8px; }
.section-lede { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 40px; }
.divider { width: 80px; height: 2px; background: var(--gold); margin: 12px auto 28px; border-radius: 2px; }

/* ============ NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { font-family: var(--display); font-size: 1.55rem; font-weight: 700; color: var(--maroon); letter-spacing: 0.5px; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.brand img { width: 32px; height: 32px; }
.brand span { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; padding: 8px; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--charcoal); margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--charcoal); font-weight: 500; font-size: 0.98rem; text-decoration: none; }
.nav-links a:hover { color: var(--maroon); }
.nav-links a[aria-current="page"] { color: var(--maroon); }

.wa-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-wa); color: #fff;
  font-weight: 700; text-decoration: none;
}
.wa-icon:hover { background: #1faa50; color: #fff; text-decoration: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; padding: 12px 22px;
  font-weight: 600; font-size: 0.98rem;
  border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s, color .2s;
  text-decoration: none; line-height: 1; letter-spacing: 0.2px;
}
.btn-primary { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.btn-primary:hover { background: var(--maroon-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-ghost:hover { background: var(--maroon); color: #fff; text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); color: var(--charcoal); text-decoration: none; }
.btn-sm { padding: 9px 16px; font-size: 0.9rem; }

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(201,162,75,0.12), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.hero-eyebrow { display: inline-block; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.hero h1 { color: var(--maroon-dark); margin-bottom: 14px; }
.hero p.lead { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 22px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-cta .small-link { font-size: 0.9rem; color: var(--muted); }
.hero-image { border-radius: var(--radius); box-shadow: var(--shadow); border: 6px solid #fff; outline: 1px solid var(--line); }

.press-row { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; margin-top: 18px; font-size: 0.9rem; color: var(--muted); }
.press-row strong { color: var(--charcoal); font-weight: 600; }
.press-badge { display: inline-block; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }

/* ============ DIFFERENTIATORS STRIP ============ */
.diff-strip { background: var(--cream); padding: 44px 0; border-bottom: 1px solid var(--line); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diff { display: flex; gap: 14px; align-items: flex-start; }
.diff-icon {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); color: var(--maroon);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.4rem;
}
.diff strong { display: block; color: var(--charcoal); margin-bottom: 2px; }
.diff p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ============ SIGNATURE ARTS ============ */
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sig-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.sig-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sig-card img { width: 100%; height: 230px; object-fit: cover; }
.sig-body { padding: 18px 20px 22px; }
.sig-body h3 { color: var(--maroon); margin-bottom: 6px; }
.sig-body p { color: var(--muted); font-size: 0.96rem; margin-bottom: 14px; }
.sig-body .more { font-weight: 600; color: var(--maroon); font-size: 0.9rem; }

/* ============ ABOUT ============ */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: center; }
.about-portrait { border-radius: var(--radius); border: 6px solid #fff; box-shadow: var(--shadow); outline: 1px solid var(--line); }
.about h2 { color: var(--maroon-dark); }
.about-credits { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; font-size: 0.9rem; color: var(--muted); }
.about-credits span { background: #fff; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); }

/* ============ HOW WE TEACH DIFFERENTLY ============ */
.differently { background: var(--ivory); }
.differently-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.differently h2 { color: var(--maroon-dark); }
.differently ul { list-style: none; padding: 0; margin: 18px 0; }
.differently li { padding: 10px 0 10px 32px; position: relative; }
.differently li::before { content: "✦"; position: absolute; left: 0; top: 8px; color: var(--gold); font-size: 1.2rem; }
.differently li strong { color: var(--charcoal); }
.alumni-quote {
  background: #fff; border-left: 4px solid var(--gold);
  padding: 22px 24px; border-radius: 6px;
  font-style: italic; color: var(--charcoal);
  margin-top: 18px;
}

/* ============ ART FORMS GRID ============ */
.forms-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.form-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-align: center; transition: transform .2s, box-shadow .2s; }
.form-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.form-tile img { width: 100%; height: 120px; object-fit: cover; }
.form-tile span { display: block; padding: 10px 6px; font-size: 0.88rem; font-weight: 500; color: var(--charcoal); }

/* ============ STATS ============ */
.stats { background: var(--maroon); color: #fff; padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { font-family: var(--display); font-size: clamp(2.2rem, 4.5vw, 3rem); color: var(--gold-soft); font-weight: 700; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.95rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: .9; }

/* ============ PRICING ============ */
.pricing { background: var(--cream); }
.offer-banner {
  display: inline-block; background: var(--maroon); color: #fff;
  padding: 6px 16px; border-radius: 999px; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.5px; margin-bottom: 14px;
}
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 20px; }
.price-grid.two-cols { grid-template-columns: 1fr 1fr; max-width: 760px; margin-left: auto; margin-right: auto; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
  text-align: center; position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--gold); }
.price-card > * { display: block; }
.price-card .region { font-weight: 700; color: var(--charcoal); font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.price-card .plan-tag { display: inline-block; align-self: center; background: var(--cream-2); color: var(--maroon); font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 16px; }
.price-card .was { color: var(--muted); text-decoration: line-through; font-size: 0.95rem; margin-bottom: 4px; }
.price-card .now { font-family: var(--display); font-size: 3rem; font-weight: 700; color: var(--maroon); line-height: 1; margin-bottom: 12px; }
.price-card .per { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; min-height: 2.4em; }
.price-card .course { padding: 14px 0; border-top: 1px dashed var(--line); margin: 0 0 18px; color: var(--charcoal); font-size: 0.92rem; }
.price-card .course b { color: var(--maroon); font-weight: 700; }
.price-card .btn { align-self: center; margin-top: auto; }

/* Geo-aware pricing — solo state when International card is hidden */
.price-grid.two-cols.solo { grid-template-columns: 1fr; max-width: 380px; }
.price-card[hidden] { display: none !important; }

/* "Showing prices for X · change" affordance */
.geo-note { margin-top: 14px; font-size: 0.82rem; color: var(--muted); text-align: center; }
.geo-note .geo-change {
  background: none; border: 0; padding: 0; font: inherit; color: var(--maroon);
  text-decoration: underline; cursor: pointer;
}
.geo-note .geo-change:hover { color: var(--charcoal); }
.geo-note .geo-picker { display: inline-flex; gap: 6px; margin-left: 8px; flex-wrap: wrap; justify-content: center; }
.geo-note .geo-picker[hidden] { display: none; }
.geo-note .geo-picker button {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 2px 10px; font-size: 0.78rem; font-weight: 600; color: var(--charcoal);
  cursor: pointer;
}
.geo-note .geo-picker button:hover,
.geo-note .geo-picker button[aria-pressed="true"] {
  background: var(--maroon); color: #fff; border-color: var(--maroon);
}

.perks-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 760px; margin: 28px auto 0;
}
.perk { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; text-align: left; }
.perk strong { display: block; color: var(--maroon); font-size: 1rem; margin-bottom: 4px; }
.perk p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.price-fineprint { text-align: center; font-size: 0.88rem; color: var(--muted); margin-top: 22px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ============ CLASS FORMATS ============ */
.format-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.format-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.format-card .format-tag {
  align-self: flex-start;
  background: var(--cream-2); color: var(--maroon);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.format-card h3 { color: var(--maroon); margin: 0 0 6px; font-family: var(--display); font-size: 1.6rem; }
.format-card .format-lede { color: var(--muted); margin: 0 0 18px; font-size: 0.96rem; }
.format-card .batch-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.format-card .batch-meta > div { border-top: 1px dashed var(--line); padding-top: 12px; }
.format-card .batch-meta > div:first-child { border-top: 0; padding-top: 0; }
.format-card .batch-meta strong {
  display: block; color: var(--charcoal); font-size: 0.78rem;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px;
}
.format-card .batch-meta span { color: var(--charcoal); font-size: 0.95rem; }
.format-card .tz-list { list-style: none; margin: 0; padding: 0; }
.format-card .tz-list li { color: var(--charcoal); font-size: 0.95rem; padding: 2px 0; }
.format-card .tz-list b { color: var(--maroon); display: inline-block; min-width: 78px; }
.format-card .btn { align-self: flex-start; }
.format-card .format-fineprint { color: var(--muted); font-size: 0.85rem; margin: 12px 0 0; }

/* Big course-fee block in each format card */
.format-card .price-row {
  background: var(--cream); border: 1px solid var(--line);
  padding: 18px 20px; border-radius: var(--radius);
  text-align: center; margin-bottom: 22px;
}
.format-card .price-row-label {
  color: var(--charcoal); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px;
}
.format-card .price-big {
  font-family: var(--display); font-size: 2.6rem; font-weight: 700;
  color: var(--maroon); line-height: 1;
}
.format-card .price-note {
  color: var(--muted); font-size: 0.82rem; margin-top: 8px; font-style: italic;
}

/* Optional continuation callout */
.format-card .continue-note {
  background: #fff; border-left: 3px solid var(--gold);
  padding: 12px 16px; margin: 4px 0 18px;
  border-radius: 0 6px 6px 0;
}
.format-card .continue-note strong {
  display: block; color: var(--charcoal); font-size: 0.85rem;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px;
}
.format-card .continue-note p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.format-card .continue-note b { color: var(--maroon); font-weight: 700; }

/* ============ HOW IT WORKS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.step-num { display: inline-flex; width: 44px; height: 44px; border-radius: 50%; background: var(--cream-2); color: var(--maroon); font-family: var(--display); font-size: 1.5rem; font-weight: 700; align-items: center; justify-content: center; margin-bottom: 12px; }
.step h3 { color: var(--maroon); margin-bottom: 6px; }
.step p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 18px 22px;
  font-weight: 600; color: var(--charcoal);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--maroon); font-size: 1.4rem; line-height: 1; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--maroon); }
.faq-body { padding: 0 22px 18px; color: var(--charcoal); }
.faq-body p { margin: 0; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--cream); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card { background: #fff; border-radius: var(--radius); padding: 26px 24px; border: 1px solid var(--line); position: relative; }
.t-card::before { content: "“"; font-family: var(--display); font-size: 4rem; line-height: 1; color: var(--gold); position: absolute; top: 8px; left: 16px; opacity: .55; }
.t-quote { font-style: italic; color: var(--charcoal); margin: 18px 0 14px; }
.t-name { font-weight: 600; color: var(--maroon); font-size: 0.95rem; }
.t-meta { font-size: 0.85rem; color: var(--muted); }
.reviews-cta { text-align: center; margin-top: 28px; }
.stars { color: var(--gold); letter-spacing: 1px; font-size: 1.1rem; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card { text-align: center; padding: 28px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card h3 { color: var(--maroon); margin-bottom: 6px; }
.contact-card a { color: var(--charcoal); font-weight: 500; }
.social-row { display: flex; gap: 14px; justify-content: center; margin-top: 8px; }
.social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream); color: var(--maroon);
  border: 1px solid var(--line); text-decoration: none; font-weight: 700;
}
.social-row a:hover { background: var(--maroon); color: #fff; text-decoration: none; }

/* ============ FOOTER ============ */
.site-footer { background: var(--charcoal); color: #E9DFCF; padding: 40px 0 24px; font-size: 0.92rem; }
.site-footer a { color: var(--gold-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 24px; }
.footer-brand { font-family: var(--display); font-size: 1.4rem; color: #fff; margin-bottom: 6px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 6px; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 16px; text-align: center; opacity: .8; }

/* ============ GALLERY ============ */
.page-intro { padding: 56px 0 24px; text-align: center; }
.page-intro h1 { color: var(--maroon-dark); }
.page-intro p { color: var(--muted); max-width: 640px; margin: 0 auto; }

.gallery-section { padding: 32px 0 56px; }
.gallery-section h2 { text-align: center; color: var(--maroon-dark); }
.gallery-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); margin-top: 28px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .25s; }
.gallery-grid figure:hover { transform: translateY(-3px); }
.gallery-grid img { width: 100%; height: 240px; object-fit: cover; }

.video-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; margin-top: 28px; }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ============ REGISTER ============ */
.form-wrap { max-width: 820px; margin: 0 auto; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 12px; }
.form-wrap iframe { width: 100%; border: 0; display: block; border-radius: 6px; }
.form-fallback { text-align: center; margin-top: 16px; color: var(--muted); font-size: 0.95rem; }

.pre-form {
  max-width: 760px; margin: 0 auto 28px;
  background: var(--cream); border-radius: var(--radius);
  border: 1px solid var(--line); padding: 22px 26px;
}
.pre-form h3 { color: var(--maroon); margin-top: 0; }
.pre-form ul { margin: 8px 0 0 1em; padding: 0; }
.pre-form li { margin-bottom: 4px; color: var(--charcoal); }

/* ============ LEGAL PAGES ============ */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 20px; }
.legal h1 { color: var(--maroon-dark); }
.legal h2 { color: var(--maroon); margin-top: 2em; }
.legal p, .legal li { color: var(--charcoal); }
.legal small { color: var(--muted); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 720px; margin: 0 auto;
  background: var(--charcoal); color: #fff;
  padding: 14px 18px; border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  z-index: 100; font-size: 0.92rem;
}
.cookie-banner p { margin: 0; flex: 1 1 280px; }
.cookie-banner a { color: var(--gold-soft); }
.cookie-banner button { padding: 8px 18px; border-radius: 999px; border: 0; background: var(--gold); color: var(--charcoal); font-weight: 600; cursor: pointer; }
.cookie-banner.hidden { display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .forms-grid { grid-template-columns: repeat(4, 1fr); }
  .sig-grid, .steps, .t-grid, .contact-grid, .price-grid, .price-grid.two-cols { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .differently-grid { grid-template-columns: 1fr; }
  .hero-image { max-width: 520px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-portrait { max-width: 280px; margin: 0 auto; }
  .about-credits { justify-content: center; }
  .diff-grid { grid-template-columns: 1fr; }
}

/* Collapse nav to hamburger early — 8 items overlap below ~960px */
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 68px; right: 0; left: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
    gap: 0; padding: 8px 20px 16px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s, opacity .25s;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; padding-top: 14px; }
  .nav-links .wa-icon { margin-top: 4px; }
  .nav-links .btn-sm { width: auto; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  h1 { font-size: clamp(1.75rem, 6vw, 2.4rem); line-height: 1.2; }
  .hero-eyebrow { font-size: 0.78rem; }
  .lead { font-size: 1rem; }

  .forms-grid { grid-template-columns: repeat(2, 1fr); }
  .sig-grid, .steps, .t-grid, .contact-grid, .price-grid, .price-grid.two-cols, .perks-grid, .format-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 200px; }
}

/* ============ A11Y ============ */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
