/* ============================================================
   ASIRI SAMAN — Construction & Painting
   Design system: "site plan" — blueprint dimension lines, set-square
   corner brackets (echoing the triangle mark in the logo), condensed
   industrial display type over warm paper/ink neutrals.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  --ink: #17140f;
  --ink-soft: #2a251c;
  --paper: #f7f5ee;
  --paper-raised: #ffffff;
  --concrete: #ddd6c6;
  --concrete-line: #cabf9e;
  --steel: #5b5546;
  --steel-soft: #837c68;

  --red: #e3342b;
  --blue: #1c4fc4;
  --yellow: #f3c218;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --max: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; width:100%; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  width:100%;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family: var(--font-display); font-weight:800; letter-spacing:0.01em; line-height:1.02; text-transform:uppercase; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Eyebrow / dimension label ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight:600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.eyebrow::before{
  content:"";
  width: 22px;
  height: 2px;
  background: var(--red);
  display:block;
}
.on-dark .eyebrow{ color: #d8d2c0; }
.on-dark .eyebrow::before{ background: var(--yellow); }

/* ---------- Corner bracket motif (from the logo's set-square) --- */
.bracket{
  position:relative;
}
.bracket::before,
.bracket::after{
  content:"";
  position:absolute;
  width: 18px;
  height: 18px;
  border: 2.5px solid var(--ink);
  opacity:0.85;
}
.bracket::before{
  top:-1px; left:-1px;
  border-right:none; border-bottom:none;
}
.bracket::after{
  bottom:-1px; right:-1px;
  border-left:none; border-top:none;
}

