/* ============================================================
   Enttel Website — Main Stylesheet
   Brand: Enttel Teal #1D9E75, Warm Amber #D4890A, Pale Stone #F2F2F0
   Typefaces: DM Serif Display (headlines) + DM Sans (body)
   ============================================================ */

/* ── RESET & CUSTOM PROPERTIES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal:        #1D9E75;
  --teal-dark:   #0F6E56;
  --teal-light:  #E1F5EE;
  --teal-mid:    #5DCAA5;
  --slate:       #2C3E50;
  --slate-mid:   #546E7A;
  --bg:          #F2F2F0;
  --white:       #FFFFFF;
  --text:        #1A2730;
  --text-muted:  #546E7A;
  --amber:       #D4890A;
  --amber-light: #FEF3D7;
  --amber-dark:  #7A4D06;
  --border:      rgba(0, 0, 0, 0.08);
  --display:     'DM Serif Display', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --max:         1100px;
  --px:          clamp(1rem, 5vw, 2.5rem);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 242, 240, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
}

.nav-logo {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--teal-dark) !important; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.btn-ghost::after { content: '→'; }
.btn-ghost:hover  { color: var(--teal); }

/* ── HERO ── */
.hero {
  padding: clamp(3rem, 8vw, 6rem) var(--px) clamp(2.5rem, 6vw, 5rem);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero p {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Credential cards */
.cred-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.cred-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ci-teal  { background: var(--teal-light); }
.ci-amber { background: var(--amber-light); }
.ci-slate { background: #EDF1F4; }

.cred-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.cred-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Stats strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.stat-mini {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 0.85rem 0.5rem;
  text-align: center;
}

.stat-mini .num {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--teal);
  line-height: 1;
}

.stat-mini .lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ── SHARED SECTION STYLES ── */
section {
  padding: clamp(3rem, 7vw, 5rem) var(--px);
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
}

.s-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.s-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.s-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
}

/* ── SERVICES ── */
.services-bg { background: var(--white); }

.services-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svc-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.svc-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-3px);
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
  background: var(--teal-light);
}

.svc-icon.amb { background: var(--amber-light); }

.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.svc-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1.1rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: var(--teal-light);
  color: var(--teal-dark);
}

.tag.amb {
  background: var(--amber-light);
  color: var(--amber-dark);
}

/* ── NEWS ── */
.news-bg { background: var(--white); }

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.news-btn { white-space: nowrap; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.news-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.news-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-3px);
}

.news-date {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.news-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.news-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ── CLIENTS ── */
.clients-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.sector-panel {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}

.sp-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.sector-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
}

.sector-item::before {
  content: '✓';
  color: var(--teal);
  font-weight: 600;
  flex-shrink: 0;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.client-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1rem 1.15rem;
}

