/* =====================================================================
   SHEIKHA AL MAHROUQI LAW FIRM — Design System
   Brand: Gold #b8967e · Maroon #43130e
   Style: Editorial luxury · Trust & Authority
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --gold:        #b8967e;
  --gold-deep:   #a07a5e;
  --gold-soft:   #d8c4b2;
  --maroon:      #43130e;
  --maroon-700:  #5a201a;
  --espresso:    #2c0d09;

  /* Neutrals */
  --ivory:       #faf7f2;
  --cream:       #f3ece2;
  --sand:        #ece2d4;
  --ink:         #241a16;
  --muted:       #6b5d54;
  --line:        #e3d8c9;
  --white:       #ffffff;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(67, 19, 14, .06);
  --shadow-md: 0 14px 40px rgba(67, 19, 14, .10);
  --shadow-lg: 0 30px 70px rgba(67, 19, 14, .18);
  --radius:    14px;
  --radius-lg: 22px;
  --ease:      cubic-bezier(.22, 1, .36, .08);
  --maxw:      1200px;

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Arabic font overrides applied on <html lang="ar"> */
html[lang="ar"] {
  --serif: "Amiri", "Times New Roman", serif;
  --sans:  "Cairo", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(72px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 20px;
}
html[lang="ar"] .eyebrow { letter-spacing: 0; font-size: 15px; }
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold);
}

.h-display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--maroon);
  font-size: clamp(2.1rem, 5vw, 3.75rem);
}
html[lang="ar"] .h-display { font-weight: 700; line-height: 1.3; letter-spacing: 0; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 60ch; }
html[lang="ar"] .lead { max-width: 64ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans); font-weight: 700;
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s, color .25s;
  will-change: transform;
}
html[lang="ar"] .btn { letter-spacing: 0; text-transform: none; font-size: 15px; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--maroon); color: var(--ivory); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--espresso); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--espresso); }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent; color: var(--maroon);
  box-shadow: inset 0 0 0 1.5px var(--gold);
}
.btn--ghost:hover { background: var(--maroon); color: var(--ivory); box-shadow: inset 0 0 0 1.5px var(--maroon); }

/* RTL: flip directional arrows */
html[lang="ar"] .btn svg.arrow { transform: scaleX(-1); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 50;
  transition: background-color .35s, box-shadow .35s, padding .35s;
  padding-block: 20px;
}
.header.scrolled {
  background: rgba(250, 247, 242, .9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  padding-block: 12px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 50px; width: auto; transition: height .35s; }
.scrolled .brand img { height: 42px; }
.brand-name {
  font-family: var(--serif); color: var(--ivory);
  font-weight: 600; font-size: 1.25rem; line-height: 1.05;
  transition: color .35s;
}
.brand-name span { display: block; font-family: var(--sans); font-size: .62rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }
html[lang="ar"] .brand-name span { letter-spacing: 0; font-size: .72rem; }
.scrolled .brand-name { color: var(--maroon); }
.scrolled .brand-name span { color: var(--gold-deep); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: var(--ivory);
  position: relative; padding-block: 6px; transition: color .2s;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.nav-links a::after {
  content: ""; position: absolute; inset-inline-start: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.scrolled .nav-links a { color: var(--ink); text-shadow: none; }
.scrolled .nav-links a:hover { color: var(--maroon); }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 14px; color: var(--ivory);
  padding: 9px 16px; border-radius: 100px;
  box-shadow: inset 0 0 0 1.5px rgba(216,196,178,.55); transition: box-shadow .25s, background .25s, color .25s;
}
.lang-switch:hover { box-shadow: inset 0 0 0 1.5px var(--gold); background: rgba(184,150,126,.18); }
.lang-switch svg { width: 16px; height: 16px; }
.scrolled .lang-switch { color: var(--maroon); box-shadow: inset 0 0 0 1.5px var(--line); }
.scrolled .lang-switch:hover { box-shadow: inset 0 0 0 1.5px var(--gold); background: var(--cream); }

.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--ivory); }
.scrolled .menu-toggle { color: var(--maroon); }
.menu-toggle svg { width: 26px; height: 26px; }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: var(--ivory);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 8px; transform: translateY(-100%); transition: transform .5s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--maroon); font-weight: 600; padding: 10px; }
.mobile-menu .btn { margin-top: 20px; }