/* ---------- Dimension / tape-measure divider ---------- */
.dim-rule{
  height: 14px;
  background-image: repeating-linear-gradient(
    to right,
    var(--concrete-line) 0, var(--concrete-line) 1.5px,
    transparent 1.5px, transparent 24px
  );
  background-position: bottom;
  background-size: 100% 100%;
  border-bottom: 1.5px solid var(--concrete-line);
  position:relative;
}
.dim-rule span{
  position:absolute;
  right:0; top:-6px;
  background: var(--paper);
  padding-left: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel-soft);
  letter-spacing: 0.08em;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky;
  top:0;
  z-index: 500;
  background: rgba(247,245,238,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--concrete-line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-block: 12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:1;
  min-width:0;
}
.brand img{
  height: 50px;
  width:auto;
  flex-shrink:0;
}
.brand-text{
  font-family: var(--font-display);
  font-weight:900;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height:1;
  text-transform:uppercase;
  min-width:0;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-text small{
  display:block;
  font-family: var(--font-mono);
  text-transform:none;
  font-size: 10px;
  font-weight:500;
  letter-spacing:0.03em;
  color: var(--steel);
  margin-top: 3px;
}

.main-nav{ display:flex; align-items:center; gap: 2px; }
.main-nav a{
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 14px;
  position:relative;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:14px; right:14px; bottom:6px;
  height:2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after{ transform: scaleX(1); }

.header-actions{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-family: var(--font-mono);
  font-weight:600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  white-space:nowrap;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn-primary{
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover{
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}
.btn-ghost{
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover{
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}
.btn-on-dark{
  border-color: var(--paper);
  color: var(--paper);
}
.btn-on-dark.btn-primary{
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.btn-on-dark.btn-primary:hover{
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}
.btn-on-dark.btn-ghost:hover{
  background: var(--paper);
  color: var(--ink);
}
.btn svg{ width:16px; height:16px; flex-shrink:0; }

.call-chip{
  display:flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight:600;
}
.call-chip svg{ width:16px; height:16px; color: var(--red); }

.hamburger{
  display:none;
  width: 44px; height:44px;
  border: 2px solid var(--ink);
  background: transparent;
  border-radius: var(--radius);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  flex-shrink:0;
}
.hamburger span{
  display:block;
  width: 20px; height:2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-scrim{
  position:fixed; inset:0;
  background: rgba(23,20,15,0.55);
  opacity:0;
  pointer-events:none;
  transition: opacity .3s ease;
  z-index: 600;
}
.nav-scrim.is-open{ opacity:1; pointer-events:auto; }

.mobile-drawer{
  position:fixed;
  top:0; right:0;
  height:100%;
  width: min(84vw, 360px);
  background: var(--ink);
  color: var(--paper);
  z-index: 700;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.22,.9,.32,1);
  display:flex;
  flex-direction:column;
  padding: 26px 26px 34px;
  overflow-y:auto;
}
.mobile-drawer.is-open{ transform: translateX(0); }
.drawer-top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom: 34px;
}
.drawer-top .brand-text{ color: var(--paper); }
.drawer-close{
  width:40px; height:40px;
  border:2px solid var(--paper);
  background:transparent;
  color:var(--paper);
  border-radius: var(--radius);
  display:flex; align-items:center; justify-content:center;
}
.drawer-nav{ display:flex; flex-direction:column; }
.drawer-nav a{
  font-family: var(--font-display);
  font-weight:800;
  font-size: 26px;
  text-transform:uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247,245,238,0.16);
  letter-spacing:0.01em;
}
.drawer-nav a span{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yellow);
  margin-right:10px;
}
.drawer-foot{
  margin-top: auto;
  padding-top: 26px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.drawer-foot .btn{ justify-content:center; width:100%; }
.drawer-contact{
  font-family: var(--font-mono);
  font-size:13px;
  color:#cfc9b7;
  line-height:1.8;
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:flex-end;
  color: var(--paper);
  overflow:hidden;
}
.hero-media{
  position:absolute; inset:0;
  z-index:0;
}
.hero-media img{
  width:100%; height:100%; object-fit:cover; object-position: center 30%;
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(17,15,10,0.55) 0%, rgba(17,15,10,0.35) 32%, rgba(17,15,10,0.86) 100%),
    linear-gradient(90deg, rgba(17,15,10,0.55) 0%, rgba(17,15,10,0.05) 45%);
}
.hero-content{
  position:relative;
  z-index:1;
  width:100%;
  padding-block: 120px 0;
}
.hero-eyebrow-row{
  display:flex; align-items:center; gap:16px;
  margin-bottom: 22px;
  flex-wrap:wrap;
}
.hero h1{
  font-size: clamp(42px, 7.4vw, 96px);
  max-width: 15ch;
  margin-bottom: 22px;
}
.hero h1 em{
  font-style:normal;
  color: var(--yellow);
}
.hero-sub{
  max-width: 560px;
  font-size: 17px;
  color: #e9e5d8;
  margin-bottom: 34px;
}
.hero-cta-row{
  display:flex; gap:16px; flex-wrap:wrap;
  margin-bottom: 54px;
}

/* Stat strip — dimension line styling */
.stat-strip{
  border-top: 1.5px solid rgba(247,245,238,0.28);
  background: rgba(17,15,10,0.35);
}
.stat-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.stat-item{
  padding: 22px var(--gutter);
  border-left: 1.5px solid rgba(247,245,238,0.22);
  position:relative;
}
.stat-item:first-child{ border-left:none; padding-left: var(--gutter); }
.stat-item::before{
  content:"";
  position:absolute;
  top:0; left:-1.5px;
  width:9px; height:9px;
  border-left:1.5px solid rgba(247,245,238,0.4);
  border-top:1.5px solid rgba(247,245,238,0.4);
}
.stat-num{
  font-family: var(--font-display);
  font-weight:900;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--paper);
  display:flex;
  align-items:baseline;
  gap:2px;
}
.stat-num .unit{ color: var(--yellow); font-size:0.55em; }
.stat-label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: #beb8a4;
  margin-top:6px;
}

/* ============================================================
   SECTION GENERICS
   ============================================================ */
.section{ padding-block: 100px; }
.section-tight{ padding-block: 72px; }
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 40px;
  margin-bottom: 54px;
  flex-wrap:wrap;
}
.section-head h2{
  font-size: clamp(32px, 4.4vw, 52px);
  max-width: 14ch;
  margin-top:14px;
}
.section-head .lede{
  max-width: 380px;
  color: var(--steel);
  font-size:15px;
  padding-bottom: 4px;
}
.on-dark{ background: var(--ink); color: var(--paper); }
.on-dark .section-head .lede{ color:#c7c1af; }
.on-concrete{ background: var(--concrete); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 64px;
  align-items:center;
}
.about-images{
  position:relative;
  padding: 40px 16px 46px 0;
}
.about-img-main{
  position:relative;
}
.about-img-main img{ border-radius: var(--radius); }
.about-img-inset{
  position:absolute;
  top: -34px;
  right: -8px;
  width: 42%;
  background: var(--paper);
  padding: 10px 10px 14px;
  box-shadow: 0 18px 34px -16px rgba(23,20,15,0.35);
  border: 1px solid var(--concrete-line);
}
.about-img-inset img{ aspect-ratio: 4/3; object-fit:cover; }
.about-img-inset .eyebrow{ font-size:10.5px; }
.about-img-tag{
  position:absolute;
  bottom: 0;
  left: 24px;
  transform: translateY(50%);
  background: var(--ink);
  color: var(--paper);
  padding: 16px 22px;
  border-radius: var(--radius);
  display:flex;
  gap: 16px;
  box-shadow: 0 14px 30px -12px rgba(23,20,15,0.4);
}
.about-img-tag .stat-num{ color:var(--paper); font-size:24px; }
.about-img-tag .stat-label{ color:#beb8a4; margin-top:2px; }
.about-img-tag .div{ width:1.5px; background: rgba(247,245,238,0.25); }

.about-text p{ color: var(--steel); margin-bottom: 18px; }
.about-text p:last-of-type{ margin-bottom:0; }
.about-quote{
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--paper-raised);
  border-left: 3px solid var(--red);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-soft);
  line-height:1.85;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5px;
  background: var(--concrete-line);
  border: 1.5px solid var(--concrete-line);
}
.why-item{
  background: var(--paper);
  padding: 30px 26px;
  display:flex;
  gap: 16px;
}
.why-check{
  flex-shrink:0;
  width: 26px; height:26px;
  border: 2px solid var(--ink);
  display:flex; align-items:center; justify-content:center;
  margin-top:2px;
}
.why-check svg{ width:14px; height:14px; }
.why-item h4{
  font-family: var(--font-body);
  text-transform:none;
  font-weight:700;
  font-size: 15.5px;
  letter-spacing:0;
  margin-bottom:4px;
}
.why-item p{ font-size: 13.5px; color: var(--steel); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2px;
  background: var(--concrete-line);
  border:1.5px solid var(--concrete-line);
}
.service-card{
  background: var(--paper-raised);
  padding: 38px 32px;
  position:relative;
  transition: background .25s ease;
}
.service-card:hover{ background: var(--ink); color: var(--paper); }
.service-card:hover .service-icon{ border-color: var(--yellow); }
.service-card:hover .service-icon svg{ color: var(--yellow); }
.service-card:hover p{ color: #cfc9b7; }
.service-index{
  position:absolute;
  top: 24px; right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel-soft);
}
.service-card:hover .service-index{ color:#8b856f; }
.service-icon{
  width: 52px; height:52px;
  border: 2px solid var(--ink);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 22px;
  transition: border-color .25s ease;
}
.service-icon svg{ width:26px; height:26px; color:var(--ink); transition: color .25s ease; }
.service-card h3{
  font-family: var(--font-body);
  text-transform:none;
  font-weight:700;
  font-size: 18px;
  letter-spacing:0;
  margin-bottom: 10px;
}
.service-card p{
  font-size: 13.8px;
  color: var(--steel);
  transition: color .25s ease;
}
.service-card .si-native{
  margin-top:14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel-soft);
  border-top: 1px dashed var(--concrete-line);
  padding-top: 12px;
  line-height:1.7;
}
.service-card:hover .si-native{ color:#8b856f; border-color: rgba(247,245,238,0.2); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-tabs{
  display:inline-flex;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow:hidden;
  margin-bottom: 40px;
}
.gallery-tab{
  background: transparent;
  border:none;
  padding: 12px 22px;
  font-family: var(--font-mono);
  font-weight:600;
  font-size: 12.5px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: var(--ink);
  border-right: 2px solid var(--ink);
}
.gallery-tab:last-child{ border-right:none; }
.gallery-tab.is-active{ background: var(--ink); color: var(--paper); }

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  aspect-ratio: 4/5;
  cursor:pointer;
  background: var(--concrete);
  border-radius: var(--radius);
}
.gallery-item:nth-child(5n+1){ grid-row: span 2; aspect-ratio: 4/9.4; }
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item .gi-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(23,20,15,0) 55%, rgba(23,20,15,0.75) 100%);
  opacity:0;
  transition: opacity .3s ease;
  display:flex;
  align-items:flex-end;
  padding: 16px;
}
.gallery-item:hover .gi-overlay{ opacity:1; }
.gi-overlay span{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--paper);
  letter-spacing:0.05em;
  text-transform:uppercase;
}
.gallery-item.is-hidden{ display:none; }

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background: rgba(17,15,10,0.94);
  z-index: 900;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
  padding: 24px;
}
.lightbox.is-open{ opacity:1; pointer-events:auto; }
.lightbox figure{
  margin:0;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
}
.lightbox img{
  max-width:100%;
  max-height:78vh;
  width:auto;
  margin:0 auto;
  border-radius: var(--radius);
}
.lightbox figcaption{
  color:#cfc9b7;
  font-family: var(--font-mono);
  font-size: 12px;
  text-align:center;
  margin-top: 14px;
  letter-spacing:0.05em;
}
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:fixed;
  background: transparent;
  border: 2px solid rgba(247,245,238,0.5);
  color: var(--paper);
  border-radius: var(--radius);
  display:flex; align-items:center; justify-content:center;
}
.lightbox-close{ top:24px; right:24px; width:46px; height:46px; }
.lightbox-prev, .lightbox-next{ top:50%; transform:translateY(-50%); width:52px; height:52px; }
.lightbox-prev{ left:20px; }
.lightbox-next{ right:20px; }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg{ width:20px; height:20px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{ border-color: var(--yellow); color: var(--yellow); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  background: var(--ink);
  color: var(--paper);
  padding-block: 70px;
  text-align:center;
}
.cta-band h2{ font-size: clamp(28px,4vw,44px); max-width: 18ch; margin:14px auto 30px; }
.cta-band .btn-row{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.15fr);
  gap: 60px;
}
.contact-card{
  background: var(--paper-raised);
  border: 1.5px solid var(--concrete-line);
  padding: 8px 0;
}
.contact-row{
  display:flex;
  gap:18px;
  padding: 22px 28px;
  border-bottom: 1.5px solid var(--concrete-line);
}
.contact-row:last-child{ border-bottom:none; }
.contact-row .ci{
  flex-shrink:0;
  width: 40px; height:40px;
  border: 2px solid var(--ink);
  display:flex; align-items:center; justify-content:center;
}
.contact-row .ci svg{ width:19px; height:19px; }
.contact-row h4{
  font-family: var(--font-body);
  text-transform:none;
  font-weight:700;
  font-size: 14.5px;
  letter-spacing:0;
  margin-bottom: 4px;
  color: var(--steel-soft);
  text-transform:uppercase;
  font-size:11.5px;
  letter-spacing:0.08em;
  font-family: var(--font-mono);
  font-weight:600;
}
.contact-row p, .contact-row a{ font-size: 15.5px; color: var(--ink); }
.contact-row a:hover{ color: var(--red); }