.client-card .cn {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.client-card .cd {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 500;
  padding: 0.18rem 0.5rem;
  border-radius: 3px;
  margin-top: 0.4rem;
  background: var(--teal-light);
  color: var(--teal-dark);
}

.badge.amb { background: var(--amber-light); color: var(--amber-dark); }
.badge.sl  { background: #EDF1F4; color: #3D5565; }

/* ── ABOUT ── */
.about-bg { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 3.5rem;
  align-items: start;
}

/* Timeline */
.timeline {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}

.tl-item {
  display: flex;
  gap: 1.1rem;
  padding-bottom: 1.6rem;
  position: relative;
}

.tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  width: 1px;
  height: calc(100% - 20px);
  background: var(--border);
}

.tl-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.tl-dot.now  { background: var(--teal-light); border: 2px solid var(--teal); }
.tl-dot.past { background: var(--bg); border: 2px solid var(--border); }

.tl-body h4     { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 0.1rem; }
.tl-body .org   { font-size: 0.78rem; color: var(--teal); font-weight: 500; }
.tl-body .period{ font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.tl-body p      { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* Expertise panel */
.exp-panel {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.exp-panel h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.exp-item { margin-bottom: 1rem; }

.exp-lbl {
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.exp-lbl span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.bar-bg {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
}

.bar {
  height: 5px;
  border-radius: 3px;
  background: var(--teal);
}

.bar.amb { background: var(--amber); }

.quals { margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1.1rem; }

.quals-heading {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.qual {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}

.qual::before {
  content: '◆';
  color: var(--teal);
  flex-shrink: 0;
  font-size: 0.6rem;
  margin-top: 0.25rem;
}

/* Teal panel */
.teal-panel {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  color: var(--white);
  margin-top: 1.25rem;
}

.teal-panel .tp-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.65rem;
}

.teal-panel h4 {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.teal-panel p {
  font-size: 0.84rem;
  opacity: 0.8;
  line-height: 1.7;
}

/* ── BRAND GUIDELINES ── */
.brand-bg { background: var(--slate); }
.brand-bg .s-label { color: var(--teal-mid); }
.brand-bg .s-title { color: var(--white); }
.brand-bg .s-sub   { color: rgba(255, 255, 255, 0.5); }

.brand-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.b-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem;
}

.b-card h4 {
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 1.1rem;
}

/* Swatches */
.swatch-list { display: flex; flex-direction: column; gap: 0.85rem; }

.swatch-item { display: flex; align-items: center; gap: 0.75rem; }

.swatch {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
}

.swatch-label {
  font-size: 0.76rem;
  color: var(--white);
  line-height: 1.4;
}

.swatch-label strong { font-weight: 600; }

.swatch-label span,
.swatch-label br + * {
  opacity: 0.5;
  font-size: 0.68rem;
}

/* Typography card */
.type-disp {
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.type-disp em { color: var(--teal-mid); font-style: italic; }

.type-sans {
  font-family: var(--sans);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.type-body-txt {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.type-mono {
  font-size: 0.7rem;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.65rem;
}

.type-scale {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.76rem;
  line-height: 2;
}

.b-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1rem 0;
}

/* Tone of voice */
.tone-words {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.tw {
  font-size: 0.76rem;
  padding: 0.28rem 0.7rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
}

.tw.on {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.tone-key {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 0.9rem;
}

.tone-eg {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  border-left: 2px solid var(--teal);
  padding-left: 0.7rem;
  line-height: 1.6;
  quotes: none;
}

/* Brand values */
.val-item {
  border-left: 2px solid var(--teal);
  padding-left: 0.8rem;
  margin-bottom: 0.85rem;
}

.val-item.amb { border-color: var(--amber); }

.val-item h5 {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.val-item p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact-wrap {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-wrap h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.contact-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-details {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.c-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.c-item a { color: var(--teal); text-decoration: none; }
.c-item a:hover { text-decoration: underline; }

.c-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* Contact form */
.c-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.c-form input,
.c-form select,
.c-form textarea {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.c-form input:focus,
.c-form select:focus,
.c-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.1);
}

.c-form textarea { min-height: 95px; }

.c-form button {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.925rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.c-form button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  padding: 2.5rem var(--px);
  font-size: 0.84rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.f-logo {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--teal-mid);
  text-transform: uppercase;
}

.f-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.f-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.f-links a:hover { color: var(--teal-mid); }

.f-copy { color: rgba(255, 255, 255, 0.25); font-size: 0.8rem; }

/* ══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════ */

/* Tablet — ≤ 900px */
@media (max-width: 900px) {
  .hero            { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .clients-intro   { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-grid      { grid-template-columns: 1fr; }
  .brand-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap    { grid-template-columns: 1fr; gap: 2rem; }
}

/* Mobile — ≤ 600px */
@media (max-width: 600px) {
  /* Hamburger nav */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(242, 242, 240, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.25rem var(--px) 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
    border-radius: 8px;
    padding: 0.75rem;
  }

  .services-grid { grid-template-columns: 1fr; }
  .brand-grid    { grid-template-columns: 1fr; }
  .client-grid   { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
}

/* Small mobile — ≤ 380px */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.85rem; }

  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-mini:last-child { grid-column: span 2; }
}
