/* /assets/css/home.css */
/* HOME PAGE ONLY — fully scoped to body.home */

/* ===== Tokens (local to Home) ===== */
body.home{
  --bg-dark:#121316;
  --bg-soft:#f6f7fb;
  --pill:#ffffff;
  --txt:#111827;
  --muted:#6b7280;
  --on-dark:#e9ecf3;

  --accent:#ff3b0a;
  --accent-2:#ff7a18;

  --radius-xl:28px;
  --radius-lg:20px;
  --radius-md:14px;

  --shadow-1:0 10px 30px rgba(0,0,0,.12);
  --shadow-2:0 18px 60px rgba(0,0,0,.22);

  --container:1180px;

  --gutter-desktop:24px;
  --gutter-tablet:18px;
  --gutter-mobile:14px;
}

/* container on Home only */
body.home .container{
  width: min(var(--container), calc(100% - (var(--gutter-desktop) * 2)));
  margin-inline: auto;
}

/* ===== Type helpers (Home only) ===== */
body.home .section{ padding:88px 0; }
body.home .center{ text-align:center; }

body.home .kicker{
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:700;
  font-size:.78rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 14px;
}
body.home .kicker--accent{ color: var(--accent); }
body.home .kicker--on-dark{ color: rgba(255,255,255,.75); }
body.home .kicker--on-cta{ color: rgba(255,255,255,.92); }

body.home .h2{
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height:1.1;
  margin: 0 0 14px;
  color: var(--txt);
}
body.home .h2--on-dark{ color: var(--on-dark); }

body.home .serif{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
}

body.home .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  border:1px solid transparent;
  font-weight:800;
  padding: 14px 18px;
  line-height:1;
}
body.home .btn--pill{ border-radius:999px; }
body.home .btn--accent{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#fff;
  box-shadow: var(--shadow-1);
}
body.home .btn--dark{ background:#0b0c10; color:#fff; }
body.home .btn--ghost{ background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.22); color:#fff; }
body.home .btn--ghost-dark{ background: rgba(0,0,0,.14); border-color: rgba(0,0,0,.22); color:#0b0c10; }
body.home .btn--small{ padding:10px 14px; font-size:.92rem; }

body.home .muted{ color: var(--muted); line-height:1.7; }

/* ===== HERO ===== */
body.home .hero-slab{
  position: relative;
  min-height: 92vh;
  display:flex;
  align-items:flex-end;
  padding: 160px 0 80px;
  overflow:hidden;
}
body.home .hero-slab__bg{
  position:absolute; inset:0;
  background: url("/assets/img/home-hero.jpg") center/cover no-repeat;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}
body.home .hero-slab__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.18) 55%, rgba(0,0,0,.30));
}
body.home .hero-slab__content{ position: relative; z-index: 2; color:#fff; }

body.home .hero-slab__grid{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 44px;
  align-items:end;
}

body.home .hero-title{
  font-size: clamp(2.6rem, 6.2vw, 5.0rem);
  line-height:.98;
  margin: 0 0 26px;
  font-weight: 900;
}
body.home .hero-title__script{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}
body.home .hero-title__em{ font-weight: 950; }

body.home .hero-note{
  margin: 0 0 18px;
  max-width: 46ch;
  line-height:1.7;
  color: rgba(255,255,255,.88);
}

body.home .hero-checks{
  display:flex;
  gap: 18px;
  flex-wrap:wrap;
  padding:0; margin:0;
  list-style:none;
  color: rgba(255,255,255,.9);
  font-weight:800;
}
body.home .chk{
  display:inline-grid;
  place-items:center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-right: 10px;
  font-size:.85rem;
}

body.home .hero-social{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}
body.home .hero-social__label{ opacity:.85; font-weight:800; }
body.home .ico{
  display:grid;
  place-items:center;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  color:#fff;
  text-decoration:none;
  background: rgba(0,0,0,.16);
}

/* ===== Pill header over hero (Home only) ===== */
body.home .pill-header{
  position:absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 9999;
}

body.home .pill-header__inner{
  width: min(var(--container), calc(100% - (var(--gutter-desktop) * 2)));
  margin-inline:auto;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: var(--shadow-2);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  position: relative; /* anchor drawer on mobile */
}

body.home .pill-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--txt);
  font-weight: 950;
  min-width: 0;
}
body.home .pill-brand img{
  height: 48px;
  width: auto;
  display: block;
}

