/* ============================================
   ALMARUF MAID AGENCY — Design System
   Built by Ummah Collective
   CI: Primary #24A1DE · Deep #045CB4 · Slate #334155
   ============================================ */

:root {
  --primary: #24A1DE;
  --primary-dark: #1B87BC;
  --deep: #045CB4;
  --navy: #0A2540;
  --ink: #334155;
  --ink-light: #64748B;
  --bg: #FFFFFF;
  --bg-soft: #F2F3F6;
  --bg-blue-tint: #EAF6FC;
  --gold: #C9A24B;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 24px 64px rgba(10, 37, 64, 0.14);
  --font-head: 'Plus Jakarta Sans', 'Open Sans', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --wa: #25D366;
}

html[dir="rtl"] body { --font-head: 'Tajawal', sans-serif; --font-body: 'Tajawal', sans-serif; }
html[dir="rtl"] * { letter-spacing: 0 !important; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; font-weight: 800; }

/* ---------- Eyebrow / section labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 36px; height: 2px; background: var(--primary); }

.section { padding: 96px 0; }
.section.soft { background: var(--bg-soft); }
.section.tint { background: var(--bg-blue-tint); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::after { content: ""; width: 36px; height: 2px; background: var(--primary); }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-head p { color: var(--ink-light); font-size: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .3s ease;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(10,37,64,.08);
  padding: 8px 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--navy); line-height: 1.1; }
.brand-name span { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 2px; color: var(--primary); text-transform: uppercase; }
.site-header:not(.scrolled).on-hero .brand-name { color: #fff; }
.site-header:not(.scrolled).on-hero .brand-name span { color: #9BDCF7; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-weight: 600; font-size: 15px; color: var(--navy);
  padding: 9px 15px; border-radius: 99px; transition: all .2s;
  white-space: nowrap;
}
.site-header:not(.scrolled).on-hero .main-nav a { color: rgba(255,255,255,.92); }
.main-nav a:hover { background: rgba(36,161,222,.12); color: var(--primary); }
.main-nav a.active { background: var(--primary); color: #fff !important; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff !important; font-weight: 700;
  padding: 10px 20px; border-radius: 99px; font-size: 15px;
  box-shadow: 0 6px 20px rgba(37,211,102,.35); transition: transform .2s;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--wa) !important; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid rgba(100,116,139,.35); background: rgba(255,255,255,.6);
  border-radius: 99px; padding: 8px 14px; font-weight: 700; font-size: 13.5px;
  cursor: pointer; color: var(--navy); font-family: var(--font-head);
}
.site-header:not(.scrolled).on-hero .lang-btn { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 6px; min-width: 170px; display: none; z-index: 1001;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: flex; width: 100%; align-items: center; gap: 10px;
  padding: 10px 12px; border: 0; background: none; border-radius: 8px;
  font-size: 14.5px; font-weight: 600; color: var(--ink); cursor: pointer; text-align: start;
  font-family: var(--font-body);
}
.lang-menu button:hover { background: var(--bg-blue-tint); color: var(--deep); }
.lang-menu button.active { background: var(--primary); color: #fff; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .3s; }
.site-header:not(.scrolled).on-hero .nav-toggle span { background: #fff; }

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; inset-inline-end: -320px; width: 300px; height: 100vh;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 90px 24px 24px; gap: 8px; transition: inset-inline-end .35s ease;
    box-shadow: -10px 0 40px rgba(10,37,64,.15);
  }
  .main-nav.open { inset-inline-end: 0; }
  .main-nav a { color: var(--navy) !important; font-size: 17px; }
  .nav-cta { justify-content: center; margin-top: 12px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 55%, var(--primary) 130%);
  overflow: hidden; color: #fff;
  padding: 160px 0 110px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px; opacity: .35;
}
.hero-img {
  position: absolute; inset-inline-end: 0; top: 0; bottom: 0; width: 52%;
  background-size: cover; background-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 35%);
  mask-image: linear-gradient(to right, transparent 0%, #000 35%);
  opacity: .85;
}
html[dir="rtl"] .hero-img {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 35%);
  mask-image: linear-gradient(to left, transparent 0%, #000 35%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px); border-radius: 99px;
  padding: 8px 18px; font-size: 13.5px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 26px; color: #BFE7F9;
}
.hero h1 { color: #fff; font-size: clamp(38px, 5.5vw, 60px); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: #7FD0F4; }
.hero p.lead { font-size: 19px; color: rgba(255,255,255,.85); max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  padding: 15px 32px; border-radius: 99px; transition: all .25s; cursor: pointer; border: 0;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 30px rgba(36,161,222,.4); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-outline { border: 2px solid var(--primary); color: var(--deep); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 30px rgba(37,211,102,.35); }
.btn-wa:hover { transform: translateY(-3px); }

/* Trust strip under hero */
.hero-trust { display: flex; gap: 28px; margin-top: 48px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.85); }
.hero-trust svg { flex: none; }

