/* ==========================================================================
   BEEMEF YAPI — Modern Kurumsal Web Sitesi
   Tasarım sistemi / Design system
   ========================================================================== */

:root {
  /* Marka renkleri */
  --brand-900: #7a3a06;
  --brand-700: #b85c10;
  --brand-500: #e8791e;
  --brand-400: #f5a623;
  --brand-grad: linear-gradient(135deg, #b85c10 0%, #e8791e 45%, #f5a623 100%);

  /* Nötrler */
  --ink-900: #17130f;
  --ink-800: #241d17;
  --ink-700: #3a322b;
  --ink-500: #6b6259;
  --ink-400: #8c8378;
  --paper: #ffffff;
  --paper-50: #faf8f5;
  --paper-100: #f4f0ea;
  --paper-200: #e9e2d8;
  --line: #e4ddd2;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(23, 19, 15, .06);
  --shadow: 0 12px 32px rgba(23, 19, 15, .10);
  --shadow-lg: 0 28px 60px rgba(23, 19, 15, .18);

  --container: 1200px;
  --header-h: 76px;

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--ink-800);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -.02em; color: var(--ink-900); }

/* Layout --------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--paper { background: var(--paper-50); }
.section--ink { background: var(--ink-900); color: var(--paper-100); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand-grad); border-radius: 2px; }
.section--ink .eyebrow { color: var(--brand-400); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--ink-500); font-size: 1.08rem; }
.section--ink .section-head p { color: #c9c0b4; }

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--brand-grad); color: #fff; box-shadow: 0 10px 24px rgba(232,121,30,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(232,121,30,.45); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn--ghost:hover { background: rgba(255,255,255,.16); }
.btn--dark { background: var(--ink-900); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { border: 1.5px solid var(--line); color: var(--ink-800); background: #fff; }
.btn--outline:hover { border-color: var(--brand-500); color: var(--brand-700); }

/* Header --------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text b { font-size: 1.15rem; letter-spacing: -.01em; color: var(--ink-900); font-weight: 800; }
.brand__text span { font-size: .66rem; letter-spacing: .22em; color: var(--brand-700); font-weight: 700; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: .96rem;
  color: var(--ink-700); transition: color .16s ease, background .16s ease; white-space: nowrap;
}
.nav a:hover { color: var(--brand-700); background: var(--paper-100); }
.nav a.active { color: var(--brand-700); }
.nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--brand-grad); border-radius: 2px;
}
.header__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink-900); font-size: .96rem; }
.header__phone svg { width: 18px; height: 18px; color: var(--brand-500); }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--ink-900); }
.burger svg { width: 26px; height: 26px; }

/* Dil değiştirici */
.lang { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang a { padding: 7px 12px; font-size: .82rem; font-weight: 700; color: var(--ink-500); line-height: 1; }
.lang a.on { background: var(--brand-grad); color: #fff; }
.lang a:not(.on):hover { color: var(--brand-700); }
.mnav .lang { align-self: flex-start; margin-top: 8px; }

/* Mobile nav ----------------------------------------------------------- */
.mnav {
  position: fixed; inset: 0; z-index: 200; background: rgba(23,19,15,.5);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.mnav.open { opacity: 1; visibility: visible; }
.mnav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
  background: #fff; padding: 24px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mnav.open .mnav__panel { transform: translateX(0); }
.mnav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mnav__head b { font-size: 1.1rem; }
.mnav a { padding: 14px 12px; border-radius: 12px; font-weight: 600; font-size: 1.05rem; color: var(--ink-800); }
.mnav a:hover, .mnav a.active { background: var(--paper-100); color: var(--brand-700); }
.mnav .btn { margin-top: 16px; justify-content: center; }

/* Hero ----------------------------------------------------------------- */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,14,9,.92) 0%, rgba(20,14,9,.72) 45%, rgba(20,14,9,.25) 100%);
}
.hero__inner { padding: 80px 0; max-width: 720px; }
.hero .eyebrow { color: var(--brand-400); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.5vw, 4rem); margin: 18px 0 20px; }
.hero h1 .accent { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.18rem; color: #e7ded2; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 54px; }
.hero__stats .num { font-size: 2.2rem; font-weight: 800; color: #fff; }
.hero__stats .num span { color: var(--brand-400); }
.hero__stats .lbl { font-size: .9rem; color: #c7bcae; }

/* Generic page hero (iç sayfalar) -------------------------------------- */
.pagehero { position: relative; padding: 72px 0 60px; background: var(--ink-900); color: #fff; overflow: hidden; }
.pagehero::before { content:""; position:absolute; right:-120px; top:-120px; width:420px; height:420px; background: var(--brand-grad); filter: blur(80px); opacity:.28; border-radius:50%; }
.pagehero .breadcrumb { font-size: .88rem; color: #b6ab9c; margin-bottom: 14px; position: relative; }
.pagehero .breadcrumb a:hover { color: var(--brand-400); }
.pagehero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); position: relative; }
.pagehero p { margin-top: 14px; color: #c9c0b4; max-width: 640px; position: relative; }

/* Cards / grids -------------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.pcard {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink-900);
  min-height: 340px; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pcard::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(15,10,6,.92) 0%, rgba(15,10,6,.35) 55%, rgba(15,10,6,.05) 100%); }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pcard:hover img { transform: scale(1.06); }
.pcard__body { position: relative; z-index: 1; padding: 26px; width: 100%; }
.pcard__body h3 { color: #fff; font-size: 1.3rem; }
.pcard__body p { color: #e2d8cb; font-size: .95rem; margin-top: 8px; }
.pcard__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 700; font-size: .9rem; color: var(--brand-400); }
.pcard__more svg { width: 16px; height: 16px; transition: transform .2s ease; }
.pcard:hover .pcard__more svg { transform: translateX(4px); }
.pcard--flat { background: var(--brand-grad); align-items: stretch; }
.pcard--flat .pcard__body { display: flex; flex-direction: column; justify-content: space-between; }

/* Feature / info card */
.fcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.fcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.fcard__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--paper-100); color: var(--brand-700); margin-bottom: 18px; }
.fcard__icon svg { width: 26px; height: 26px; }
.fcard h3 { font-size: 1.2rem; }
.fcard p { margin-top: 10px; color: var(--ink-500); font-size: .98rem; }

/* Split (image + text) ------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.split--rev { grid-template-columns: 1fr 1.05fr; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split__body h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.split__body > p { margin-top: 18px; color: var(--ink-500); }
.split__list { margin-top: 26px; display: grid; gap: 14px; }
.split__list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.split__list li svg { width: 22px; height: 22px; color: var(--brand-500); flex-shrink: 0; margin-top: 2px; }

/* Stats band ----------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats .num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stats .lbl { color: var(--ink-500); font-weight: 600; margin-top: 4px; }

/* Logo grid (referanslar) --------------------------------------------- */
.logogrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.logogrid .cell {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; aspect-ratio: 1/1;
  display: grid; place-items: center; padding: 18px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.logogrid .cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--brand-400); }
.logogrid .cell img { max-height: 100%; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: .78; transition: filter .25s ease, opacity .25s ease; }
.logogrid .cell:hover img { filter: none; opacity: 1; }

/* Marquee (ana sayfa referans şeridi) --------------------------------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: scrollx 42s linear infinite; align-items: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee img { height: 46px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .6; transition: filter .2s, opacity .2s; }
.marquee img:hover { filter: none; opacity: 1; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* Project list --------------------------------------------------------- */
.projlist { columns: 2; column-gap: 40px; }
.projlist li { break-inside: avoid; padding: 11px 0 11px 30px; position: relative; border-bottom: 1px solid var(--line); color: var(--ink-700); font-weight: 500; font-size: .98rem; }
.projlist li::before { content: ""; position: absolute; left: 4px; top: 19px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-grad); }
.projlist li b { color: var(--ink-900); font-weight: 700; }
.projlist li .city { color: var(--brand-700); font-size: .82rem; font-weight: 700; letter-spacing: .03em; }

.projcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); border-left: 4px solid transparent; border-image: var(--brand-grad) 1; }
.projcard h3 { font-size: 1.15rem; }
.projcard .loc { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--brand-700); font-weight: 700; font-size: .9rem; }
.projcard .loc svg { width: 16px; height: 16px; }

/* Certificate cards ---------------------------------------------------- */
.certcat { margin-bottom: 44px; }
.certcat h3 { font-size: 1.35rem; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.certcat h3 .tag { font-size: .75rem; background: var(--paper-100); color: var(--brand-700); padding: 4px 12px; border-radius: 999px; font-weight: 700; }
.certgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.certcard { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.certcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brand-400); }
.certcard__ic { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-grad); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.certcard__ic svg { width: 24px; height: 24px; }
.certcard b { display: block; font-size: .98rem; color: var(--ink-900); line-height: 1.3; }
.certcard span { font-size: .82rem; color: var(--brand-700); font-weight: 700; }

/* Gallery -------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery a { position: relative; overflow: hidden; border-radius: 14px; cursor: pointer; background: var(--ink-900); }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery a:hover img { transform: scale(1.08); }
.gallery a::after { content: ""; position: absolute; inset: 0; background: rgba(232,121,30,0); transition: background .25s ease; }
.gallery a:hover::after { background: rgba(232,121,30,.18); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(15,10,6,.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 24px; right: 28px; color: #fff; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; }
.lightbox__close svg { width: 24px; height: 24px; }

/* Contact -------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.infoblock { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.infoblock:last-child { border-bottom: 0; }
.infoblock__ic { width: 50px; height: 50px; border-radius: 14px; background: var(--paper-100); color: var(--brand-700); display: grid; place-items: center; flex-shrink: 0; }
.infoblock__ic svg { width: 24px; height: 24px; }
.infoblock b { display: block; color: var(--ink-900); font-size: 1.05rem; }
.infoblock a, .infoblock p { color: var(--ink-500); }
.infoblock a:hover { color: var(--brand-700); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink-800); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; font-size: .98rem; color: var(--ink-900); background: var(--paper-50); transition: border-color .16s, box-shadow .16s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 4px rgba(232,121,30,.12); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: .82rem; color: var(--ink-400); margin-top: 14px; text-align: center; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* CTA band ------------------------------------------------------------- */
.ctaband { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-900); padding: 64px 56px; color: #fff; }
.ctaband::before { content:""; position:absolute; right:-80px; bottom:-120px; width:380px; height:380px; background: var(--brand-grad); filter: blur(70px); opacity:.4; border-radius:50%; }
.ctaband__in { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.ctaband h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); max-width: 620px; }
.ctaband p { color: #c9c0b4; margin-top: 10px; max-width: 520px; }

/* Footer --------------------------------------------------------------- */
.footer { background: var(--ink-900); color: #c9c0b4; padding: 72px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 52px; margin-bottom: 18px; }
.footer__brand p { font-size: .95rem; max-width: 300px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer__col a, .footer__col li { display: block; padding: 6px 0; font-size: .95rem; color: #b6ab9c; }
.footer__col a:hover { color: var(--brand-400); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: .93rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--brand-400); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .86rem; color: #8c8378; flex-wrap: wrap; gap: 10px; }
.footer__bottom a:hover { color: var(--brand-400); }

/* Reveal animation ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Floating actions ----------------------------------------------------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); transition: transform .2s ease; }
.fab a:hover { transform: scale(1.08); }
.fab .wa { background: #25d366; }
.fab .up { background: var(--ink-800); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s, transform .2s; }
.fab .up.show { opacity: 1; visibility: visible; }
.fab a svg { width: 28px; height: 28px; }
.fab .up svg { width: 24px; height: 24px; }

/* Responsive ----------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__phone { display: none; }
  /* Mobilde header'da yalnızca menü butonu kalsın (Teklif Al + TR|EN mobil menüde) */
  .header__cta > .lang { display: none; }
  .header__cta > .btn--primary { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .logogrid { grid-template-columns: repeat(4, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 780px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .split, .split--rev, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--rev .split__media { order: -1; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pcard { min-height: 300px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .projlist { columns: 1; }
  .certgrid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery .wide { grid-column: span 2; }
  .hero__stats { gap: 28px; }
  .form .row { grid-template-columns: 1fr; }
  .ctaband { padding: 44px 28px; }
  .ctaband__in { flex-direction: column; align-items: flex-start; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .logogrid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .brand__text b { font-size: 1rem; }
}
