/* ALFARAWI — الفروي للمقاولات والتصاميم الهندسية */

:root {
  /* Gold palette derived from the logo */
  --gold-1: #E6CF95;
  --gold-2: #C9A45C;
  --gold-3: #A77E3C;
  --gold-deep: #8A6328;
  --gold-grad: linear-gradient(135deg, #E9D5A1 0%, #C9A45C 45%, #9A7233 100%);
  --gold-line: linear-gradient(90deg, transparent, var(--gold-2), transparent);

  /* Ink / dark */
  --ink: #14120F;
  --ink-1: #1C1915;
  --ink-2: #26221C;
  --ink-soft: #3A352D;

  /* Light / warm neutrals */
  --cream: #F8F4EC;
  --ivory: #FCFAF4;
  --sand: #EFE7D8;
  --sand-2: #E5DAC6;

  /* Text */
  --text-dark: #211D17;
  --text-mid: #6B6355;
  --text-light: #C9BFB0;
  --text-on-dark: #EFE9DC;
  --text-on-dark-mid: #A89E8C;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --r: 4px;

  --font-display: 'El Messiri', 'Tajawal', serif;
  --font-body: 'Tajawal', sans-serif;
  --font-latin: 'Cormorant Garamond', serif;

  --shadow-soft: 0 24px 60px -28px rgba(20,18,15,.45);
  --shadow-card: 0 18px 50px -30px rgba(20,18,15,.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
section { position: relative; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* ---------- Shared text helpers ---------- */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-3);
  text-transform: none;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold-2);
}
.on-dark .eyebrow { color: var(--gold-1); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  margin: 18px 0 0;
  letter-spacing: -.5px;
}
.section-head p { color: var(--text-mid); font-size: clamp(16px, 1.4vw, 19px); margin-top: 16px; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 15px 30px; border-radius: var(--r);
  cursor: pointer; border: none; transition: .35s cubic-bezier(.2,.7,.3,1);
  position: relative; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-gold {
  background: var(--gold-grad); color: #2A1F0C;
  box-shadow: 0 12px 30px -12px rgba(160,120,40,.7);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(160,120,40,.85); }
.btn-ghost {
  background: transparent; color: var(--text-on-dark);
  border: 1px solid rgba(230,207,149,.4);
}
.btn-ghost:hover { border-color: var(--gold-1); background: rgba(230,207,149,.08); }
.btn-dark { background: var(--ink); color: var(--text-on-dark); }
.btn-dark:hover { transform: translateY(-3px); background: var(--ink-2); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0; transition: .4s ease;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.scrolled {
  background: rgba(20,18,15,.86);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(230,207,149,.12);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 52px; width: auto; transition: .4s ease; filter: drop-shadow(0 4px 14px rgba(0,0,0,.35)); }
.site-header.scrolled .brand img { height: 42px; }
.brand-tx { display: flex; flex-direction: column; line-height: 1.25; }
.brand-tx b { font-family: var(--font-latin); font-size: 21px; letter-spacing: 3px; color: var(--gold-1); font-weight: 600; }
.brand-tx span { font-size: 12px; color: var(--text-on-dark-mid); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 16px; font-weight: 500; color: var(--text-on-dark);
  position: relative; padding: 4px 0; transition: color .25s;
}
.nav a::after {
  content: ""; position: absolute; bottom: -2px; right: 0; height: 2px; width: 0;
  background: var(--gold-grad); transition: width .3s ease;
}
.nav a:hover { color: var(--gold-1); }
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-btn span { width: 26px; height: 2px; background: var(--gold-1); transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  background: var(--ink); color: var(--text-on-dark); overflow: hidden;
  padding-top: 120px; padding-bottom: 60px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,18,15,.96) 18%, rgba(20,18,15,.55) 60%, rgba(20,18,15,.78) 100%),
    linear-gradient(0deg, var(--ink), transparent 40%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(40px, 6.6vw, 86px);
  letter-spacing: -1px; margin: 22px 0 0;
}
.hero h1 .gold-text { display: inline-block; }
.hero p {
  font-size: clamp(17px, 1.7vw, 22px); color: var(--text-on-dark-mid);
  margin: 26px 0 38px; max-width: 600px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-meta {
  margin-top: 56px; display: flex; flex-wrap: wrap; gap: 40px;
  padding-top: 30px; border-top: 1px solid rgba(230,207,149,.16);
}
.hero-meta div b { font-family: var(--font-latin); font-size: 34px; color: var(--gold-1); display: block; line-height: 1; }
.hero-meta div span { font-size: 14px; color: var(--text-on-dark-mid); }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-on-dark-mid); font-size: 12px; letter-spacing: 1px;
}
.scroll-cue .mouse { width: 24px; height: 38px; border: 1.5px solid rgba(230,207,149,.5); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--gold-1); border-radius: 3px;
  animation: wheel 1.6s infinite;
}
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,11px)} }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--ink-2); color: var(--gold-1); overflow: hidden;
  border-block: 1px solid rgba(230,207,149,.14); padding: 16px 0;
}
.strip-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 30s linear infinite; width: max-content; }
.strip-track span { font-family: var(--font-display); font-size: 19px; display: inline-flex; align-items: center; gap: 60px; }
.strip-track span::after { content: "✦"; color: var(--gold-3); font-size: 13px; }
@keyframes marquee { to { transform: translateX(50%); } }