body.home .pill-brand__mark{
  width: 38px; height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  color:#fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

body.home .pill-nav{
  display:flex;
  gap: 18px;
  align-items:center;
  min-width: 0;
}
body.home .pill-nav__link{
  text-decoration:none;
  color: #111827;
  font-weight: 850;
  opacity:.9;
  padding: 10px 10px;
  border-radius: 999px;
  white-space:nowrap;
}
body.home .pill-nav__link:hover{ background: rgba(17,24,39,.06); }
body.home .pill-nav__link.is-active{ background: rgba(17,24,39,.08); }

body.home .pill-cta{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 0;
}
body.home .pill-cta__phone{
  display:flex;
  align-items:center;
  gap: 10px;
  color:#111827;
  text-decoration:none;
  font-weight: 850;
  opacity:.92;
  white-space:nowrap;
}
body.home .pill-cta__icon{
  width: 34px; height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(17,24,39,.06);
}

/* dropdown (harmless even if not used) */
body.home .pill-nav__dd{ position:relative; }
body.home .pill-nav__btn{ background:transparent; border:0; cursor:pointer; }
body.home .pill-nav__menu{
  position:absolute;
  top: 48px;
  left: 0;
  min-width: 190px;
  background:#fff;
  border-radius: 16px;
  box-shadow: var(--shadow-1);
  padding: 10px;
  display:none;
  z-index: 20;
}
body.home .pill-nav__menu a{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration:none;
  color:#111827;
  font-weight:800;
}
body.home .pill-nav__menu a:hover{ background: rgba(17,24,39,.06); }
body.home .pill-nav__dd.is-open .pill-nav__menu{ display:block; }

/* burger + drawer (single source of truth) */
body.home .pill-burger{
  display:none;
  width: 44px; height: 44px;
  border:0;
  background: rgba(17,24,39,.06);
  border-radius: 999px;
  cursor:pointer;
  flex: 0 0 auto;
}
body.home .pill-burger span{
  display:block;
  height: 2px;
  width: 18px;
  background:#111827;
  margin: 4px auto;
}

body.home .pill-drawer{
  position:absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  margin: 0;

  background:#fff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);

  display:none;
  z-index: 10000;
}
body.home .pill-drawer.is-open{ display:block; }

body.home .pill-drawer a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 850;
  color:#111827;
  text-decoration:none;
}
body.home .pill-drawer a:hover{ background: rgba(17,24,39,.06); }

/* inquiry bar */
body.home .inquiry-bar{
  margin-top: 34px;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
  padding: 22px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items:end;
}
body.home .inquiry-bar__field label{
  display:block;
  font-weight:900;
  color:#111827;
  margin-bottom: 10px;
}
body.home .inquiry-bar select{
  width:100%;
  padding: 14px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.10);
  background: #fff;
  font-weight:800;
  color:#111827;
  min-width: 0;
}
body.home .inquiry-bar__btn{ min-width: 180px; height: 52px; }

/* ===== ABOUT (home section) ===== */
body.home .about-split{ background:#fff; }

body.home .about-split__top{
  display:grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 34px;
  align-items:start;
  margin-bottom: 34px;
}
body.home .about-split__actions{
  display:flex;
  align-items:center;
  gap: 16px;
  margin-top: 18px;
  flex-wrap:wrap;
}
body.home .rating-chip{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17,24,39,.06);
  font-weight:900;
}
body.home .rating-chip__stars{ color: var(--accent); letter-spacing:.08em; }

body.home .about-split__grid{
  display:grid;
  grid-template-columns: .75fr .95fr 1.3fr;
  gap: 22px;
  align-items:stretch;
}
body.home .about-quote{
  border-radius: var(--radius-lg);
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: var(--shadow-1);
  display:flex;
  flex-direction:column;
  gap: 14px;
}
body.home .about-quote__text{ font-style: italic; line-height:1.7; color:#111827; margin:0; }
body.home .about-quote__by{ margin:0; font-weight:900; color: var(--accent); }
body.home .about-quote__img{
  margin-top:auto;
  height: 190px;
  border-radius: 18px;
  background: url("/assets/img/about-1.jpg") center/cover no-repeat;
}
body.home .about-photo{
  border-radius: var(--radius-lg);
  background: url("/assets/img/about-2.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-1);
  min-height: 420px;
}

body.home .stats-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
body.home .stat-card{
  border-radius: var(--radius-lg);
  padding: 18px;
  background:#fff;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: var(--shadow-1);
}
body.home .stat-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}
body.home .stat-card h3{
  margin:0;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}
body.home .stat-card__icon{
  width: 36px; height: 36px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(17,24,39,.06);
  font-weight:900;
}
body.home .stat-card__label{ margin: 10px 0 6px; font-weight: 950; }
body.home .stat-card__desc{ margin:0; color: var(--muted); line-height:1.6; }

/* ===== Dark band ===== */
body.home .band{ position:relative; }
body.home .band--dark{ background: var(--bg-dark); color: var(--on-dark); }
body.home .band__head{ margin-bottom: 34px; }
body.home .band__head.center{ text-align:center; }
body.home .band__cta{ display:flex; justify-content:center; margin-top: 26px; }

/* ===== Projects cards (home) ===== */
body.home .project-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
body.home .project-card{
  position:relative;
  border-radius: var(--radius-xl);
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  min-height: 280px;
}
body.home .project-card__img{
  position:absolute; inset:0;
  background-position:center;
  background-size:cover;
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.02);
}
body.home .pimg-1{ background-image: url("../img/project-office-difc.jpg"); }
body.home .pimg-2{ background-image: url("../img/project-villa-dubai-hills.jpg"); }
body.home .pimg-3{ background-image: url("../img/project-retail-mall.jpg"); }
body.home .pimg-4{ background-image: url("../img/project-restaurant-jlt.jpg"); }

