/* ============================================================
   Fit In Interior Decoration LLC — Brochure site
   Warm-neutral "finished-home" palette, mobile-first.
   ============================================================ */

:root{
  --bg:        #FAF7F2;
  --surface:   #FFFFFF;
  --text:      #2B2724;
  --muted:     #7A726A;
  --primary:   #173129;   /* deep forest green — logo wordmark */
  --primary-2: #0F231D;   /* darker green for depth */
  --secondary: #B5895C;   /* warm clay/tan — wood tie-in */
  --accent:    #C98C2E;   /* warm ochre — logo gold bar */
  --border:    #E7DFD5;
  --border-2:  #DACFC0;
  --focus:     #C98C2E;

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

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow-sm: 0 1px 2px rgba(43,39,36,.05), 0 2px 8px rgba(43,39,36,.04);
  --shadow-md: 0 6px 24px rgba(43,39,36,.10), 0 2px 6px rgba(43,39,36,.06);
  --shadow-lg: 0 24px 60px rgba(15,35,29,.22);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }

body{
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }

:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.wrap{ width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section{ padding-block: clamp(64px, 9vw, 130px); }

.eyebrow{
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before{
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center::after{
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center{ justify-content: center; }

h1,h2,h3{ font-family: var(--serif); font-weight: 600; color: var(--primary); margin: 0; line-height: 1.06; letter-spacing: -.01em; }
.h-sec{ font-size: clamp(2rem, 5vw, 3.4rem); }
.lede{ font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); line-height: 1.6; max-width: 60ch; }

.section-head{ max-width: 760px; }
.section-head.center{ margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  min-height: 48px;
  white-space: nowrap;
}
.btn svg{ width: 19px; height: 19px; flex: none; }
.btn-primary{ background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--primary-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-wa{ background: #1FAA53; color: #fff; }
.btn-wa:hover{ background: #178a43; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost{ background: transparent; color: var(--primary); border-color: var(--border-2); }
.btn-ghost:hover{ border-color: var(--primary); background: rgba(23,49,41,.04); }
.btn-ghost.on-dark{ color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost.on-dark:hover{ background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg{ padding: 17px 32px; font-size: 16px; }
.btn-block{ width: 100%; justify-content: center; }

/* ============================================================
   Header
   ============================================================ */
.site-header{
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,247,242,.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  height: 88px;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ height: 60px; width: auto; }
.nav{ display: flex; align-items: center; gap: 6px; }
.nav a{
  padding: 10px 16px;
  font-size: 15px; font-weight: 500;
  color: var(--text);
  border-radius: 999px;
  position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover{ color: var(--primary); background: rgba(23,49,41,.05); }
.header-cta{ display: flex; align-items: center; gap: 12px; }

.menu-toggle{
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border-2);
  background: var(--surface);
  border-radius: 12px;
  padding: 0;
  align-items: center; justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after{
  content: ""; display: block; width: 20px; height: 2px; background: var(--primary); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.menu-toggle span{ position: relative; }
.menu-toggle span::before{ position: absolute; top: -6px; left: 0; }
.menu-toggle span::after{ position: absolute; top: 6px; left: 0; }

/* ---------- Mobile drawer ---------- */
.drawer{
  position: fixed; inset: 0; z-index: 80;
  background: rgba(15,35,29,.45);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.drawer.open{ opacity: 1; visibility: visible; }
.drawer-panel{
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(86vw, 360px);
  background: var(--bg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.drawer.open .drawer-panel{ transform: translateX(0); }
.drawer-top{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.drawer-top img{ height: 50px; }
.drawer-close{ width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border-2); background: var(--surface); font-size: 22px; color: var(--primary); line-height: 1; }
.drawer a.dlink{
  padding: 15px 14px; font-size: 18px; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
}
.drawer a.dlink:hover{ color: var(--primary); }
.drawer .drawer-actions{ margin-top: 22px; display: grid; gap: 12px; }

/* ============================================================
   Hero
   ============================================================ */
.hero{ position: relative; isolation: isolate; }
.hero-media{ position: absolute; inset: 0; z-index: -2; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; }
.hero::after{
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,28,23,.86) 0%, rgba(15,28,23,.58) 45%, rgba(15,28,23,.20) 100%),
    linear-gradient(0deg, rgba(15,28,23,.55) 0%, rgba(15,28,23,0) 40%);
}
.hero-inner{
  min-height: clamp(560px, 86vh, 860px);
  display: flex; flex-direction: column; justify-content: center;
  padding-block: 80px;
  max-width: 760px;
}
.hero h1{
  color: #fff;
  font-size: clamp(2.7rem, 6.6vw, 5rem);
  font-weight: 500;
  letter-spacing: -.015em;
  margin-bottom: 22px;
}
.hero h1 em{ font-style: italic; color: #F0D9A8; }
.hero .eyebrow{ color: #E8C98A; }
.hero .eyebrow::before{ background: #E8C98A; }
.hero p.lede{ color: rgba(255,255,255,.9); max-width: 56ch; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-foot{
  margin-top: 40px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex; flex-wrap: wrap; gap: 28px 44px;
}
.hero-foot div{ color: rgba(255,255,255,.92); }
.hero-foot .k{ font-family: var(--serif); font-size: 1.5rem; color: #fff; line-height: 1; }
.hero-foot .v{ font-size: 13.5px; color: rgba(255,255,255,.7); letter-spacing: .04em; margin-top: 6px; }

/* ============================================================
   Marquee / capabilities strip
   ============================================================ */
.cap-strip{ background: var(--primary); color: #fff; overflow: hidden; }
.cap-track{ display: flex; gap: 0; white-space: nowrap; animation: marq 38s linear infinite; }
.cap-track:nth-child(2){ position: absolute; }
.cap-strip:hover .cap-track{ animation-play-state: paused; }
@media (prefers-reduced-motion: reduce){ .cap-track{ animation: none; } }
.cap-row{ position: relative; display: flex; }
.cap-track span{
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 0; margin-right: 40px;
  font-family: var(--serif); font-size: 1.35rem; color: rgba(255,255,255,.92);
}
.cap-track span::after{ content: "✦"; color: var(--accent); font-size: .9rem; margin-left: 40px; }
@keyframes marq{ to{ transform: translateX(-50%); } }

/* ============================================================
   Services
   ============================================================ */
.services-grid{
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.svc{
  background: var(--surface);
  padding: 38px 32px 40px;
  transition: background .3s var(--ease), transform .3s var(--ease);
  position: relative;
}
.svc:hover{ background: #FFFDF9; }
.svc .num{
  font-family: var(--serif); font-size: 1.05rem; color: var(--accent);
  letter-spacing: .08em; font-weight: 600;
}
.svc h3{ font-size: 1.7rem; margin: 14px 0 12px; }
.svc p{ color: var(--muted); font-size: 15.5px; margin: 0; line-height: 1.6; }
.svc .corner{ position: absolute; right: 30px; top: 36px; width: 26px; height: 26px; opacity: .25; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.svc:hover .corner{ opacity: .6; transform: translate(3px,-3px); }

/* sectors */
.sectors{ margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.sectors .lbl{ font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-right: 6px; }
.chip{
  display: inline-flex; align-items: center;
  padding: 9px 17px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border-2);
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.chip:hover{ border-color: var(--secondary); color: var(--primary); }

/* ============================================================
   Featured work / gallery
   ============================================================ */
.work{ background: linear-gradient(180deg, var(--bg) 0%, #F3EDE3 100%); }
.work-head{ display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.filters{ display: flex; flex-wrap: wrap; gap: 8px; }
.filter{
  padding: 9px 18px; border-radius: 999px;
  background: transparent; border: 1px solid var(--border-2);
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: all .22s var(--ease);
}
.filter:hover{ color: var(--primary); border-color: var(--secondary); }
.filter.active{ background: var(--primary); color: #fff; border-color: var(--primary); }

.gallery{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: row dense;
  gap: 16px;
}
.tile{
  position: relative; overflow: hidden; border-radius: var(--r-md);
  cursor: pointer; background: #ded5c8;
  box-shadow: var(--shadow-sm);
}
.tile img{ width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tile:hover img{ transform: scale(1.06); }
.tile::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,28,23,.72) 0%, rgba(15,28,23,.12) 45%, rgba(15,28,23,0) 70%);
  opacity: .85; transition: opacity .3s var(--ease);
}
.tile:hover::after{ opacity: 1; }
.tile-cap{
  position: absolute; left: 0; bottom: 0; z-index: 2;
  padding: 22px; color: #fff;
  transform: translateY(6px); opacity: .96;
  transition: transform .35s var(--ease);
}
.tile:hover .tile-cap{ transform: translateY(0); }
.tile-cap .t{ font-family: var(--serif); font-size: 1.4rem; line-height: 1.1; }
.tile-cap .s{ font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: #E8C98A; margin-top: 6px; font-weight: 600; }
.tile .plus{ position: absolute; top: 16px; right: 16px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; opacity: 0; transform: scale(.8); transition: all .3s var(--ease); }
.tile:hover .plus{ opacity: 1; transform: scale(1); }
.tile .plus svg{ width: 18px; height: 18px; stroke: #fff; }

/* grid spans (desktop) */
.tile.s-tall{ grid-row: span 2; }
.tile.s-wide{ grid-column: span 6; }
.tile.s-half{ grid-column: span 6; }
.tile.s-third{ grid-column: span 4; }
.tile.s-big{ grid-column: span 8; grid-row: span 2; }
.tile.s-quarter{ grid-column: span 6; }
.tile.hidden{ display: none; }

/* ============================================================
   Why choose us
   ============================================================ */
.why-grid{ display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.why-media{ position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.why-media img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.why-media .badge{
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(250,247,242,.95); backdrop-filter: blur(6px);
  border-radius: var(--r-md); padding: 18px 22px;
  box-shadow: var(--shadow-md); max-width: 260px;
}
.why-media .badge .bk{ font-family: var(--serif); font-size: 2rem; color: var(--primary); line-height: 1; }
.why-media .badge .bv{ font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.feat-list{ margin-top: 34px; display: grid; gap: 4px; }
.feat{ display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--border); }
.feat:last-child{ border-bottom: 1px solid var(--border); }
.feat .fnum{ font-family: var(--serif); font-size: 1.2rem; color: var(--accent); font-weight: 600; flex: none; width: 38px; }
.feat h3{ font-size: 1.45rem; margin: 0 0 6px; }
.feat p{ margin: 0; color: var(--muted); font-size: 15.5px; }

/* ============================================================
   Process
   ============================================================ */
.process{ background: var(--primary); color: #fff; }
.process h2{ color: #fff; }
.process .lede{ color: rgba(255,255,255,.78); }
.process .eyebrow{ color: #E8C98A; }
.process .eyebrow::before, .process .eyebrow.center::after{ background: #E8C98A; }
.steps{ margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); overflow: hidden; }
.step{ background: var(--primary); padding: 34px 28px 40px; transition: background .3s var(--ease); }
.step:hover{ background: var(--primary-2); }
.step .sn{ font-family: var(--serif); font-size: 2.6rem; color: var(--accent); line-height: 1; }
.step h3{ color: #fff; font-size: 1.5rem; margin: 16px 0 10px; }
.step p{ color: rgba(255,255,255,.74); font-size: 15px; margin: 0; }

/* ============================================================
   About
   ============================================================ */
.about-grid{ display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.about-media{ position: relative; }
.about-media .img-main{ border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media .img-main img{ width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-media .img-sub{ position: absolute; right: -26px; bottom: -26px; width: 52%; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid var(--bg); }
.about-media .img-sub img{ width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-body p{ color: var(--text); opacity: .9; }
.about-body p .claim{ color: var(--muted); font-size: .95em; }
.areas{ margin-top: 30px; }
.areas .lbl{ font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--secondary); font-weight: 600; margin-bottom: 14px; }
.areas-list{ display: flex; flex-wrap: wrap; gap: 8px 8px; }
.area{ font-size: 14px; color: var(--text); padding: 7px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); }
.area.sharjah{ border-color: var(--secondary); color: var(--primary); font-weight: 600; }

/* ============================================================
   Contact
   ============================================================ */
.contact{ background: #F3EDE3; }
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-card{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-sm); }
.form-field{ margin-bottom: 18px; }
.form-field label{ display: block; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 7px; letter-spacing: .01em; }
.form-field label .req{ color: var(--accent); }
.form-control{
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 15px; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border-2); border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-control:focus{ outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(23,49,41,.12); }
textarea.form-control{ resize: vertical; min-height: 96px; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note{ font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.5; }

.contact-side h3{ font-size: 1.7rem; margin-bottom: 6px; }
.cinfo{ display: grid; gap: 2px; margin-top: 8px; }
.cinfo a, .cinfo .ci{
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.cinfo .ico{ width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; }
.cinfo .ico svg{ width: 19px; height: 19px; stroke: var(--primary); fill: none; }
.cinfo .ci-k{ font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.cinfo .ci-v{ font-size: 16px; color: var(--text); font-weight: 500; margin-top: 2px; }
.cinfo a:hover .ci-v{ color: var(--primary); }

.map-ph{
  margin-top: 22px; border-radius: var(--r-md); overflow: hidden;
  border: 1px dashed var(--border-2); background:
    repeating-linear-gradient(45deg, #efe7da, #efe7da 12px, #eae1d2 12px, #eae1d2 24px);
  aspect-ratio: 16/7; display: grid; place-items: center; text-align: center; padding: 20px;
}
.map-ph .mp-in{ background: rgba(250,247,242,.86); padding: 14px 20px; border-radius: var(--r-sm); }
.map-ph .mp-t{ font-family: var(--serif); font-size: 1.25rem; color: var(--primary); }
.map-ph .mp-s{ font-size: 13px; color: var(--muted); margin-top: 3px; }
.socials{ display: flex; gap: 10px; margin-top: 22px; }
.socials a{ width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); display: grid; place-items: center; transition: all .22s var(--ease); }
.socials a:hover{ background: var(--primary); border-color: var(--primary); }
.socials a svg{ width: 20px; height: 20px; fill: var(--primary); transition: fill .22s var(--ease); }
.socials a:hover svg{ fill: #fff; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer{ background: var(--primary-2); color: rgba(255,255,255,.78); }
.footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-block: clamp(48px, 6vw, 80px); }
.footer-brand img{ height: 88px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p{ font-size: 14.5px; line-height: 1.65; max-width: 36ch; }
.footer-col h4{ font-family: var(--sans); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: #E8C98A; margin: 0 0 18px; font-weight: 600; }
.footer-col a, .footer-col p{ display: block; color: rgba(255,255,255,.74); font-size: 14.5px; padding: 6px 0; margin: 0; transition: color .2s var(--ease); }
.footer-col a:hover{ color: #fff; }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,.12); padding-block: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom p{ margin: 0; font-size: 13px; color: rgba(255,255,255,.55); }
.footer-bottom .disc{ max-width: 60ch; }

/* ============================================================
   Floating mobile action bar
   ============================================================ */
.mobile-bar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-2);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-bar a{
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: 8px 4px; border-radius: var(--r-sm); min-height: 52px;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
}
.mobile-bar a svg{ width: 21px; height: 21px; }
.mobile-bar .mb-wa{ background: #1FAA53; color: #fff; }
.mobile-bar .mb-call{ background: var(--primary); color: #fff; }
.mobile-bar .mb-quote{ background: var(--surface); color: var(--primary); border: 1px solid var(--border-2); }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox{
  position: fixed; inset: 0; z-index: 90;
  background: rgba(11,20,16,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
  padding: clamp(16px, 4vw, 56px);
}
.lightbox.open{ opacity: 1; visibility: visible; }
.lb-stage{ position: relative; max-width: 1100px; width: 100%; }
.lb-img-wrap{ border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); background: #1a2620; }
.lb-img-wrap img{ width: 100%; max-height: 78vh; object-fit: contain; display: block; }
.lb-meta{ display: flex; align-items: baseline; gap: 14px; justify-content: space-between; margin-top: 16px; color: #fff; flex-wrap: wrap; }
.lb-meta .t{ font-family: var(--serif); font-size: 1.6rem; }
.lb-meta .s{ font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: #E8C98A; font-weight: 600; }
.lb-meta .count{ font-size: 13px; color: rgba(255,255,255,.55); }
.lb-btn{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  color: #fff; display: grid; place-items: center; backdrop-filter: blur(4px);
  transition: background .2s var(--ease);
}
.lb-btn:hover{ background: rgba(255,255,255,.24); }
.lb-btn svg{ width: 22px; height: 22px; stroke: #fff; fill: none; }
.lb-prev{ left: -8px; }
.lb-next{ right: -8px; }
.lb-close{ position: absolute; top: -52px; right: 0; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); color: #fff; font-size: 24px; line-height: 1; }
.lb-close:hover{ background: rgba(255,255,255,.24); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal{ opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .footer-top{ grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px){
  .nav, .header-cta .btn{ display: none; }
  .menu-toggle{ display: inline-flex; }
  .header-cta{ gap: 10px; }
  .header-cta .btn-wa.hdr-wa{ display: inline-flex; padding: 12px 18px; }
  .why-grid{ grid-template-columns: 1fr; }
  .why-media{ max-width: 460px; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-media{ max-width: 480px; margin-inline: auto; }
  .about-media .img-sub{ right: 0; width: 46%; }
  .contact-grid{ grid-template-columns: 1fr; }
  /* gallery -> simpler responsive grid */
  .gallery{ grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
  .tile.s-big{ grid-column: span 6; grid-row: span 2; }
  .tile.s-wide, .tile.s-half, .tile.s-quarter{ grid-column: span 6; }
  .tile.s-third{ grid-column: span 3; }
  .tile.s-tall{ grid-row: span 1; }
}

@media (max-width: 720px){
  .header-cta .btn-wa.hdr-wa{ display: none; }
  body{ padding-bottom: 72px; }
  .mobile-bar{ display: grid; }
  .site-header{ position: sticky; }
  .header-inner{ height: 74px; }
  .brand img{ height: 46px; }
  .services-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; gap: 30px; }
  .form-row{ grid-template-columns: 1fr; }
  .hero-foot{ gap: 20px 32px; }
  .gallery{ grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 12px; }
  .tile.s-big, .tile.s-wide, .tile.s-half, .tile.s-quarter, .tile.s-third{ grid-column: span 1; grid-row: span 1; }
  .tile.feature-m{ grid-column: span 2; grid-row: span 1; }
  .lb-prev{ left: 6px; } .lb-next{ right: 6px; }
  .lb-btn{ width: 44px; height: 44px; }
  .lb-close{ top: -50px; }
}

@media (max-width: 400px){
  body{ font-size: 16px; }
  .hero-inner{ min-height: 78vh; }
  .gallery{ grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .tile.feature-m{ grid-column: span 1; }
  .sectors .lbl{ width: 100%; margin-bottom: 4px; }
}