/* ---------- About ---------- */
.about { padding: clamp(80px, 9vw, 140px) 0; background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-figure { position: relative; }
.about-figure .main-img { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/5; }
.about-figure .main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-figure .badge {
  position: absolute; bottom: -28px; left: -28px; background: var(--ink);
  color: var(--text-on-dark); padding: 26px 30px; border-radius: var(--r);
  box-shadow: var(--shadow-card); border: 1px solid rgba(230,207,149,.18);
}
.about-figure .badge b { font-family: var(--font-latin); font-size: 44px; color: var(--gold-1); display: block; line-height: 1; }
.about-figure .badge span { font-size: 14px; color: var(--text-on-dark-mid); }
.about-figure .frame { position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--gold-2); border-radius: var(--r); z-index: -1; }
.about-body h2 { font-size: clamp(28px, 3.8vw, 46px); margin: 16px 0 0; letter-spacing: -.5px; }
.about-body .lead { font-size: 19px; color: var(--text-dark); margin: 22px 0; font-weight: 500; }
.about-body p { color: var(--text-mid); margin-bottom: 18px; }
.about-points { list-style: none; display: grid; gap: 14px; margin-top: 26px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; }
.about-points .ic {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(201,164,92,.14); color: var(--gold-3);
}
.about-points li b { font-weight: 700; }
.about-points li p { margin: 2px 0 0; font-size: 15px; }
.signature { margin-top: 30px; display: flex; align-items: center; gap: 18px; }
.signature .sig-name { font-family: var(--font-display); font-size: 22px; color: var(--text-dark); }
.signature .sig-role { font-size: 14px; color: var(--gold-3); }

/* ---------- Services ---------- */
.services { padding: clamp(80px, 9vw, 140px) 0; background: var(--ink); color: var(--text-on-dark); }
.services.on-dark .section-head p { color: var(--text-on-dark-mid); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(230,207,149,.14); border: 1px solid rgba(230,207,149,.14); border-radius: var(--r); overflow: hidden; }
.service-card {
  background: var(--ink-1); padding: 42px 34px; transition: .4s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: .4s ease;
  background: radial-gradient(120% 120% at 100% 0, rgba(201,164,92,.16), transparent 55%);
}
.service-card:hover { background: var(--ink-2); }
.service-card:hover::before { opacity: 1; }
.service-card .num { font-family: var(--font-latin); font-size: 15px; color: var(--gold-3); letter-spacing: 1px; }
.service-card .ic {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin: 18px 0 22px;
  border: 1px solid rgba(230,207,149,.3); color: var(--gold-1); transition: .4s;
}
.service-card:hover .ic { background: var(--gold-grad); color: var(--ink); border-color: transparent; }
.service-card .ic svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 23px; margin-bottom: 12px; }
.service-card p { color: var(--text-on-dark-mid); font-size: 15.5px; }