body.home .project-card::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.62));
}
body.home .project-card__meta{
  position:absolute;
  left: 18px;
  right: 56px;
  bottom: 18px;
  z-index: 2;
}
body.home .pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 950;
  font-size:.86rem;
  white-space:nowrap;
}
body.home .project-card h3{ margin: 10px 0 6px; font-size: 1.3rem; color:#fff; }
body.home .project-card p{ margin:0; opacity:.88; line-height:1.5; max-width: 56ch; }

body.home .project-card__link{
  position:absolute;
  right: 16px; top: 16px;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  text-decoration:none;
  color:#fff;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 950;
}

/* ===== Services slab (home) ===== */
body.home .services-slab{ background: var(--bg-soft); }

body.home .services-slab__head{
  display:flex;
  justify-content:space-between;
  gap: 22px;
  align-items:flex-start;
  margin-bottom: 26px;
}
body.home .services-slab__side{
  max-width: 46ch;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
body.home .service-cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
body.home .service-card{
  background:#fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: var(--shadow-1);
  padding: 18px;
  min-height: 220px;
  display:flex;
  flex-direction:column;
}
body.home .service-card__badge{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(17,24,39,.06);
  font-weight: 950;
  opacity:.35;
  margin-bottom: 10px;
}
body.home .service-card h3{ margin: 0 0 8px; color:#111827; }
body.home .service-card p{ margin:0 0 14px; color: var(--muted); line-height:1.6; }
body.home .service-card a{
  margin-top:auto;
  text-decoration:none;
  font-weight: 950;
  color: var(--accent);
}

/* ===== Stories (home) ===== */
body.home .stories-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
body.home .story-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  padding: 18px;
}
body.home .story-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  position:relative;
  padding-right: 32px;
}
body.home .avatar{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 950;
  color:#fff;
}
body.home .story-card h3{ margin:0; font-size:1rem; color:#fff; }
body.home .story-card p{ margin:0; opacity:.75; }

body.home .quote-mark{
  position:absolute;
  right: 0;
  top: -8px;
  width: 34px; height: 34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#fff;
  font-weight:950;
}
body.home .story-card__text{
  margin: 14px 0 0;
  line-height:1.7;
  opacity:.9;
}

/* ===== Featured case ===== */
body.home .featured-case{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
body.home .featured-case__image{
  border-radius: 18px;
  min-height: 280px;
  background: url("/assets/img/project-villa-dubai.jpg") center/cover no-repeat;
}
body.home .featured-case__content h3{
  color: #fff;
  margin: 12px 0 14px;
}
body.home .case-points{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}
body.home .case-points .chk{
  display: inline-block;
  width: 18px;
  text-align: center;
  margin-right: 8px;
  color: #fff;
}

/* ===== FAQ + INSIGHTS ===== */
body.home .faq-insights{ background:#fff; }

body.home .faq-insights__grid{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:28px;
  align-items:start;
}

body.home .mini-cta{
  margin-top:18px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  border-radius:var(--radius-xl);
  padding:18px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
body.home .mini-cta p{ margin:0; font-weight:900; }

body.home .faq-right{
  border-top:1px solid rgba(17,24,39,.10);
}

body.home .faq-item{
  width:100%;
  text-align:left;
  border:0;
  background:transparent;
  padding:18px 0;
  border-bottom:1px solid rgba(17,24,39,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  cursor:pointer;
  font-weight:950;
  color:#111827;
  appearance:none;
}

body.home .faq-item__ico{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(17,24,39,.06);
  font-weight:950;
  flex:0 0 auto;
  transition:transform .2s ease;
}

body.home .faq-panel{
  display:none;
  padding:0 0 18px;
  color:var(--muted);
  line-height:1.7;
  border-bottom:1px solid rgba(17,24,39,.10);
}

body.home .faq-item.is-open + .faq-panel{ display:block; }
body.home .faq-item.is-open .faq-item__ico{ transform:rotate(45deg); }

/* details-based FAQ support (if you use <details>) */
body.home .faq-d{ border-bottom: 1px solid rgba(17,24,39,.10); }
body.home .faq-d:first-child{ border-top: 0; }
body.home .faq-d > summary{ list-style:none; }
body.home .faq-d > summary::-webkit-details-marker{ display:none; }
body.home .faq-d .faq-panel{
  display:block;
  padding: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}
body.home .faq-d:not([open]) .faq-panel{ display:none; }
body.home .faq-d[open] .faq-item__ico{ transform: rotate(45deg); }
body.home .faq-item__ico{ transition: transform .15s ease; }

/* INSIGHTS */
body.home .insights{ margin-top:70px; }

body.home .insight-cards{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
body.home .insight-card{
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(17,24,39,.10);
  box-shadow:var(--shadow-1);
  width:100%;
  max-width:360px;
  justify-self:stretch;
}
body.home .insight-card__img{
  height:170px;
  background-position:center;
  background-size:cover;
}
body.home .i1{ background-image:url("../img/insight-1.png"); }
body.home .i2{ background-image:url("../img/insight-2.png"); }
body.home .i3{ background-image:url("../img/insight-3.png"); }
body.home .insight-card__body{ padding:16px 18px; }
body.home .insight-card__date{
  margin:0 0 8px;
  color:var(--accent);
  font-weight:950;
  font-size:.9rem;
}
body.home .insight-card h3{ margin:0 0 6px; line-height:1.25; }
body.home .insight-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* stop “one-word-per-line” wrapping (home insights only) */
body.home .insight-card,
body.home .insight-card *{
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* ===== HOME FOOTER (omahe style) — scoped to home only ===== */
body.home .about-footer{
  background:#1b1e22;
  color: rgba(255,255,255,.78);
  padding:70px 0 26px;
  border-top:1px solid rgba(255,255,255,.08);
}
body.home .about-footer__inner{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

/* CTA slab */
body.home .about-footer .footer-cta{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  padding:40px 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:0 18px 60px rgba(0,0,0,.45);
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:22px;
  align-items:center;
  margin-bottom:44px;
}
body.home .about-footer .footer-cta__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.9;
  background:
    radial-gradient(600px 340px at 10% 0%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(520px 280px at 75% 10%, rgba(255,255,255,.12), transparent 62%),
    radial-gradient(260px 260px at 84% 26%, rgba(255,255,255,.10), transparent 65%),
    radial-gradient(420px 420px at 55% 90%, rgba(255,255,255,.10), transparent 70%);
}
body.home .about-footer .footer-cta__left,
body.home .about-footer .footer-cta__right{
  position:relative;
  z-index:1;
}
body.home .about-footer .footer-cta__kicker{
  font-size:12px;
  letter-spacing:.18em;
  font-weight:900;
  margin-bottom:12px;
  color:rgba(255,255,255,.92);
  text-transform:uppercase;
}
body.home .about-footer .footer-cta__title{
  margin:0;
  color:#fff;
  font-size:40px;
  line-height:1.06;
  letter-spacing:-.5px;
}
body.home .about-footer .footer-cta__script{
  font-style:italic;
  font-family:ui-serif, Georgia, "Times New Roman", serif;
  font-weight:500;
}
body.home .about-footer .footer-cta__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
body.home .about-footer .footer-cta__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  border:1px solid rgba(255,255,255,.55);
}
body.home .about-footer .footer-cta__btn--solid{
  background:#fff;
  color:#0f1215;
  border-color:#fff;
}
body.home .about-footer .footer-cta__btn--outline{
  background:transparent;
  color:#fff;
}

/* contact rows */
body.home .about-footer .cta-contact{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:14px;
  align-items:center;
  padding:10px 0;
}
body.home .about-footer .cta-contact__icon{
  width:44px;
  height:44px;
  border-radius:999px;
  background:rgba(255,255,255,.20);
  border:1px solid rgba(255,255,255,.34);
  display:grid;
  place-items:center;
  color:#fff;
  font-size:14px;
}
body.home .about-footer .cta-contact__label{
  font-size:12px;
  color:rgba(255,255,255,.80);
  margin-bottom:2px;
  font-weight:800;
}
body.home .about-footer .cta-contact__value{
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
}

/* columns */
body.home .about-footer .footer-cols{
  display:grid;
  grid-template-columns:1.1fr 1.1fr 1fr 1fr 1.2fr;
  gap:26px;
  padding:6px 0 26px;
}
body.home .about-footer .footer-col h3{
  margin:0 0 14px;
  font-size:14px;
  color:rgba(255,255,255,.92);
  font-weight:900;
}
body.home .about-footer .footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:11px;
}
body.home .about-footer .footer-col a{
  color:rgba(255,255,255,.68);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}
body.home .about-footer .footer-col a:hover{ color:rgba(255,255,255,.92); }

body.home .about-footer .pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:2px 8px;
  margin-left:8px;
  border-radius:999px;
  background:rgba(255,59,10,.18);
  border:1px solid rgba(255,59,10,.35);
  color:rgba(255,255,255,.92);
  font-size:11px;
  font-weight:900;
}
body.home .about-footer .pill--new{
  background:rgba(255,59,10,.22);
  border-color:rgba(255,59,10,.45);
}

body.home .about-footer .footer-bottom{
  margin-top:14px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
body.home .about-footer .footer-copy{
  font-size:12.5px;
  color:rgba(255,255,255,.65);
  font-weight:700;
}
body.home .about-footer .footer-legal{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
body.home .about-footer .footer-legal a{
  font-size:12.5px;
  color:rgba(255,255,255,.58);
  text-decoration:none;
  font-weight:700;
}
body.home .about-footer .footer-legal a:hover{ color:rgba(255,255,255,.90); }

/* ===== Responsive (Home only) ===== */
@media (min-width: 981px){
  body.home .insight-cards{ justify-content:center; }
  body.home .insight-card{ justify-self:center; }
}

@media (max-width: 980px){
  body.home .container{
    width: min(var(--container), calc(100% - (var(--gutter-tablet) * 2)));
  }
  body.home .section{ padding:64px 0; }

  body.home .hero-slab{
    min-height: auto;
    padding: 130px 0 54px;
  }
  body.home .hero-slab__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  body.home .hero-title{
    font-size: clamp(2.1rem, 8.6vw, 3.1rem);
  }
  body.home .hero-note{ max-width: 100%; }

  body.home .pill-header__inner{
    width: min(var(--container), calc(100% - (var(--gutter-tablet) * 2)));
    padding: 12px 12px;
    gap: 12px;
    border-radius: 22px;
  }

  body.home .pill-brand img{ height: 40px; }

  body.home .pill-nav{ display:none; }
  body.home .pill-cta__phone{ display:none; }
  body.home .pill-burger{
    display:grid;
    place-items:center;
  }

  body.home .inquiry-bar{
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }
  body.home .inquiry-bar__btn{
    width: 100%;
    min-width: 0;
  }

  body.home .about-split__top{ grid-template-columns: 1fr; }
  body.home .about-split__grid{ grid-template-columns: 1fr; }
  body.home .about-photo{ min-height: 280px; }

  body.home .project-cards{ grid-template-columns: 1fr; }

  body.home .services-slab__head{
    flex-direction:column;
    align-items:flex-start;
  }
  body.home .service-cards{ grid-template-columns: 1fr 1fr; }

  body.home .stories-grid{ grid-template-columns: 1fr; }
  body.home .featured-case{ grid-template-columns:1fr; }
  body.home .featured-case__image{ min-height:220px; }

  body.home .faq-insights__grid{ grid-template-columns:1fr; }
  body.home .insight-cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    align-items:stretch;
  }
  body.home .insight-card{ max-width:none; }

  body.home .about-footer .footer-cta{
    grid-template-columns:1fr;
    padding:30px 22px;
  }
  body.home .about-footer .footer-cols{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 560px){
  body.home .container{
    width: min(var(--container), calc(100% - (var(--gutter-mobile) * 2)));
  }
  body.home .section{ padding:54px 0; }

  body.home .pill-header{ top: 14px; }
  body.home .pill-header__inner{
    width: min(var(--container), calc(100% - (var(--gutter-mobile) * 2)));
    padding: 10px 10px;
    border-radius: 18px;
  }

  body.home .pill-brand img{ height: 36px; }
  body.home .pill-brand__mark{ width:34px; height:34px; }

  body.home .inquiry-bar{
    padding: 14px;
    border-radius: 18px;
  }

  body.home .service-cards{ grid-template-columns: 1fr; }
  body.home .insight-cards{ grid-template-columns:1fr; }

  body.home .about-footer .footer-cols{ grid-template-columns:1fr; }
  body.home .about-footer .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  body.home .about-footer .footer-cta__title{ font-size:30px; }
}