/* MAIA website design system v2
   Palette anchored to the MAIA WhatsApp logo teal (#14929B).
   Editorial + product: Georgia display type, color-blocked bands,
   WhatsApp chat mockup as the hero visual. */

:root {
  --teal: #14929B;
  --teal-dark: #0E6E75;
  --teal-tint: #E3F1F2;
  --ink: #0A3A40;
  --ink-2: #0D4750;
  --ink-soft: #3D5C61;
  --gold: #D9A441;
  --gold-bright: #E8B954;
  --gold-soft: #F3E3C3;
  --paper: #FAF8F4;
  --card: #FFFFFF;
  --line: #E4DED2;
  --wa-green: #1DA851;   /* deep WhatsApp green; neon #25D366 clashes with brand teal */
  --wa-green-dark: #128C4A;
  --wa-bubble: #D9FDD3;
  --wa-chat-bg: #EFE7DC;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-1: 0 1px 3px rgba(10,58,64,0.08), 0 4px 14px rgba(10,58,64,0.06);
  --shadow-2: 0 4px 10px rgba(10,58,64,0.10), 0 18px 44px rgba(10,58,64,0.14);
  --radius: 14px;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; }

a { color: var(--teal-dark); text-decoration-color: rgba(20,146,155,0.4); text-underline-offset: 3px; }
a:hover { color: var(--teal); }

img { max-width: 100%; height: auto; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand .mark { width: 38px; height: 38px; }
.brand .lockup { display: flex; align-items: center; gap: 12px; }
.brand .name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: 0.01em; }
.brand .sep { width: 1px; height: 24px; background: var(--line); }
.brand .subname { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* transparent header over the fullscreen home hero */
.site-header.overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

nav.main-nav { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
nav.main-nav a { font-size: 0.95rem; color: var(--ink); text-decoration: none; padding: 7px 12px; border-radius: 8px; }
nav.main-nav a:hover { background: var(--teal-tint); color: var(--teal-dark); }
nav.main-nav a.active { color: var(--teal-dark); font-weight: 600; }

.nav-quick { display: flex; gap: 8px; align-items: center; }

.nav-burger {
  display: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 950px) {
  .nav-burger { display: inline-flex; }
  .site-header.overlay { position: static; background: var(--paper); }
  .hero.full { padding-top: 40px; }
  nav.main-nav {
    display: none;
    order: 10;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
    box-shadow: var(--shadow-2);
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 12px 14px; font-size: 1.02rem; }
}
.nav-quick a.lang-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--teal-dark);
  text-decoration: none;
}
.nav-quick a.lang-toggle:hover { border-color: var(--teal); background: var(--teal-tint); }

.nav-quick a.nav-cta {
  background: var(--wa-green);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
}
.nav-quick a.nav-cta:hover { background: var(--wa-green-dark); color: #fff; }

/* ---------- hero ---------- */

.hero {
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(20,146,155,0.14), transparent 62%),
    radial-gradient(700px 420px at -8% 110%, rgba(217,164,65,0.12), transparent 60%),
    var(--paper);
  padding: 64px 0 64px;
  overflow: hidden;
}

.hero.full {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 110px 0 56px;
  position: relative;
}

.hero.full > .wrap { width: 100%; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--teal-dark);
  text-decoration: none;
  animation: nudge 2.4s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.rise { opacity: 0; animation: rise 0.7s ease-out forwards; }
.rise.d1 { animation-delay: 0.08s; }
.rise.d2 { animation-delay: 0.18s; }
.rise.d3 { animation-delay: 0.3s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@keyframes floaty {
  0%, 100% { transform: rotate(1.6deg) translateY(0); }
  50% { transform: rotate(1.6deg) translateY(-12px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 56px;
  align-items: center;
}

.hero .eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
}

.hero .lede { font-size: 1.22rem; color: var(--ink-soft); max-width: 56ch; margin-top: 18px; }
.hero .gold-rule { width: 76px; height: 5px; background: var(--gold); border-radius: 3px; margin: 24px 0 0; }

/* audience path cards */

.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }

.path {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px 18px;
  box-shadow: var(--shadow-1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}

.path:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.path .p-kicker { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
.path h3 { font-size: 1.18rem; margin-bottom: 4px; }
.path p { font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 10px; }
.path .go { font-weight: 700; font-size: 0.95rem; }
.path.es { border-top: 4px solid var(--teal); }
.path.es .p-kicker { color: var(--teal-dark); }
.path.es .go { color: var(--teal-dark); }
.path.funder { border-top: 4px solid var(--gold); }
.path.funder .p-kicker { color: var(--gold); }
.path.funder .go { color: var(--teal-dark); }

.paths-note { margin-top: 14px; font-size: 0.9rem; color: var(--ink-soft); }

.lang-sub { font-size: 0.92rem; color: var(--ink-soft); }

/* responsive video embed */
.videoframe {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--ink);
  margin: 24px 0;
}
.videoframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* country chips (privacy page) */
.country-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 8px; }
.country-chips a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--teal-dark);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: var(--shadow-1);
}
.country-chips a:hover { border-color: var(--teal); }
.country-chips .soon { color: var(--ink-soft); font-weight: 400; box-shadow: none; }