/* ---------- Stats ---------- */
.stats { background: var(--ink-2); padding: 70px 0; border-top: 1px solid rgba(230,207,149,.12); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat b { font-family: var(--font-latin); font-size: clamp(44px, 5.5vw, 68px); color: transparent; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; line-height: 1; display: block; }
.stat span { color: var(--text-on-dark-mid); font-size: 15px; margin-top: 8px; display: block; }

/* ---------- Projects ---------- */
.projects { padding: clamp(80px, 9vw, 140px) 0; background: var(--cream); }
.proj-top { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter {
  font-family: var(--font-body); font-weight: 600; font-size: 15px; cursor: pointer;
  padding: 10px 22px; border-radius: 40px; border: 1px solid var(--sand-2); background: transparent; color: var(--text-mid);
  transition: .3s;
}
.filter:hover { border-color: var(--gold-2); color: var(--gold-3); }
.filter.active { background: var(--ink); color: var(--gold-1); border-color: var(--ink); }
.gallery { margin-top: 48px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.tile {
  position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer;
  background: var(--sand); transition: opacity .45s ease, transform .45s ease;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,18,15,.82) 0%, rgba(20,18,15,0) 45%);
  opacity: 0; transition: .4s;
}
.tile:hover img { transform: scale(1.07); }
.tile:hover::after { opacity: 1; }
.tile .cap {
  position: absolute; right: 22px; bottom: 18px; left: 22px; z-index: 2; color: #fff;
  transform: translateY(12px); opacity: 0; transition: .4s ease;
}
.tile:hover .cap { transform: translateY(0); opacity: 1; }
.tile .cap b { font-family: var(--font-display); font-size: 21px; display: block; }
.tile .cap span { font-size: 13px; color: var(--gold-1); }
.tile .tag {
  position: absolute; top: 16px; right: 16px; z-index: 2; font-size: 12px; font-weight: 700;
  padding: 5px 13px; border-radius: 30px; background: rgba(20,18,15,.55); color: var(--gold-1);
  backdrop-filter: blur(6px); opacity: 0; transition: .4s;
}
.tile:hover .tag { opacity: 1; }
/* gallery layout spans */
.tile.s4 { grid-column: span 4; aspect-ratio: 4/5; }
.tile.s6 { grid-column: span 6; aspect-ratio: 16/10; }
.tile.s8 { grid-column: span 8; aspect-ratio: 16/9; }
.tile.s12 { grid-column: span 12; }
.tile.hide { display: none; }

/* ---------- Process ---------- */
.process { padding: clamp(80px, 9vw, 140px) 0; background: var(--ivory); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 30px; }
.step .line { position: absolute; top: 36px; right: 0; left: 0; height: 1px; background: var(--sand-2); }
.step .dot {
  width: 16px; height: 16px; border-radius: 50%; background: var(--ivory); border: 2px solid var(--gold-2);
  position: relative; z-index: 2; margin-bottom: 26px;
}
.step .dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--gold-grad); }
.step .n { font-family: var(--font-latin); font-size: 16px; color: var(--gold-3); letter-spacing: 1px; }
.step h3 { font-size: 22px; margin: 8px 0 10px; }
.step p { color: var(--text-mid); font-size: 15px; }