/* =====================================================================
   HERO  — full-bleed Grand Mosque photo · centred verse · service strip
   ===================================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--ivory); overflow: hidden; text-align: center;
  padding: 150px 24px 200px;
  background: var(--espresso);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/hero-mosque.webp");
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  /* legibility overlay — darken + brand tint (kept light so the mosque shows through) */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(28,8,5,.42) 0%, rgba(28,8,5,.22) 38%, rgba(28,8,5,.6) 100%),
    radial-gradient(120% 90% at 50% 35%, transparent 40%, rgba(28,8,5,.4) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1000px; margin-inline: auto; }
.hero-eyebrow { color: var(--gold-soft); justify-content: center; }
.hero-eyebrow::before { background: var(--gold-soft); }

.hero-verse {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(1.7rem, 4.2vw, 3.3rem); line-height: 1.32;
  letter-spacing: -.005em; color: var(--ivory);
  text-shadow: 0 2px 30px rgba(0,0,0,.45); margin-bottom: 14px;
}
html[lang="ar"] .hero-verse { font-style: normal; font-weight: 700; line-height: 1.55; letter-spacing: 0; }
.hero-verse .ref { display: block; font-style: normal; margin-top: 10px; color: var(--gold); font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 2rem); }

.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05; letter-spacing: -.015em;
  color: var(--ivory); margin-bottom: 22px; text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
html[lang="ar"] .hero h1 { font-weight: 700; line-height: 1.28; letter-spacing: 0; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead { color: rgba(250,247,242,.9); margin: 0 auto 38px; text-shadow: 0 1px 16px rgba(0,0,0,.5); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-cta .btn--ghost { color: var(--ivory); box-shadow: inset 0 0 0 1.5px rgba(216,196,178,.6); }
.hero-cta .btn--ghost:hover { background: var(--ivory); color: var(--maroon); box-shadow: inset 0 0 0 1.5px var(--ivory); }

/* Service strip overlapping the bottom of the hero */
.hero-strip {
  position: relative; z-index: 3;
  margin-top: clamp(48px, 8vw, 90px);
  width: 100%; max-width: var(--maxw); margin-inline: auto;
}
.hero-strip-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.strip-card {
  background: rgba(250,247,242,.94); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 12px 12px 0 0; padding: 22px 18px 26px;
  display: flex; flex-direction: column; gap: 12px; text-align: start;
  transition: transform .3s var(--ease), background .3s; cursor: pointer;
  box-shadow: 0 -10px 30px rgba(44,13,9,.25);
}
.strip-card:hover { transform: translateY(-8px); background: var(--white); }
.strip-top { display: flex; align-items: center; justify-content: space-between; }
.strip-num { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--gold-deep); line-height: 1; }
.strip-card .ic { width: 38px; height: 38px; color: var(--maroon); display: grid; place-items: center; }
.strip-card .ic svg { width: 30px; height: 30px; }
.strip-card h4 { font-family: var(--serif); font-size: 1.18rem; color: var(--maroon); font-weight: 600; line-height: 1.2; }
html[lang="ar"] .strip-card h4 { font-weight: 700; }

.scroll-cue {
  position: absolute; inset-block-end: 18px; inset-inline-start: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--gold-soft); font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; pointer-events: none;
}
html[lang="ar"] .scroll-cue { letter-spacing: 0; }
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(var(--gold-soft), transparent); animation: cue 2s infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* =====================================================================
   STATS BAR
   ===================================================================== */
.stats {
  background: var(--maroon); color: var(--ivory);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { padding: 14px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ""; position: absolute; inset-inline-end: 0; top: 18%; height: 64%;
  width: 1px; background: rgba(184,150,126,.3);
}
.stat-num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,247,242,.75); margin-top: 10px; }
html[lang="ar"] .stat-label { letter-spacing: 0; font-size: 15px; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.about-figure { position: relative; }
.about-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 5/6; object-fit: cover; }
.about-figure .frame {
  position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg); z-index: -1;
}
html[lang="ar"] .about-figure .frame { inset: 18px 18px -18px -18px; }
.about-body p + p { margin-top: 18px; }
.about-body p { color: var(--muted); }
.about-points { margin-top: 30px; display: grid; gap: 16px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point .tick {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream); color: var(--gold-deep);
  display: grid; place-items: center; margin-top: 2px;
}
.about-point .tick svg { width: 16px; height: 16px; }
.about-point span { color: var(--ink); font-weight: 600; }