.privacy-section { margin: 56px 0; padding-top: 12px; border-top: 3px solid var(--gold); }

/* status page */
.status-list { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 14px; }
.status-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-1);
}
.status-dot { width: 14px; height: 14px; border-radius: 50%; background: #B9C4C6; flex: 0 0 14px; }
.status-dot.ok { background: #2BA84A; }
.status-dot.warn { background: var(--gold); }
.status-dot.down { background: #C94F3D; }
.status-item .s-name { font-weight: 600; }
.status-item .s-desc { font-size: 0.88rem; color: var(--ink-soft); }
.status-item .s-state { margin-left: auto; font-size: 0.9rem; font-weight: 600; white-space: nowrap; }

/* ---------- whatsapp phone mockup ---------- */

.phone-wrap { display: flex; justify-content: center; }

.phone {
  width: 330px;
  background: var(--ink);
  border-radius: 34px;
  padding: 10px;
  box-shadow: var(--shadow-2);
  transform: rotate(1.6deg);
  animation: floaty 7s ease-in-out infinite;
}

.phone-screen { border-radius: 26px; overflow: hidden; background: var(--wa-chat-bg); }

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink-2);
  color: #fff;
  padding: 12px 14px;
}

.phone-top img { width: 34px; height: 34px; border-radius: 50%; background: #fff; padding: 4px; box-sizing: border-box; }
.phone-top .who { line-height: 1.15; }
.phone-top .who b { font-size: 0.95rem; display: block; }
.phone-top .who span { font-size: 0.72rem; color: #9ED4D9; }

.chat { padding: 14px 12px 16px; display: flex; flex-direction: column; gap: 8px; }

.msg {
  max-width: 84%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.45;
  box-shadow: 0 1px 1px rgba(10,58,64,0.10);
}

.msg.maia { background: #fff; align-self: flex-start; border-top-left-radius: 4px; }
.msg.user { background: var(--wa-bubble); align-self: flex-end; border-top-right-radius: 4px; }
.msg .t { display: block; text-align: right; font-size: 0.62rem; color: var(--ink-soft); margin-top: 3px; }

.phone-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 14px;
  transform: none;
}

/* ---------- sections ---------- */

section.band { padding: 72px 0; }
section.band.alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.band.tint { background: linear-gradient(180deg, var(--teal-tint), var(--paper)); }

/* dark evidence band */

section.band.ink {
  background:
    radial-gradient(900px 420px at 110% 0%, rgba(20,146,155,0.35), transparent 60%),
    var(--ink);
  color: #D9E8EA;
}

section.band.ink h2, section.band.ink h3 { color: #fff; }
section.band.ink a { color: #fff; }
section.band.ink .kicker { color: var(--gold-bright); }

.big-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px 40px; margin: 40px 0 12px; }

.big-stat { min-width: 0; }

.big-stat .value {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 2.6vw, 3rem);
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.05;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.big-stat .label { margin-top: 10px; font-size: 1rem; color: #ECF4F5; max-width: 24ch; }
.big-stat .sub { margin-top: 5px; font-size: 0.8rem; color: #8FB8BD; }

.kicker { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.kicker.teal { color: var(--teal-dark); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* light stat cards (results page) */

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin: 44px 0 8px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px 18px; box-shadow: var(--shadow-1); }
.stat .value { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--teal-dark); line-height: 1; }
.stat .label { margin-top: 8px; font-size: 0.97rem; }
.stat .sub { margin-top: 4px; font-size: 0.8rem; color: var(--ink-soft); }

/* coaching cycle */

.cycle { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 34px; counter-reset: step; }

.cycle .step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 20px;
  box-shadow: var(--shadow-1);
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cycle .step:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }

.cycle .step .n {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.cycle .step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.cycle .step p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* partners */

.partners { display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 14px; margin-top: 28px; }

.partner {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: var(--shadow-1);
}

.partner .p-name { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; }
.partner .p-role { font-size: 0.82rem; color: var(--ink-soft); margin-top: 2px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.btn.primary { background: var(--teal-dark); color: #fff; }
.btn.primary:hover { background: var(--teal); color: #fff; }
.btn.gold { background: var(--gold); color: var(--ink); }
.btn.ghost { border-color: var(--teal-dark); color: var(--teal-dark); }
.btn.ghost.on-ink { border-color: #7FBEC4; color: #fff; }
.btn.whatsapp { background: var(--wa-green); color: #fff; font-size: 1.12rem; padding: 15px 30px; }
.btn.whatsapp:hover { background: var(--wa-green-dark); color: #fff; }

/* closing cta band */

.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  box-shadow: var(--shadow-2);
}

.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #D5ECEE; }
.cta-band .half:first-child { border-right: 1px solid rgba(255,255,255,0.25); padding-right: 40px; }

/* ---------- results page ---------- */

.draft-banner { background: var(--gold-soft); border: 1px solid var(--gold); border-radius: 10px; padding: 12px 18px; font-size: 0.92rem; margin: 24px 0; }

.result-section { margin: 56px 0; }

.metric-table { width: 100%; border-collapse: collapse; margin-top: 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); }
.metric-table th, .metric-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 0.97rem; }
.metric-table tr:last-child td { border-bottom: none; }
.metric-table th { background: var(--paper); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }
.metric-table td.v { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--teal-dark); white-space: nowrap; }
.metric-table .placeholder td { color: var(--ink-soft); }
.metric-table .placeholder td.v { color: var(--ink-soft); font-style: italic; }

.method-note { font-size: 0.88rem; color: var(--ink-soft); background: var(--card); border-left: 4px solid var(--gold); padding: 12px 16px; border-radius: 0 8px 8px 0; margin-top: 14px; }

/* ---------- blog ---------- */

.post-list { list-style: none; padding: 0; margin: 28px 0; }

.post-list li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.post-list .thumb {
  flex: 0 0 124px;
  width: 124px; height: 86px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-1);
}

.post-list .date { font-size: 0.83rem; color: var(--ink-soft); letter-spacing: 0.05em; }
.post-list h3 { margin: 4px 0 6px; }
.post-list h3 a { text-decoration: none; color: var(--ink); }
.post-list h3 a:hover { color: var(--teal-dark); }
.post-list .excerpt { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

.year-label { font-family: var(--serif); color: var(--gold); font-size: 1.4rem; margin-top: 44px; }

/* testimonial quotes */

.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }

.quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 20px;
  box-shadow: var(--shadow-1);
  position: relative;
}

.quote-card::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
  position: absolute;
  top: 10px;
  left: 18px;
}

.quote-card p.q-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 18px 0 14px;
}

.quote-card .q-attr { font-size: 0.85rem; color: var(--ink-soft); }
.quote-card .q-attr b { color: var(--ink); font-weight: 600; }

.quotes-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 18px; }

/* blog teaser cards (home) */

.teasers { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 30px; }

.teaser {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.teaser:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.teaser img { width: 100%; height: 150px; object-fit: cover; display: block; }
.teaser .pad { padding: 16px 18px 18px; }
.teaser .date { font-size: 0.78rem; color: var(--ink-soft); }
.teaser h3 { font-size: 1.05rem; margin: 4px 0 0; color: var(--ink); }
.teaser:hover h3 { color: var(--teal-dark); }

article.post { padding: 48px 0 24px; }
article.post .date { color: var(--ink-soft); font-size: 0.9rem; }
article.post h1 { font-size: clamp(1.9rem, 3.6vw, 2.4rem); margin-top: 6px; }
article.post .cover { margin: 28px 0; border-radius: var(--radius); box-shadow: var(--shadow-1); }
article.post .body img { border-radius: 10px; margin: 10px 0; }
article.post .body h2 { font-size: 1.5rem; margin-top: 1.6em; }
article.post .body h3 { font-size: 1.2rem; margin-top: 1.5em; }
article.post .body blockquote { border-left: 4px solid var(--teal); margin: 1.2em 0; padding: 4px 20px; color: var(--ink-soft); background: var(--card); border-radius: 0 8px 8px 0; }
article.post .body pre { background: var(--ink); color: #E8F4F5; padding: 16px; border-radius: 10px; overflow-x: auto; font-size: 0.85rem; }
article.post .body code { font-size: 0.9em; }

.post-nav { display: flex; justify-content: space-between; gap: 20px; padding: 28px 0 48px; font-size: 0.95rem; }

/* ---------- peru / country landing ---------- */

.qr-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  max-width: 340px;
  box-shadow: var(--shadow-2);
}

.qr-card img { width: 240px; height: 240px; }
.qr-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 12px 0 0; }

.phone-line { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--ink); }

/* ---------- footer ---------- */

footer.site-footer { margin-top: 80px; background: var(--ink); color: #C9DCDE; padding: 48px 0 36px; font-size: 0.9rem; }
footer.site-footer a { color: #fff; text-decoration-color: rgba(255,255,255,0.35); }
footer.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
footer.site-footer h4 { color: var(--gold-bright); font-size: 0.95rem; margin-bottom: 10px; }
footer.site-footer ul { list-style: none; padding: 0; margin: 0; }
footer.site-footer li { margin: 6px 0; }
footer.site-footer .fine { margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.15); color: #9FBCBF; font-size: 0.82rem; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone { transform: rotate(0deg); animation: none; }
  .hero.full { min-height: 0; }
  .scroll-cue { display: none; }
  .brand .sep, .brand .subname { display: none; }
}

@media (max-width: 760px) {
  .hero { padding: 40px 0 44px; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .paths { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 32px; }
  .cta-band .half:first-child { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 28px; }
  footer.site-footer .cols { grid-template-columns: 1fr; gap: 24px; }
  .post-list li { flex-direction: column; gap: 10px; }
  .post-list .thumb { width: 100%; height: 150px; flex-basis: auto; }
  body { font-size: 16px; }
  section.band { padding: 48px 0; }
}

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