/* ============================================================
   Hala Furniture Trading LLC — Flooring & Interior Furnishing
   Al Quoz, Dubai. Interior-editorial, tactile, warm, craft-led.
   ============================================================ */

:root {
  /* Brand palette (from research/brand-system.md) */
  --bg:        #F7F1E8;   /* warm cream surface */
  --bg-2:      #F1E8DA;   /* slightly deeper cream */
  --surface:   #FFFFFF;
  --text:      #2A211B;   /* warm near-black */
  --muted:     #756B60;
  --primary:   #8A6A4A;   /* walnut brown */
  --primary-d: #6F523A;
  --secondary: #2F4A3C;   /* deep forest green */
  --secondary-d:#243A2F;
  --accent:    #C77E4F;   /* terracotta */
  --accent-d:  #B4673A;
  --gold:      #C79A3A;   /* logo gold */
  --border:    #E2D5C4;
  --border-2:  #D9C7B0;
  --focus:     #2F4A3C;

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

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(42,33,27,.06), 0 2px 8px rgba(42,33,27,.05);
  --shadow-md: 0 6px 18px rgba(42,33,27,.08), 0 2px 6px rgba(42,33,27,.05);
  --shadow-lg: 0 24px 60px -20px rgba(42,33,27,.30);

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Manrope", system-ui, -apple-system, sans-serif;
  --ff-num: "Inter", system-ui, sans-serif;

  --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

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

button { font-family: inherit; cursor: pointer; }

.tnum { font-family: var(--ff-num); font-feature-settings: "tnum" 1; letter-spacing: -.01em; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 120px); }

.eyebrow {
  font-family: var(--ff-num);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-d);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}

.h-display {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--text);
  margin: 0;
}
h2.h-display { font-size: clamp(30px, 5.2vw, 56px); }
h3.h-display { font-size: clamp(22px, 3vw, 30px); }

.lede { font-size: clamp(16px, 2.1vw, 19px); color: var(--muted); max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  min-height: 48px;
  transition: transform .16s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { background: var(--secondary); color: #F3EFE6; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--secondary-d); box-shadow: var(--shadow-md); }

.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--accent-d); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--bg-2); border-color: var(--primary); }

.btn-light { background: rgba(255,255,255,.12); color: #F4EFE6; border-color: rgba(255,255,255,.32); backdrop-filter: blur(4px); }
.btn-light:hover { background: rgba(255,255,255,.2); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,241,232,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--border); box-shadow: 0 6px 22px -16px rgba(42,33,27,.5); }
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-chip {
  display: grid; place-items: center;
  height: 46px; padding: 0 14px;
  background: var(--secondary);
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
}
.brand-chip img { height: 30px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: var(--ff-display); font-weight: 600; font-size: 21px; letter-spacing: .01em; }
.brand-name span { font-family: var(--ff-num); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  font-size: 14.5px; font-weight: 600; color: var(--text);
  padding: 10px 14px; border-radius: 8px; position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav-desktop a:hover { background: var(--bg-2); color: var(--primary-d); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-num); font-weight: 600; font-size: 14.5px;
  padding: 9px 12px; border-radius: 8px;
  color: var(--text);
}
.header-phone:hover { background: var(--bg-2); }

.burger {
  display: none;
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--surface); border: 1px solid var(--border);
  align-items: center; justify-content: center;
}
.burger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(42,33,27,.42);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 71;
  width: min(86vw, 360px); height: 100%;
  background: var(--bg);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.drawer-close { width: 42px; height: 42px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; }
.drawer nav { display: flex; flex-direction: column; padding: 8px; gap: 2px; }
.drawer nav a {
  font-family: var(--ff-display); font-size: 24px; font-weight: 600;
  padding: 13px 16px; border-radius: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.drawer nav a:hover { background: var(--bg-2); }
.drawer nav a span { font-family: var(--ff-num); font-size: 12px; color: var(--muted); }
.drawer-foot { margin-top: auto; padding: 20px; border-top: 1px solid var(--border); display: grid; gap: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(28px, 4vw, 48px); padding-bottom: clamp(28px, 4vw, 52px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: stretch;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding-block: 8px; }
.hero h1 {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(40px, 7vw, 78px); line-height: .98; letter-spacing: -.015em;
  margin: 18px 0 0;
}
.hero h1 em { font-style: italic; color: var(--primary); }
.hero .lede { margin-top: 20px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; }
.hero-meta .item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text); }
.hero-meta .item svg { width: 18px; height: 18px; color: var(--primary); flex: none; }
.hero-meta .item b { font-family: var(--ff-num); font-weight: 700; }

