/* Kibarai — inspired by Dante (CloudCannon) */

:root {
  --primary: #2d3663;
  --primary-dark: #1a2145;
  --secondary: #6e92ff;
  --tertiary: #00398f;
  --ink: #162c40;
  --ink-soft: #445067;
  --muted: #6b7488;
  --bg: #ffffff;
  --bg-soft: #f6f9ff;
  --bg-accent: #e6eefa;
  --rule: #dbe2f0;
  --radius: 12px;
  --radius-lg: 20px;
  --maxw: 1180px;
  --measure: 44rem;
  --serif-heading: "Poppins", "Inter", system-ui, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--tertiary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--secondary); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif-heading);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.2rem, 3.5vw + 1rem, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 1.8vw + 1rem, 2.4rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 500; }

p { margin: 0 0 1em; color: var(--ink-soft); }
.muted { color: var(--muted); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--primary); color: #fff; padding: .5rem .8rem; border-radius: 8px; z-index: 100; }

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 20;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 1.5rem; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 48px; width: auto; display: block; }
.brand:hover { opacity: .85; }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-main { display: flex; align-items: center; gap: 2rem; }
.nav-main a {
  color: var(--ink); font-family: var(--sans);
  font-size: .95rem; font-weight: 500; text-decoration: none;
}
.nav-main a:hover { color: var(--secondary); }
.nav-cta { color: #fff; }

/* Language picker */
.lang-picker { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: .35rem;
  background: transparent; border: 1px solid var(--rule);
  color: var(--muted); padding: .35rem .7rem;
  border-radius: 999px; cursor: pointer;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  transition: color .15s, border-color .15s, background .15s;
}
.lang-toggle:hover { color: var(--primary); border-color: var(--secondary); background: var(--bg-soft); }
.lang-toggle[aria-expanded="true"] .lang-toggle-caret { transform: rotate(180deg); }
.lang-toggle-caret { transition: transform .15s; }
.lang-menu {
  position: absolute; top: calc(100% + .4rem); right: 0;
  min-width: 140px; margin: 0; padding: .4rem 0;
  list-style: none; background: var(--bg);
  border: 1px solid var(--rule); border-radius: 12px;
  box-shadow: 0 15px 40px -18px rgba(45,54,99,.25);
  z-index: 30;
}
.lang-menu li { margin: 0; }
.lang-menu a {
  display: block; padding: .55rem 1rem;
  color: var(--ink); font-size: .92rem; text-decoration: none;
}
.lang-menu a:hover { background: var(--bg-soft); color: var(--primary); }
.lang-menu li[aria-selected="true"] a { color: var(--primary); font-weight: 600; }
.lang-menu li[aria-selected="true"] a::after { content: " ✓"; color: var(--secondary); }
.nav-main-langs { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 0; cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--primary);
  border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-block;
  padding: .85rem 1.75rem;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  line-height: 1.2;
}
.btn-primary { background: var(--secondary); color: #fff; }
.btn-primary:hover { background: var(--primary); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: #fff; }
.btn-arrow::after { content: " →"; }

/* Hero — 2 column, illustration right */
.hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 { max-width: 22ch; margin-bottom: 1.2rem; }
.hero-content .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 52ch;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-illustration {
  display: flex; justify-content: center; align-items: center;
}
.hero-illustration svg { max-width: 100%; height: auto; }

/* Sections */
section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.section-alt { background: var(--bg-soft); }

.section-heading {
  margin-bottom: 3.5rem;
  max-width: 60ch;
}
.section-heading h2 { margin: 0; }
.section-heading .lede {
  font-size: 1.1rem; color: var(--ink-soft); margin-top: 1rem; font-weight: 300;
}

/* Icon module — "Why Us" style (heading left, cards right with icon + text) */
.icon-module { display: grid; grid-template-columns: 1fr 1.35fr; gap: 4rem; align-items: center; }
.icon-module .heading-side h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.6rem); margin-bottom: 1rem; }
.icon-module .heading-side p { max-width: 40ch; }
.icon-module .cards-side {
  background: var(--bg-accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.icon-row {
  display: grid; grid-template-columns: 72px 1fr; gap: 1.25rem; align-items: start;
  padding: 1.25rem; background: #fff; border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s;
}
.icon-row:hover { transform: translateY(-2px); box-shadow: 0 15px 40px -20px rgba(45,54,99,.25); }
.icon-row .icon-badge {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-accent), #cfdcfa);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.icon-row .icon-badge svg { width: 28px; height: 28px; }
.icon-row h4 { margin: 0 0 .3rem; font-size: 1.1rem; font-weight: 600; }
.icon-row p { margin: 0 0 .6rem; font-size: .95rem; }
.icon-row .row-link {
  font-family: var(--sans); font-size: .88rem; font-weight: 500; color: var(--secondary);
}
.icon-row .row-link:hover { color: var(--primary); }
.icon-row .row-link::after { content: " →"; }

/* Info section — 3 column process */
.info-3col {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
}
.info-col { text-align: center; padding: 1.5rem 1rem; }
.info-col h3, .info-col p { max-width: 32ch; margin-left: auto; margin-right: auto; text-align: left; }
.info-col:has(.info-icon) h3, .info-col:has(.info-icon) p { text-align: center; }
.info-icon {
  width: 90px; height: 90px; border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: var(--bg-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.info-icon svg { width: 42px; height: 42px; }
.info-col h3 { font-size: 1.25rem; margin-bottom: .8rem; }
.info-col p { margin-bottom: 1.5rem; font-size: .95rem; }

/* Featured blog post */
.featured-post {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center;
  background: var(--bg-accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.featured-post .featured-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  color: #fff;
  font-family: var(--serif-heading);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
}
.featured-post .featured-image::before {
  content: ""; position: absolute; inset: 0; opacity: .15;
  background:
    radial-gradient(circle at 20% 30%, #fff 0, transparent 40%),
    radial-gradient(circle at 80% 70%, #fff 0, transparent 40%);
}
.featured-post .featured-image span { position: relative; z-index: 1; }
.featured-post .meta {
  font-size: .8rem; color: var(--secondary); text-transform: uppercase;
  letter-spacing: .18em; font-weight: 500; margin-bottom: .8rem;
}
.featured-post h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); margin-bottom: 1rem; }
.featured-post h2 a { color: var(--primary); }
.featured-post h2 a:hover { color: var(--secondary); }

/* Latest / Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -25px rgba(45,54,99,.3); border-color: var(--secondary); }
.blog-card .card-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 1.25rem;
  color: #fff;
  font-family: var(--serif-heading);
  font-weight: 500;
  font-size: .95rem;
  line-height: 1.3;
}
.blog-card .card-image::before {
  content: ""; position: absolute; inset: 0; opacity: .15;
  background:
    radial-gradient(circle at 25% 25%, #fff 0, transparent 45%),
    radial-gradient(circle at 75% 75%, #fff 0, transparent 45%);
}
.blog-card .card-image span { position: relative; z-index: 1; }
.blog-card .card-image.variant-1 { background: linear-gradient(135deg, #2d3663, #6e92ff); }
.blog-card .card-image.variant-2 { background: linear-gradient(135deg, #6e92ff, #b3c6ff); }
.blog-card .card-image.variant-3 { background: linear-gradient(135deg, #00398f, #6e92ff); }
.blog-card .card-image.variant-4 { background: linear-gradient(135deg, #1a2145, #2d3663); }
.blog-card .card-image.variant-5 { background: linear-gradient(135deg, #2d3663, #00398f); }
.blog-card .card-image.variant-6 { background: linear-gradient(135deg, #6e92ff, #2d3663); }

.blog-card .card-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.blog-card .card-date {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--muted); font-weight: 500;
}
.blog-card .card-tags {
  font-size: .78rem; color: var(--secondary); font-weight: 500;
  display: flex; gap: .6rem; flex-wrap: wrap;
}
.blog-card .card-tags span { background: var(--bg-accent); padding: .2rem .7rem; border-radius: 999px; }
.blog-card h3 { margin: 0; font-size: 1.15rem; color: var(--primary); }
.blog-card p { margin: 0; font-size: .95rem; color: var(--ink-soft); }

/* Call to action banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--tertiary));
  color: #fff; padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background:
    radial-gradient(circle at 15% 20%, #fff 0, transparent 40%),
    radial-gradient(circle at 85% 80%, #fff 0, transparent 40%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin: 0 0 1rem; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.6; }
.cta-banner .btn-primary { background: #fff; color: var(--primary); }
.cta-banner .btn-primary:hover { background: var(--bg-accent); color: var(--primary); }

/* Page (services list, generic pages) */
.page { padding: clamp(3rem, 6vw, 5rem) 0; }
.page-header { text-align: left; margin: 0 auto 2.5rem; max-width: var(--measure); }
.page-header h1 { margin-bottom: .8rem; max-width: 22ch; }
.page-header:has(.lede) h1 { max-width: none; }
.page-header .lede { font-size: 1.15rem; color: var(--ink-soft); font-weight: 300; }

/* Prose */
.prose { max-width: var(--measure); margin: 0 auto; font-size: 1.05rem; color: var(--ink); }
.prose > * + * { margin-top: 1em; }
.prose h2 { margin-top: 2.4em; font-size: 1.7rem; }
.prose h3 { margin-top: 1.8em; font-size: 1.25rem; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: .4em; }
.prose strong { font-weight: 600; color: var(--primary); }
.prose blockquote {
  border-left: 3px solid var(--secondary); margin: 1.5em 0; padding: .2em 0 .2em 1.4em;
  color: var(--ink-soft); font-style: italic;
}
.prose code { background: var(--bg-accent); padding: .1em .4em; border-radius: 4px; font-size: .9em; color: var(--primary); }
.prose hr { border: 0; border-top: 1px solid var(--rule); margin: 2.5em 0; }

/* Post layout */
.post-hero {
  background: var(--bg-soft); padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}
.post-hero-inner { max-width: 780px; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.post-hero h1 { margin-bottom: 1rem; }
.post-hero .post-meta {
  font-family: var(--sans); font-size: .85rem; color: var(--muted);
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem;
}
.post-cover-band {
  max-width: 900px; margin: 0 auto; padding: 0 1.5rem;
  transform: translateY(-30px);
}
.post-cover-band .cover-panel {
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(45,54,99,.4);
}
.post-cover-band .cover-panel::before {
  content: ""; position: absolute; inset: 0; opacity: .18;
  background:
    radial-gradient(circle at 20% 30%, #fff 0, transparent 45%),
    radial-gradient(circle at 80% 70%, #fff 0, transparent 45%);
}
.post-body { padding: 1rem 0 clamp(3rem, 6vw, 5rem); }

/* Contact page — icon cards */
.contact-methods {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 720px; margin: 0 auto;
}
.contact-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2.5rem 1.75rem; background: #fff;
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  text-decoration: none; color: var(--ink);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.contact-card:hover {
  transform: translateY(-4px); border-color: var(--secondary);
  box-shadow: 0 20px 50px -25px rgba(45,54,99,.3); text-decoration: none;
}
.contact-card .info-icon { margin-bottom: 1.25rem; }
.contact-card h3 { margin: 0 0 .4rem; font-size: 1.05rem; color: var(--primary); text-transform: uppercase; letter-spacing: .12em; font-family: var(--sans); font-weight: 600; }
.contact-card p { margin: 0; color: var(--ink-soft); font-size: 1rem; word-break: break-word; }

/* Footer */
.site-footer {
  background: var(--primary); color: rgba(255,255,255,.85);
  padding: 4rem 0 2rem; margin-top: 5rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand img { height: 44px; width: auto; display: block; }
.footer-brand p { color: rgba(255,255,255,.7); max-width: 38ch; font-size: .95rem; }
.footer-heading {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--secondary); font-weight: 600; margin: 0 0 1rem;
}
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: var(--secondary); }
.site-footer p { margin: 0 0 .5rem; color: rgba(255,255,255,.85); font-size: .95rem; }
.copyright {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15);
  font-size: .82rem; color: rgba(255,255,255,.6);
}

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 100;
  max-width: 780px; margin: 0 auto;
  background: var(--primary); color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.4);
  animation: cookie-banner-in .35s ease-out;
}
.cookie-banner__inner {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner p { margin: 0; color: rgba(255,255,255,.9); font-size: .92rem; line-height: 1.55; max-width: 46ch; }
.cookie-banner__actions { display: flex; gap: 1.25rem; align-items: center; }
.cookie-banner a { color: var(--secondary); font-size: .88rem; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.cookie-banner a:hover { color: #fff; }
.cookie-banner .btn-primary {
  background: var(--secondary); color: #fff; padding: .55rem 1.25rem;
  font-size: .88rem; border: 2px solid var(--secondary);
}
.cookie-banner .btn-primary:hover { background: #fff; color: var(--primary); border-color: #fff; }

@keyframes cookie-banner-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 620px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-banner__actions { width: 100%; justify-content: space-between; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { text-align: center; }
  .hero-content h1 { max-width: 22ch; margin-left: auto; margin-right: auto; }
  .hero-content .lede { max-width: 52ch; margin-left: auto; margin-right: auto; text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-illustration { order: -1; max-width: 340px; margin: 0 auto; }
  .icon-module { grid-template-columns: 1fr; gap: 2rem; }
  .icon-module .heading-side p { max-width: none; }
  .featured-post { grid-template-columns: 1fr; padding: 1.75rem; gap: 2rem; }
  .info-3col { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .section-heading { margin-bottom: 2.5rem; }
}
@media (max-width: 620px) {
  .container, .container-narrow { padding: 0 1.15rem; }
  .nav { padding: 1rem 1.15rem; gap: .5rem; }
  .brand img { height: 40px; }
  .nav-right { gap: .75rem; }
  .nav-toggle { display: flex; }
  .nav-cta { padding: .6rem 1.1rem; font-size: .88rem; }
  .lang-picker { display: none; }
  .nav-main-langs {
    display: flex; flex-wrap: wrap; gap: .5rem;
    padding: .75rem 0 .25rem;
    border-top: 1px solid var(--rule);
    margin-top: .35rem;
  }
  .nav-main-langs a {
    padding: .45rem .85rem !important;
    border: 1px solid var(--rule) !important;
    border-radius: 999px;
    font-size: .85rem !important;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--muted);
  }
  .nav-main-langs a[aria-current="true"] {
    background: var(--primary); color: #fff; border-color: var(--primary) !important;
  }
  .site-header { position: sticky; }
  .nav-main {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--rule);
    box-shadow: 0 20px 40px -20px rgba(45,54,99,.2);
    padding: 0 1.15rem;
    max-height: 0; overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
  }
  .nav-main a {
    padding: .85rem 0;
    border-bottom: 1px solid var(--rule);
    font-size: 1rem;
  }
  .nav-main a:last-child { border-bottom: 0; }
  .nav-right:has(.nav-toggle[aria-expanded="true"]) .nav-main {
    max-height: 60vh; padding: .25rem 1.15rem .75rem;
  }
  .hero { padding-top: 3.25rem; padding-bottom: 2rem; }
  .page { padding-top: 3.25rem; padding-bottom: 2rem; }
  .post-hero { padding-top: 3.25rem; padding-bottom: 2rem; }
  .hero-illustration { max-width: 260px; }
  section { padding: 3rem 0; }
  .section-heading { margin-bottom: 1.75rem; }
  .featured-post { padding: 1.25rem; gap: 1.5rem; }
  .featured-post .featured-image { padding: 1rem; font-size: 1rem; }
  .featured-post h2 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .site-footer { padding: 2.5rem 0 1.5rem; margin-top: 3rem; }
  .icon-module .cards-side { padding: 1.25rem; }
  .icon-row { grid-template-columns: 52px 1fr; padding: 1rem; gap: 1rem; }
  .icon-row .icon-badge { width: 48px; height: 48px; }
  .icon-row .icon-badge svg { width: 24px; height: 24px; }
  .info-icon { width: 72px; height: 72px; margin-bottom: 1rem; }
  .info-icon svg { width: 34px; height: 34px; }
  .info-col { padding: 1rem .5rem; }
  .info-col h3, .info-col p { max-width: none; }
  .cta-banner { padding: 2.5rem 1.25rem; }
  .cta-banner p { font-size: 1rem; margin-bottom: 1.5rem; }
  .post-cover-band { transform: translateY(-18px); padding: 0 1.15rem; }
  .post-cover-band .cover-panel { aspect-ratio: 16 / 10; }
  .post-hero-inner { padding: 0 1.15rem; }
  .contact-card { padding: 1.75rem 1.25rem; }
  .btn { padding: .75rem 1.4rem; font-size: .9rem; }
  .hero-actions { gap: .6rem; }
}
@media (max-width: 380px) {
  .container, .container-narrow { padding: 0 .9rem; }
  .nav { padding: .9rem .9rem; }
  .cta-banner { padding: 2rem 1rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