/* ---------- CTA banner ---------- */
.cta-band { padding: clamp(70px, 8vw, 120px) 0; background: var(--ink); color: var(--text-on-dark); text-align: center; position: relative; overflow: hidden; }
.cta-band .glow { position: absolute; inset: 0; background: radial-gradient(60% 90% at 50% 0, rgba(201,164,92,.22), transparent 60%); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(30px, 4.4vw, 56px); letter-spacing: -.5px; }
.cta-band p { color: var(--text-on-dark-mid); font-size: 19px; margin: 18px auto 36px; max-width: 560px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { padding: clamp(80px, 9vw, 140px) 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-info .ci-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--sand-2); }
.contact-info .ci-item:first-of-type { padding-top: 0; }
.ci-item .ic { flex: none; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--gold-1); }
.ci-item .ic svg { width: 23px; height: 23px; }
.ci-item .t span { font-size: 14px; color: var(--text-mid); display: block; }
.ci-item .t b { font-size: 19px; font-weight: 700; color: var(--text-dark); direction: ltr; display: inline-block; }
.ci-item .t b.rtl { direction: rtl; }
.social { display: flex; gap: 12px; margin-top: 30px; }
.social a { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--sand-2); color: var(--text-mid); transition: .3s; }
.social a:hover { background: var(--ink); color: var(--gold-1); border-color: var(--ink); transform: translateY(-3px); }
.social a svg { width: 20px; height: 20px; }

.contact-form { background: var(--ivory); padding: clamp(28px, 4vw, 44px); border-radius: var(--r); box-shadow: var(--shadow-card); border: 1px solid var(--sand); }
.contact-form h3 { font-size: 26px; margin-bottom: 6px; }
.contact-form .sub { color: var(--text-mid); font-size: 15px; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 16px; padding: 14px 16px;
  border: 1px solid var(--sand-2); border-radius: var(--r); background: #fff; color: var(--text-dark); transition: .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(201,164,92,.16); }
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { text-align: center; font-size: 13px; color: var(--text-mid); margin-top: 14px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--text-on-dark); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer .brand img { height: 64px; }
.footer-about p { color: var(--text-on-dark-mid); margin-top: 20px; max-width: 340px; font-size: 15px; }
.footer h4 { color: var(--gold-1); font-size: 18px; margin-bottom: 20px; }
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a { color: var(--text-on-dark-mid); font-size: 15px; transition: .25s; }
.footer ul a:hover { color: var(--gold-1); padding-inline-start: 6px; }
.footer-bottom { border-top: 1px solid rgba(230,207,149,.14); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--text-on-dark-mid); font-size: 14px; }
.footer-bottom .made { color: var(--gold-3); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; left: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 34px -10px rgba(37,211,102,.6);
  transition: .35s; animation: wa-pop .5s .8s both;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(15,13,10,.94);
  display: none; align-items: center; justify-content: center; padding: 5vw;
  opacity: 0; transition: opacity .3s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: var(--r); box-shadow: var(--shadow-soft); }
.lb-cap { position: absolute; bottom: 4vh; left: 0; right: 0; text-align: center; color: var(--text-on-dark); font-family: var(--font-display); font-size: 20px; }
.lb-cap span { color: var(--gold-1); }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(230,207,149,.3); color: var(--gold-1); width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: .25s; }
.lb-close:hover, .lb-nav:hover { background: var(--gold-grad); color: var(--ink); }
.lb-close { top: 4vh; left: 4vw; }
.lb-nav svg, .lb-close svg { width: 24px; height: 24px; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--ink); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px; transform: translateX(100%); transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 28px; color: var(--text-on-dark); }
.mobile-nav a:hover { color: var(--gold-1); }
.mobile-nav .mclose { position: absolute; top: 24px; left: 24px; background: none; border: none; color: var(--gold-1); font-size: 36px; cursor: pointer; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step .line { display: none; }
}
@media (max-width: 760px) {
  .nav, .header-cta .btn { display: none; }
  .menu-btn { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery .tile { grid-column: span 12 !important; aspect-ratio: 16/11 !important; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-meta { gap: 26px; }
  .about-figure .badge { left: 0; }
}