/* Hero visual = material swatch mosaic */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1.25fr 1fr;
  gap: 12px;
  min-height: 460px;
}
.hero-visual .tile { position: relative; overflow: hidden; border-radius: var(--r-md); box-shadow: var(--shadow-md); background: var(--bg-2); }
.hero-visual .tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .tile.big { grid-row: 1 / span 2; }
.hero-visual .tile .tag {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--ff-num); font-size: 11px; font-weight: 600; letter-spacing: .04em;
  background: rgba(247,241,232,.92); color: var(--text);
  padding: 6px 11px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.hero-rating {
  position: absolute; z-index: 3; right: -10px; top: -14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 13px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.hero-rating .score { font-family: var(--ff-display); font-weight: 600; font-size: 34px; line-height: 1; color: var(--secondary); }
.hero-rating .stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.hero-rating .sub { font-family: var(--ff-num); font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.strip { background: var(--secondary); color: #E9E2D4; border-block: 1px solid var(--secondary-d); }
.strip-inner { display: flex; flex-wrap: wrap; gap: 8px 0; align-items: stretch; }
.strip .cell {
  flex: 1 1 200px; padding: 22px var(--gutter);
  display: flex; align-items: center; gap: 14px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.strip .cell:first-child { border-left: none; }
.strip .cell svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.strip .cell b { font-family: var(--ff-display); font-size: 20px; font-weight: 600; display: block; line-height: 1.1; }
.strip .cell span { font-size: 12.5px; color: rgba(233,226,212,.72); font-family: var(--ff-num); }

/* ============================================================
   COLLECTIONS (signature swatch grid)
   ============================================================ */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head .lede { margin-top: 12px; }

.coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.coll {
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  background: var(--secondary);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  isolation: isolate;
}
.coll img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.coll::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,12,.82) 0%, rgba(20,16,12,.32) 42%, rgba(20,16,12,0) 70%); z-index: 1; }
.coll:hover img { transform: scale(1.07); }
.coll .body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; color: #F6F1E8; }
.coll .num { position: absolute; top: 14px; left: 16px; font-family: var(--ff-num); font-size: 11px; font-weight: 600; letter-spacing: .1em; color: rgba(246,241,232,.8); z-index: 2; }
.coll h3 { font-family: var(--ff-display); font-size: 23px; font-weight: 600; line-height: 1.05; margin: 0; }
.coll p { font-size: 12.5px; color: rgba(246,241,232,.78); margin: 6px 0 0; max-width: 30ch; }
.coll .go { margin-top: 12px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-num); font-size: 12px; font-weight: 600; letter-spacing: .02em; color: #F6F1E8; opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease; }
.coll:hover .go, .coll:focus-within .go { opacity: 1; transform: translateY(0); }
.coll .go svg { width: 15px; height: 15px; }
.coll.wide { grid-column: span 2; aspect-ratio: auto; }

/* ============================================================
   FEATURE: full-bleed image + offset card
   ============================================================ */
.feature { position: relative; background: var(--bg-2); overflow: hidden; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(24px, 4vw, 56px); }
.feature-img { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-body .list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.feature-body .list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-body .list .ic { width: 30px; height: 30px; flex: none; border-radius: 8px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; color: var(--primary); margin-top: 1px; }
.feature-body .list .ic svg { width: 16px; height: 16px; }
.feature-body .list b { font-weight: 700; display: block; font-size: 15.5px; }
.feature-body .list span { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.filterbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.chip {
  font-family: var(--ff-num); font-size: 13px; font-weight: 600;
  padding: 9px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted);
  min-height: 40px; transition: all .18s ease;
}
.chip:hover { border-color: var(--primary); color: var(--text); }
.chip.active { background: var(--text); color: var(--bg); border-color: var(--text); }

.masonry { columns: 3; column-gap: 14px; }
.masonry .cell { break-inside: avoid; margin-bottom: 14px; border-radius: var(--r-md); overflow: hidden; position: relative; cursor: zoom-in; box-shadow: var(--shadow-sm); background: var(--bg-2); border: 1px solid var(--border); }
.masonry .cell img { width: 100%; height: auto; transition: transform .5s ease; }
.masonry .cell:hover img { transform: scale(1.05); }
.masonry .cell .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 14px 12px; background: linear-gradient(to top, rgba(20,16,12,.7), transparent); color: #F6F1E8; font-family: var(--ff-num); font-size: 12px; font-weight: 600; opacity: 0; transition: opacity .25s ease; }
.masonry .cell:hover .cap { opacity: 1; }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 90; background: rgba(20,16,12,.92); display: grid; place-items: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.lb.open { opacity: 1; pointer-events: auto; }
.lb img { max-width: min(92vw, 1100px); max-height: 84vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lb-cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: #E9E2D4; font-family: var(--ff-num); font-size: 13px; }
.lb-btn { position: absolute; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; display: grid; place-items: center; top: 50%; transform: translateY(-50%); }
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 18px; } .lb-next { right: 18px; }
.lb-close { top: 18px; right: 18px; transform: none; }
.lb-btn svg { width: 22px; height: 22px; }

/* ============================================================
   ABOUT / STORY
   ============================================================ */
.about { background: var(--text); color: #EDE6D8; position: relative; overflow: hidden; }
.about .eyebrow { color: var(--accent); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.about h2.h-display { color: #F6F1E8; }
.about p { color: rgba(237,230,216,.82); font-size: 16px; max-width: 52ch; }
.about .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.about .stat { border-top: 2px solid rgba(255,255,255,.16); padding-top: 14px; }
.about .stat b { font-family: var(--ff-display); font-size: clamp(30px, 4vw, 44px); font-weight: 600; color: var(--accent); line-height: 1; display: block; }
.about .stat span { font-size: 12.5px; color: rgba(237,230,216,.66); font-family: var(--ff-num); letter-spacing: .03em; }
.about-visual { position: relative; }
.about-visual .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5 / 6; background: #1c1712; }
.about-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-illus { position: absolute; bottom: -22px; left: -22px; width: 130px; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid var(--text); background: var(--bg); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.info-list { display: grid; gap: 4px; margin-top: 26px; }
.info-row { display: flex; gap: 15px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.info-row .ic { width: 44px; height: 44px; flex: none; border-radius: 11px; background: var(--secondary); color: #F3EFE6; display: grid; place-items: center; }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .k { font-family: var(--ff-num); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-row .v { font-size: 16px; font-weight: 600; margin-top: 3px; }
.info-row .v.num { font-family: var(--ff-num); }
.info-row a.v:hover { color: var(--primary); }

.map-ph {
  margin-top: 22px; position: relative; border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border); background:
    repeating-linear-gradient(45deg, var(--bg-2), var(--bg-2) 16px, var(--bg) 16px, var(--bg) 32px);
  min-height: 168px; display: grid; place-items: center; text-align: center; padding: 22px;
}
.map-ph .pin { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: #fff; margin: 0 auto 10px; box-shadow: var(--shadow-md); }
.map-ph b { font-family: var(--ff-display); font-size: 20px; }
.map-ph span { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; }
.map-ph .lbl { position: absolute; top: 10px; left: 10px; font-family: var(--ff-num); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); background: var(--surface); padding: 4px 9px; border-radius: 6px; border: 1px solid var(--border); }

/* Form card */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-md); }
.form-card h3 { margin: 0 0 4px; }
.form-card .sub { font-size: 14px; color: var(--muted); margin: 0 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--ff-num); font-size: 12.5px; font-weight: 600; letter-spacing: .03em; color: var(--text); margin-bottom: 7px; }
.field label .req { color: var(--accent-d); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 15px; color: var(--text);
  padding: 13px 14px; border-radius: 10px; border: 1.5px solid var(--border-2); background: var(--bg);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(47,74,60,.14); }
.field.err input, .field.err select, .field.err textarea { border-color: #b4493a; }
.field .msg { font-size: 12px; color: #b4493a; margin-top: 5px; font-family: var(--ff-num); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg button { flex: 1 1 auto; min-width: 84px; padding: 11px 12px; border-radius: 9px; border: 1.5px solid var(--border-2); background: var(--bg); font-size: 13.5px; font-weight: 600; color: var(--muted); transition: all .16s ease; }
.seg button.on { background: var(--secondary); color: #F3EFE6; border-color: var(--secondary); }
.form-note { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--secondary); color: #fff; display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ok svg { width: 30px; height: 30px; }
.form-success h3 { margin: 0 0 8px; }
.form-success p { color: var(--muted); margin: 0 auto; max-width: 36ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--secondary-d); color: #D9D2C4; padding-block: clamp(48px, 6vw, 76px) 120px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer .brand-chip { background: rgba(255,255,255,.08); }
.footer p.f-about { font-size: 14px; color: rgba(217,210,196,.7); max-width: 38ch; margin: 18px 0 0; }
.footer .social { display: flex; gap: 10px; margin-top: 20px; }
.footer .social a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; transition: background .2s ease; }
.footer .social a:hover { background: rgba(255,255,255,.16); }
.footer .social svg { width: 18px; height: 18px; }
.footer h4 { font-family: var(--ff-num); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(217,210,196,.55); margin: 0 0 16px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; color: rgba(217,210,196,.85); }
.footer ul a:hover { color: var(--accent); }
.footer .f-contact { font-size: 14px; line-height: 1.7; color: rgba(217,210,196,.8); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: rgba(217,210,196,.55); }

/* ============================================================
   MOBILE ACTION BAR
   ============================================================ */
.actionbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
  display: none;
  background: rgba(247,241,232,.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.actionbar a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px; border-radius: 12px; min-height: 54px; justify-content: center;
  font-family: var(--ff-num); font-size: 11px; font-weight: 600;
}
.actionbar a svg { width: 20px; height: 20px; }
.actionbar .ab-call { background: var(--secondary); color: #F3EFE6; }
.actionbar .ab-quote { background: var(--accent); color: #fff; }
.actionbar .ab-dir { background: var(--surface); color: var(--text); border: 1px solid var(--border); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .coll.wide { grid-column: span 2; }
}
@media (max-width: 960px) {
  .nav-desktop, .header-phone { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; margin-top: 8px; }
  .feature-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .masonry { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .actionbar { display: grid; }
}
@media (max-width: 560px) {
  .header-cta .btn { display: none; }
  .coll-grid { grid-template-columns: 1fr 1fr; }
  .coll.wide { grid-column: span 2; }
  .masonry { columns: 1; }
  .row-2 { grid-template-columns: 1fr; }
  .about .stats { grid-template-columns: 1fr; gap: 0; }
  .about .stat { border-top: none; border-bottom: 1px solid rgba(255,255,255,.14); padding-block: 14px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .strip .cell { flex-basis: 50%; border-left: none; }
  .brand-name span { display: none; }
}
@media (max-width: 380px) {
  .coll-grid { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
}

/* Entrance animation */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* BytesGlue QA map patch */
.bg-map-embed{display:block!important;position:relative!important;width:100%!important;min-height:240px!important;border-radius:12px!important;overflow:hidden!important;background:#e9edf1!important;box-shadow:0 0 0 1px rgba(0,0,0,.08) inset!important}
.bg-map-embed iframe{display:block!important;width:100%!important;min-height:260px!important;border:0!important}
.bg-map-embed + .bg-map-embed,
.bg-map-embed + .pin,
.bg-map-embed + .lbl,
.bg-map-embed + .corner-note,
.bg-map-embed + .placeholder,
.bg-map-embed + .center,
.bg-map-embed + [class*="map-note"],
.bg-map-embed + [class*="map-tag"]{display:none!important}
.map .placeholder .pin,.map-ph .pin,.map-pin,.map-marker,.map-ph__pin,.map-ph__pin .dot,.map-ph__pin .pin,.map-ph .mi{max-width:18px!important;max-height:18px!important;width:18px!important;height:18px!important;box-shadow:none!important}
.map .placeholder .pin svg,.map-ph .pin svg,.map-pin svg,.map-marker svg,.map-ph__pin svg,.map-ph .mi{width:12px!important;height:12px!important}
.map-note,.map-tag,[class*="map-note"],[class*="map-tag"]{display:none!important}