/* ---------- Stats ---------- */
.stats-band { background: var(--navy); color: #fff; padding: 52px 0; position: relative; overflow: hidden; }
.stats-band::after { content:""; position:absolute; inset-inline-start:-80px; top:-80px; width:280px; height:280px; border-radius:50%; background:radial-gradient(circle, rgba(36,161,222,.35), transparent 70%); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; position: relative; z-index: 1; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: clamp(36px, 4.5vw, 54px); font-weight: 800; color: #7FD0F4; }
.stat .num small { font-size: .6em; }
.stat .label { font-size: 13.5px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 600; margin-top: 6px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card .card-img { height: 220px; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.06); }
.card .card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { color: var(--ink-light); font-size: 15.5px; flex: 1; }
.card .card-link { margin-top: 18px; font-weight: 700; color: var(--primary); font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }

/* Feature tiles (why us) */
.tile {
  background: #fff; border-radius: var(--radius); padding: 34px 28px;
  box-shadow: var(--shadow); transition: transform .3s; border-top: 4px solid var(--primary);
}
.tile:hover { transform: translateY(-6px); }
.tile .icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-blue-tint); color: var(--deep); margin-bottom: 20px; font-size: 26px;
}
.tile h3 { font-size: 19px; margin-bottom: 10px; }
.tile p { color: var(--ink-light); font-size: 15px; }

/* ---------- Process timeline ---------- */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; inset-inline-start: 27px; top: 8px; bottom: 8px;
  width: 3px; background: linear-gradient(var(--primary), var(--deep)); border-radius: 2px;
}
.t-step { position: relative; padding-inline-start: 84px; padding-bottom: 44px; }
.t-step:last-child { padding-bottom: 0; }
.t-step .t-num {
  position: absolute; inset-inline-start: 0; top: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 3px solid var(--primary); color: var(--deep);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 20px;
  box-shadow: 0 6px 18px rgba(36,161,222,.25);
}
.t-step h3 { font-size: 20px; margin-bottom: 8px; }
.t-step p { color: var(--ink-light); font-size: 15.5px; }
.t-step .t-tag { display: inline-block; background: var(--bg-blue-tint); color: var(--deep); font-size: 12.5px; font-weight: 700; padding: 4px 12px; border-radius: 99px; margin-top: 10px; }

/* ---------- Authority logos ---------- */
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; }
.logo-row img { height: 72px; width: auto; filter: grayscale(.2); opacity: .9; transition: .3s; }
.logo-row img:hover { filter: none; opacity: 1; transform: scale(1.06); }

