/* ==========================================================
   Corporate Connections — style.css
   1. Tokens  2. Base  3. Header  4. Buttons  5. Layout helpers
   6. Hero  7. Sections & cards  8. Inner pages  9. Contact
   10. CTA band  11. Footer  12. Responsive
   ========================================================== */

/* 1. TOKENS ------------------------------------------------ */
:root {
  --ink: #1e1d23;
  --charcoal: #2b2a31;
  --text: #3b3a42;
  --muted: #68666f;
  --line: #e6e3ea;
  --paper: #ffffff;
  --mist: #f6f5f8;
  --magenta: #a02090;
  --magenta-dark: #83196f;
  --lime: #9fcb3a;
  --font-head: "Montserrat", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --header-h: 76px;
}

/* 2. BASE -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-head); color: var(--ink); margin: 0; }
h1 { font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
h3 { font-size: 1.12rem; line-height: 1.3; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; }
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; }
.on-dark :focus-visible, .site-footer :focus-visible { outline-color: var(--lime); }
.container { width: min(1200px, 100% - 48px); margin-inline: auto; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 6px; }
.skip:focus { top: 12px; }

/* 3. HEADER ------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.brand { display: block; flex: none; }
.brand img { height: 52px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav ul { display: flex; gap: 28px; list-style: none; padding: 0; }
.site-nav a:not(.btn) {
  font: 600 0.95rem var(--font-head); color: var(--ink); text-decoration: none;
  padding: 8px 0; border-bottom: 3px solid transparent; transition: border-color .2s;
}
.site-nav a:not(.btn):hover { border-bottom-color: var(--lime); }
.site-nav a[aria-current="page"]:not(.btn) { border-bottom-color: var(--magenta); }
.nav-toggle {
  display: none; position: relative; flex: none; width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer;
}
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s, top .2s; }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* 4. BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 24px; border: 2px solid transparent; border-radius: 8px;
  font: 700 0.95rem/1.2 var(--font-head); text-align: center; text-decoration: none; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--magenta); color: #fff; }
.btn-primary:hover { background: var(--magenta-dark); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--ink); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: 0.88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* 5. LAYOUT HELPERS ---------------------------------------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-mist { background: var(--mist); }
.section-head { max-width: 720px; margin: 0 0 clamp(28px, 4vw, 46px); }
.section-head p { color: var(--muted); margin: 14px 0 0; }
.section-head .kicker { margin: 0 0 14px; color: var(--magenta); }
.section-head.center { margin-inline: auto; text-align: center; }
.head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px 32px; margin-bottom: clamp(28px, 4vw, 46px); }
.head-row .section-head { margin: 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 14px;
  font: 600 0.92rem/1 var(--font-head); color: var(--magenta);
}
.kicker::before { content: ""; width: 26px; height: 4px; border-radius: 2px; background: var(--lime); }
.lead { font-size: 1.2rem; line-height: 1.6; max-width: 36em; }
.grid { display: grid; gap: 22px; }
.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 84px); align-items: center; }
.split.flip { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.ticks { list-style: none; padding: 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 12px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(159,203,58,.25); }

/* 6. HERO -------------------------------------------------- */
.hero { padding: clamp(36px, 6vw, 84px) 0 clamp(52px, 7vw, 96px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 5.8vw, 4.5rem); line-height: 1.02; margin-bottom: 8px; }
.hero h1 span { display: block; color: var(--magenta); }
.swash { display: block; width: min(250px, 62%); height: auto; margin: 0 0 22px; }
.hero .lead { margin-bottom: 30px; }
.hero-points { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-wrap: wrap; gap: 10px 24px; font: 600 0.92rem var(--font-head); color: var(--ink); }
.hero-points li::before { content: ""; display: inline-block; width: 9px; height: 9px; margin-right: 9px; border-radius: 50%; background: var(--lime); }
.hero-art { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-art figure { margin: 0; overflow: hidden; background: var(--mist); animation: rise .8s ease both; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .ha-main { grid-column: 1 / -1; aspect-ratio: 1.42; border-radius: 26px 26px 8px 8px; }
.ha-a, .ha-b { aspect-ratio: 1.15; }
.hero-art .ha-a { border-radius: 8px 8px 8px 26px; animation-delay: .12s; }
.hero-art .ha-b { border-radius: 8px 8px 26px 8px; animation-delay: .24s; }
.since-badge {
  position: absolute; z-index: 2; top: -16px; right: 16px; padding: 10px 18px 11px; text-align: center;
  background: #fff; color: var(--ink); border: 2px dashed var(--magenta); border-radius: 12px; line-height: 1;
}
.since-badge small { display: block; font: 600 .74rem var(--font-head); color: var(--muted); margin-bottom: 4px; }
.since-badge strong { font: 800 1.7rem var(--font-head); color: var(--magenta); letter-spacing: -.02em; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* 7. SECTIONS & CARDS -------------------------------------- */
.media-frame { position: relative; }
.media-frame > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 28px 8px 28px 8px; }
.verbs { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.verbs li { padding: 8px 18px; border: 2px dashed var(--magenta); border-radius: 999px; font: 700 .9rem var(--font-head); color: var(--ink); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: box-shadow .25s, transform .25s; }
.card:hover { box-shadow: 0 16px 34px -20px rgba(30,29,35,.45); transform: translateY(-3px); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--mist); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 22px 22px 26px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: .97rem; line-height: 1.55; color: var(--muted); }

.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.tile { position: relative; display: block; aspect-ratio: 1 / 1.05; overflow: hidden; border-radius: 14px; background: var(--charcoal); color: #fff; text-decoration: none; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,29,35,.85), rgba(30,29,35,0) 60%); }
.tile span { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 16px; font: 700 1.02rem/1.25 var(--font-head); }
.tile span::before { content: ""; display: block; width: 26px; height: 3px; margin-bottom: 9px; background: var(--lime); }
.chips { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.chips .chips-label { font: 600 .92rem var(--font-head); color: var(--ink); margin-right: 6px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font: 600 .9rem var(--font-head); color: var(--ink); }
.chip svg { width: 18px; height: 18px; flex: none; color: var(--magenta); }

.why { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.why-item { padding-top: 20px; border-top: 4px solid var(--lime); }
.why-item h3 { margin-bottom: 8px; font-size: 1.08rem; }
.why-item p { margin: 0; color: var(--muted); font-size: .98rem; }

.showcase { display: grid; grid-template-columns: 1.1fr 1fr 1fr; grid-template-rows: repeat(2, 230px) 300px; gap: 14px; }
.showcase figure { margin: 0; overflow: hidden; border-radius: 12px; background: var(--mist); }
.showcase img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.showcase figure:hover img { transform: scale(1.05); }
.showcase .sc-tall { grid-row: 1 / 3; border-radius: 26px 8px 8px 8px; }
.sc-wide { grid-column: 1 / -1; }

/* 8. INNER PAGES ------------------------------------------- */
.page-hero { background: var(--mist); padding: clamp(40px, 6vw, 80px) 0; }
.page-hero h1 { font-size: clamp(2.2rem, 4.8vw, 3.5rem); line-height: 1.05; margin-bottom: 16px; }
.page-hero .lead { margin: 0 0 26px; }
.page-hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 26px 8px 26px 8px; }
.since { padding: 34px 28px; text-align: center; background: #fff; border: 2px dashed var(--magenta); border-radius: 22px; }
.since strong { display: block; font: 800 clamp(4rem, 9vw, 6.4rem)/1 var(--font-head); letter-spacing: -.05em; color: var(--magenta); }
.since span { display: block; margin-top: 10px; font: 600 1rem var(--font-head); color: var(--ink); }
.values { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.value { padding: 26px 24px 28px; background: #fff; border-radius: 14px; border-left: 5px solid var(--magenta); }
.value:nth-child(even) { border-left-color: var(--lime); }
.value h3 { margin-bottom: 8px; }
.value p { margin: 0; color: var(--muted); font-size: .97rem; }
.facts { list-style: none; padding: 0; display: grid; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.facts li { padding: 22px 26px; border-bottom: 1px solid var(--line); }
.facts li:last-child { border-bottom: 0; }
.facts strong { display: block; font: 700 1rem var(--font-head); color: var(--ink); }
.facts span { color: var(--muted); font-size: .97rem; }
.cap-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-bottom: 36px; }
.cap-grid figure { margin: 0; }
.cap-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; }
.cap-grid figcaption { padding-top: 10px; font: 600 .95rem var(--font-head); color: var(--ink); }
.cap-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px 28px; }
.cap-list li { position: relative; padding-left: 26px; font-weight: 500; color: var(--ink); }
.cap-list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 12px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(159,203,58,.25); }

.service { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; padding: clamp(28px, 4vw, 48px) 0; border-top: 1px solid var(--line); }
.service:first-child { border-top: 0; padding-top: 0; }
.service:nth-child(even) .service-media { order: 2; }
.service-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 20px 8px 20px 8px; }
.service h2 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); margin-bottom: 12px; }
.service p { color: var(--text); max-width: 32em; }
.service ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 18px 0 0; }
.service li { padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; font: 600 .86rem var(--font-head); color: var(--ink); background: #fff; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; padding: 0; margin: 0; list-style: none; counter-reset: step; }
.steps li { position: relative; padding: 26px 22px 28px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.steps li::before {
  counter-increment: step; content: counter(step); display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 16px;
  border-radius: 50%; background: var(--magenta); color: #fff; font: 700 1rem var(--font-head);
}
.steps h3 { margin-bottom: 8px; }
.steps p { margin: 0; color: var(--muted); font-size: .97rem; }

.masonry { column-count: 3; column-gap: 16px; }
.masonry figure { margin: 0 0 16px; break-inside: avoid; overflow: hidden; border-radius: 12px; background: var(--mist); }
.masonry img { width: 100%; height: auto; transition: transform .7s; }
.masonry figure:hover img { transform: scale(1.04); }
.masonry .wide { column-span: all; }

/* 9. CONTACT ----------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.info-card { padding: 32px; background: var(--mist); border-radius: 20px; }
.info-card h2 { font-size: 1.5rem; margin-bottom: 22px; }
.info-list { display: grid; gap: 20px; margin: 0 0 28px; padding: 0; list-style: none; }
.info-list li { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 14px; align-items: start; }
.ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: #fff; color: var(--magenta); }
.ico svg { width: 20px; height: 20px; }
.info-list strong { display: block; font: 700 .88rem var(--font-head); color: var(--ink); }
.info-list a, .info-list address { font-style: normal; font-weight: 500; color: var(--text); text-decoration: none; overflow-wrap: anywhere; }
.info-list a:hover { color: var(--magenta); text-decoration: underline; }
.quote-box { padding: clamp(24px, 4vw, 40px); background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 24px 50px -34px rgba(30,29,35,.5); }
.quote-box h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 8px; }
.quote-box > p { color: var(--muted); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font: 600 .9rem var(--font-head); color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid #cfcbd6; border-radius: 8px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(160,32,144,.22); border-color: var(--magenta); }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form-note { grid-column: 1 / -1; margin: 0; font-size: .9rem; color: var(--muted); }
.form-status { grid-column: 1 / -1; margin: 0; font-weight: 600; color: var(--ink); }
.form-status:empty { display: none; }

/* 10. CTA BAND --------------------------------------------- */
.cta-band { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 96px) 0; background: var(--ink); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 16px; border: 2px dashed rgba(159,203,58,.5); border-radius: 18px; pointer-events: none; }
.cta-band::after { content: ""; position: absolute; right: -80px; bottom: -130px; width: 250px; height: 250px; border-radius: 50%; background: var(--magenta); }
.cta-inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px 40px; }
.cta-band h2 { color: #fff; max-width: 15em; }
.cta-band p { margin: 14px 0 0; max-width: 34em; color: #d3d1da; }
.cta-band .btn-row { padding-right: 20px; }
.cta-links { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 8px; }
.cta-links a { display: block; font: 700 clamp(1.15rem, 2.4vw, 1.5rem) var(--font-head); color: #fff; text-decoration: none; overflow-wrap: anywhere; }
.cta-links a:hover { color: var(--lime); }
.cta-links small { display: block; font: 600 .82rem var(--font-body); color: #b9b6c3; margin-bottom: 2px; }

/* 11. FOOTER ----------------------------------------------- */
.site-footer { padding: 64px 0 28px; background: var(--charcoal); color: #cfcdd7; font-size: .97rem; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.6fr .8fr 1.2fr; gap: 40px; }
.footer-logo { display: inline-block; padding: 10px 16px; margin-bottom: 18px; background: #fff; border-radius: 10px; }
.footer-logo img { height: 52px; width: auto; }
.site-footer h3 { margin-bottom: 16px; color: #fff; font-size: .95rem; }
.site-footer p { margin: 0 0 .6em; }
.site-footer address { font-style: normal; line-height: 1.7; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: #fff; text-decoration: none; overflow-wrap: break-word; }
.site-footer a:hover { color: var(--lime); text-decoration: underline; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); font-size: .88rem; color: #a9a6b4; }
.footer-bottom p { margin: 0; }

/* 12. RESPONSIVE ------------------------------------------- */
@media (max-width: 1080px) {
  .grid-4, .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why, .values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    padding: 4px 24px 24px; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 30px -20px rgba(0,0,0,.3); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li a:not(.btn) { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .site-nav li a[aria-current="page"]:not(.btn) { color: var(--magenta); border-bottom-color: var(--line); }
  .site-nav .btn { margin-top: 20px; width: 100%; }
  .hero-grid, .split, .split.flip, .contact-grid, .service { grid-template-columns: minmax(0, 1fr); }
  .split.flip .split-media, .service:nth-child(even) .service-media { order: 0; }
  .media-frame > img { aspect-ratio: 4 / 3; }
  .hero-art { max-width: 640px; }
  .showcase { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 190px; }
  .sc-tall { grid-column: 1 / -1; grid-row: auto; height: 340px; }
  .sc-wide { grid-column: 1 / -1; grid-row: auto; height: 210px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .masonry { column-count: 2; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .container { width: min(1200px, 100% - 40px); }
  .site-nav { padding-inline: 20px; }
  .brand img { height: 44px; }
  .grid-4, .grid-3, .tiles, .why, .values, .steps, .cap-grid, .form, .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .tile { aspect-ratio: 1 / 1.15; }
  .tile span { left: 12px; right: 12px; bottom: 12px; font-size: .92rem; }
  .btn-row .btn { flex: 1 1 100%; }
  .since-badge { right: 10px; top: -14px; }
  .info-card { padding: 24px; }
  .cta-band::before { inset: 10px; }
  .cta-band::after { display: none; }
  .cta-band .btn-row { padding-right: 0; width: 100%; }
  .showcase { grid-auto-rows: 150px; }
  .sc-tall { height: 280px; }
  .sc-wide { height: 150px; }
  .form-actions .btn { flex: 1 1 100%; }
}
@media (max-width: 380px) {
  .masonry { column-count: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