/* =====================================================================
   PRACTICE AREAS
   ===================================================================== */
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 56px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset-block-start: 0; inset-inline-start: 0;
  width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: inline-start;
  transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--serif); font-size: 1rem; color: var(--gold-deep);
  font-weight: 700; letter-spacing: .1em;
}
.service-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, var(--cream), var(--sand));
  display: grid; place-items: center; color: var(--maroon); margin: 18px 0 22px;
  transition: background .35s, color .35s;
}
.service-card:hover .service-icon { background: var(--maroon); color: var(--gold); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--maroon); font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15.5px; }

/* =====================================================================
   QUOTE / VERSE
   ===================================================================== */
.verse {
  background: linear-gradient(120deg, var(--espresso), var(--maroon));
  color: var(--ivory); text-align: center; position: relative; overflow: hidden;
}
.verse::before, .verse::after {
  font-family: var(--serif); content: "\201D"; position: absolute;
  font-size: 18rem; color: rgba(184,150,126,.12); line-height: 1;
}
.verse::before { inset-block-start: -40px; inset-inline-start: 30px; content: "\201C"; }
.verse::after { inset-block-end: -120px; inset-inline-end: 40px; }
.verse-inner { position: relative; z-index: 2; max-width: 880px; margin-inline: auto; }
.verse blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1.4; color: var(--ivory);
}
html[lang="ar"] .verse blockquote { font-style: normal; font-weight: 700; line-height: 1.6; }
.verse cite { display: block; margin-top: 26px; font-family: var(--sans); font-style: normal;
  font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
html[lang="ar"] .verse cite { letter-spacing: 0; font-size: 16px; }
.verse .rule { width: 70px; height: 2px; background: var(--gold); margin: 28px auto 0; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info { display: grid; gap: 14px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; transition: border-color .3s, box-shadow .3s, transform .3s;
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-card .ic {
  flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--cream);
  color: var(--maroon); display: grid; place-items: center;
}
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 5px; font-weight: 700; }
html[lang="ar"] .contact-card h4 { letter-spacing: 0; font-size: 15px; }
.contact-card p, .contact-card a { color: var(--ink); font-size: 16px; line-height: 1.55; }
.contact-card a:hover { color: var(--maroon); text-decoration: underline; text-underline-offset: 3px; }

.contact-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-family: var(--serif); font-size: 1.8rem; color: var(--maroon); margin-bottom: 6px; }
.contact-form > p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: .03em; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; font-family: var(--sans); font-size: 15px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--ivory); color: var(--ink);
  transition: border-color .25s, background .25s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-status { font-size: 14px; margin-top: 14px; text-align: center; font-weight: 600; line-height: 1.5; }
.form-status:empty { display: none; }
.form-status.success { color: #2e7d32; }
.form-status.error { color: #b3261e; }
/* visually hidden honeypot field */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--espresso); color: rgba(250,247,242,.7); padding-block: 64px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 64px; margin-bottom: 18px; }
.footer-brand p { font-size: 15px; max-width: 32ch; }
.footer h5 { color: var(--gold); font-family: var(--sans); font-size: 13px; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
html[lang="ar"] .footer h5 { letter-spacing: 0; font-size: 15px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a, .footer-contact li { font-size: 15px; color: rgba(250,247,242,.7); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: 11px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--gold); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(184,150,126,.18);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(250,247,242,.55);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(184,150,126,.3); color: var(--gold-soft); transition: background .25s, color .25s; }
.footer-social a:hover { background: var(--gold); color: var(--espresso); }
.footer-social svg { width: 18px; height: 18px; }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding-bottom: 60px; }
  .hero-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .strip-card { border-radius: 12px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-figure { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .stat-item:nth-child(2)::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .hero-strip-grid { grid-template-columns: 1fr; }
  .strip-card { flex-direction: row; align-items: center; gap: 16px; padding: 16px 18px; }
  .strip-card .strip-top { flex-direction: column; gap: 6px; }
  .strip-card h4 { margin: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important;
      transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