/* ---------- Testimonials ---------- */
.testi-grid { columns: 3; column-gap: 24px; }
.testi-grid img {
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  margin-bottom: 24px; break-inside: avoid; width: 100%;
  transition: transform .3s; cursor: zoom-in;
}
.testi-grid img:hover { transform: scale(1.02); }
@media (max-width: 900px) { .testi-grid { columns: 2; } }
@media (max-width: 560px) { .testi-grid { columns: 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,37,64,.92); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 32px; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 92vw; width: auto; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow); margin-bottom: 16px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 26px; background: none; border: 0; cursor: pointer; text-align: start;
  font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--navy);
}
.faq-q .chev { flex: none; transition: transform .3s; color: var(--primary); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-light); font-size: 15.5px; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.img-stack { position: relative; }
.img-stack .main { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.img-stack .float {
  position: absolute; bottom: -28px; inset-inline-end: -20px; width: 46%;
  border-radius: var(--radius-sm); border: 6px solid #fff; box-shadow: var(--shadow-lg);
}
@media (max-width: 600px) { .img-stack .float { display: none; } }

.checklist { list-style: none; margin-top: 24px; }
.checklist li { display: flex; gap: 14px; margin-bottom: 16px; font-size: 16px; align-items: flex-start; }
.checklist .chk {
  flex: none; width: 26px; height: 26px; border-radius: 50%; margin-top: 2px;
  background: var(--bg-blue-tint); color: var(--deep); display: grid; place-items: center; font-size: 14px; font-weight: 800;
}

/* Values */
.value-pill {
  display: flex; gap: 18px; background: #fff; padding: 24px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); align-items: flex-start;
}
.value-pill .icon { font-size: 30px; flex: none; }
.value-pill h4 { font-size: 17px; margin-bottom: 4px; }
.value-pill p { font-size: 14.5px; color: var(--ink-light); }

/* ---------- Team ---------- */
.team-card { text-align: center; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 0 0 26px; overflow: hidden; transition: transform .3s; }
.team-card:hover { transform: translateY(-6px); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 18px; }
.team-card h4 { font-size: 18px; }
.team-card .role { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-light); font-weight: 600; margin: 4px 0 14px; }
.team-card .wa-link {
  display: inline-flex; align-items: center; gap: 8px; background: var(--wa); color: #fff;
  font-weight: 700; font-size: 14.5px; padding: 9px 20px; border-radius: 99px;
}

/* Director spotlight */
.director-card {
  display: flex; gap: 32px; align-items: center; background: linear-gradient(120deg, var(--navy), var(--deep));
  border-radius: var(--radius); padding: 40px; color: #fff; box-shadow: var(--shadow-lg);
}
.director-card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(255,255,255,.3); }
.director-card h3 { color: #fff; font-size: 24px; }
.director-card .role { color: #9BDCF7; font-weight: 600; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin: 6px 0 12px; }
.director-card p { color: rgba(255,255,255,.85); font-size: 15.5px; }
@media (max-width: 640px) { .director-card { flex-direction: column; text-align: center; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--deep), var(--primary));
  border-radius: var(--radius); padding: 72px 56px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.15) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 600px; margin: 0 auto 32px; font-size: 17.5px; }
.cta-band .btn-primary { background: #fff; color: var(--deep); box-shadow: 0 12px 36px rgba(0,0,0,.18); }

/* ---------- Contact ---------- */
.contact-info-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
.contact-info-card h4 { display: flex; align-items: center; gap: 10px; font-size: 16px; margin-bottom: 8px; color: var(--deep); }
.contact-info-card p { font-size: 15px; color: var(--ink-light); }
.contact-form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 40px; }
.contact-form label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; color: var(--navy); font-family: var(--font-head); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px; border: 1.5px solid #E2E8F0; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15.5px; margin-bottom: 20px; color: var(--ink);
  transition: border .2s; background: #FAFBFC;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--primary); background: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 72px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,.75); display: block; margin-bottom: 10px; font-size: 15px; transition: color .2s; }
.site-footer a:hover { color: #7FD0F4; }
.site-footer .about-blurb { font-size: 14.5px; margin-top: 16px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,.5);
}
.footer-bottom a { display: inline; color: #7FD0F4; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; inset-inline-end: 26px; z-index: 1500;
  width: 62px; height: 62px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 12px 32px rgba(37,211,102,.45);
  transition: transform .25s; animation: pulse-wa 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 12px 32px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 12px 32px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  color: #fff; padding: 170px 0 90px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.1) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 4.5vw, 50px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 640px; }
.breadcrumb { font-size: 13.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #7FD0F4; margin-bottom: 18px; }

/* ---------- Video embed ---------- */
.video-embed { aspect-ratio: 9/16; max-width: 380px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.gallery-grid img { border-radius: var(--radius-sm); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; cursor: zoom-in; transition: transform .3s; }
.gallery-grid img:hover { transform: scale(1.03); }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 140px 0 80px; min-height: auto; }
  .hero-img { display: none; }
  .cta-band { padding: 48px 28px; }
}