.map-wrap{
  position:relative;
  border: 1.5px solid var(--concrete-line);
  overflow:hidden;
  min-height: 340px;
}
.map-wrap iframe{
  width:100%; height:100%;
  min-height:340px;
  border:0;
  filter: grayscale(0.15) contrast(1.02);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: var(--ink);
  color: #cfc9b7;
  padding-top: 70px;
}
.footer-grid{
  display:grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.2fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247,245,238,0.14);
}
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-brand img{ height:44px; }
.footer-brand-text{ font-family: var(--font-display); font-weight:900; color:var(--paper); font-size:18px; }
.footer-col h5{
  font-family: var(--font-mono);
  color: var(--paper);
  font-size: 12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  margin-bottom: 18px;
}
.footer-col p{ font-size:14px; line-height:1.9; }
.footer-col ul li{ margin-bottom:11px; }
.footer-col ul a{ font-size:14px; }
.footer-col ul a:hover{ color: var(--yellow); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-block: 24px;
  font-size: 12.5px;
  color: #8b856f;
  flex-wrap:wrap;
  gap:10px;
}
.footer-bottom a{ color:#cfc9b7; }
.footer-bottom a:hover{ color: var(--yellow); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .main-nav{ display:none; }
  .header-actions .call-chip{ display:none; }
  .hamburger{ display:flex; }
  .about-grid{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .services-grid{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .stat-grid{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .stat-item:nth-child(3){ border-left:none; padding-left: var(--gutter); }
  .gallery-grid{ grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 680px){
  .section{ padding-block:64px; }
  .why-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 30px; }
  .gallery-grid{ grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gallery-item:nth-child(5n+1){ grid-row: span 1; aspect-ratio: 4/5; }
  .hero{
    min-height: 100vh;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink);
  }
  .hero-media{ display:none; }
  .hero-content{
    padding-top: 96px;
    flex: 1 1 auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .stat-strip{ flex: 0 0 auto; }
  .stat-grid{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .header-actions .btn-ghost{ display:none; }
  .lightbox-prev, .lightbox-next{ width:42px; height:42px; }
  .lightbox-prev{ left:10px; } .lightbox-next{ right:10px; }
  .section-head{ align-items:flex-start; }
}
@media (max-width: 480px){
  .brand img{ height:40px; }
  .brand-text{ font-size: 15px; }
  .brand-text small{ font-size: 9px; }
  .header-actions{ gap:10px; }
  .header-actions .btn-primary{ padding: 10px 14px; }
  .header-actions .btn-primary span{ display:none; }
}
@media (max-width: 380px){
  .header-actions .btn-primary{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}
