/* ============================================================
   Blinds And Curtains Dubai — stylesheet
   Brand system: interior-editorial, warm, tactile, craft-led
   ============================================================ */

:root {
  --bg: #F7F1E8;
  --surface: #FBF7F0;
  --surface-2: #F1E7D8;
  --text: #2A211B;
  --muted: #756B60;
  --primary: #8A6A4A;
  --secondary: #2F4A3C;
  --secondary-deep: #1E3127;
  --accent: #C77E4F;
  --accent-deep: #B26A3C;
  --border: #E2D5C4;
  --border-dark: rgba(247, 241, 232, 0.16);
  --focus: #C77E4F;

  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(42, 33, 27, 0.06);
  --shadow-md: 0 18px 40px -24px rgba(42, 33, 27, 0.45);
  --shadow-lg: 0 40px 80px -40px rgba(42, 33, 27, 0.55);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--focus); outline-offset: 3px; border-radius: 2px; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; color: var(--text); }
.display { font-size: clamp(2.7rem, 7vw, 5.4rem); font-weight: 500; line-height: 0.98; }
.h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
.h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.25rem); color: #463a30; line-height: 1.65; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.serif-accent { font-family: var(--display); font-style: italic; font-weight: 500; color: var(--primary); }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 124px); }
.section-head { max-width: 680px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 15px 26px;
  font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--secondary); color: #F7F1E8; }
.btn-primary:hover { background: var(--secondary-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: rgba(138,106,74,0.05); }
.btn-light { background: rgba(247,241,232,0.1); color: #F7F1E8; border: 1.5px solid var(--border-dark); }
.btn-light:hover { background: rgba(247,241,232,0.18); }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 600; color: var(--primary); transition: gap 0.25s var(--ease); }
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.link-arrow:hover { gap: 0.8em; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(247, 241, 232, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--display); font-weight: 600; font-size: 1.18rem; letter-spacing: 0.01em; }
.brand-text span { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.93rem; font-weight: 600; position: relative; padding: 4px 0; color: #3a3027; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--accent); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.95rem; }
.nav-phone svg { width: 17px; height: 17px; color: var(--accent-deep); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 100px var(--gutter) 40px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu a.m-link { font-family: var(--display); font-size: 2rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .m-actions { margin-top: auto; display: grid; gap: 12px; }
.mobile-menu .m-meta { margin-top: 24px; color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 78px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 96px);
}
.hero-copy { max-width: 600px; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--primary); }
.hero-copy .lead { margin-bottom: 34px; max-width: 480px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--border); }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item b { font-family: var(--display); font-size: 1.7rem; font-weight: 600; line-height: 1; color: var(--secondary); }
.trust-item span { font-size: 0.78rem; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }
.stars { color: var(--accent); letter-spacing: 1px; font-size: 0.95rem; }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; bottom: 34px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
  max-width: 260px;
}
.hero-badge .ico { width: 40px; height: 40px; border-radius: 50%; background: var(--secondary); color: #F7F1E8; display: grid; place-items: center; flex-shrink: 0; }
.hero-badge .ico svg { width: 20px; height: 20px; }
.hero-badge b { display: block; font-family: var(--body); font-weight: 700; font-size: 0.92rem; }
.hero-badge span { font-size: 0.8rem; color: var(--muted); }
.hero-tag {
  position: absolute; top: -16px; right: -16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #F7F1E8;
  padding: 10px 16px 10px 12px; border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(60,32,18,0.45);
  pointer-events: none; max-width: 230px;
}
.hero-tag .ico { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.16); display: grid; place-items: center; flex-shrink: 0; }
.hero-tag .ico svg { width: 16px; height: 16px; }
.hero-tag-txt { display: flex; flex-direction: column; line-height: 1.15; font-size: 0.74rem; }
.hero-tag-txt b { font-family: var(--body); font-weight: 700; font-size: 0.9rem; }

/* marquee strip */
.strip { background: var(--secondary-deep); color: #E7E0D3; overflow: hidden; }
.strip-track { display: flex; gap: 56px; padding: 16px 0; white-space: nowrap; width: max-content; animation: marquee 38s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-track span { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; display: inline-flex; align-items: center; gap: 56px; }
.strip-track span::after { content: "\2014"; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }
.services-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 52px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.svc-card .pic { aspect-ratio: 4 / 3; overflow: hidden; }
.svc-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.svc-card:hover .pic img { transform: scale(1.06); }
.svc-body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.svc-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.03em; color: var(--primary); background: var(--surface-2); border: 1px solid var(--border); border-radius: 100px; padding: 5px 12px; }

/* feature service (wide) */
.svc-feature {
  grid-column: span 3;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--secondary); color: #ECE6DA; border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 0;
}
.svc-feature .pic { aspect-ratio: auto; min-height: 320px; }
.svc-feature .pic img { width: 100%; height: 100%; object-fit: cover; }
.svc-feature .info { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.svc-feature .eyebrow { color: #D9A06F; margin-bottom: 16px; }
.svc-feature .eyebrow::before { background: #D9A06F; }
.svc-feature h3 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.svc-feature p { color: #C8C2B4; margin-bottom: 26px; }
.svc-feature .feat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.svc-feature .feat-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: #E2DCCF; }
.svc-feature .feat-list svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--surface); border-block: 1px solid var(--border); }
.gal-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 36px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  font-size: 0.85rem; font-weight: 600; padding: 9px 18px; border-radius: 100px;
  border: 1.5px solid var(--border); color: var(--muted);
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--secondary); border-color: var(--secondary); color: #F7F1E8; }
.gal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px;
}
.gal-item {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  background: var(--surface-2);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-item .ov {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 16px;
  background: linear-gradient(to top, rgba(30,49,39,0.78), rgba(30,49,39,0) 55%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.gal-item:hover .ov { opacity: 1; }
.gal-item .ov span { color: #F7F1E8; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; }
.gal-item.hide { display: none; }
.gal-item .zoom { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: rgba(247,241,232,0.92); display: grid; place-items: center; opacity: 0; transform: scale(0.8); transition: all 0.3s var(--ease); }
.gal-item:hover .zoom { opacity: 1; transform: scale(1); }
.gal-item .zoom svg { width: 16px; height: 16px; color: var(--secondary); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,16,12,0.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lb-close, .lb-nav { position: absolute; background: rgba(247,241,232,0.12); border: 1px solid rgba(247,241,232,0.2); color: #F7F1E8; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; transition: background 0.25s var(--ease); }
.lb-close:hover, .lb-nav:hover { background: rgba(247,241,232,0.26); }
.lb-close { top: 24px; right: 24px; }
.lb-close svg, .lb-nav svg { width: 22px; height: 22px; }
.lb-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-caption { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: #E7E0D3; font-size: 0.88rem; letter-spacing: 0.04em; }

/* ============================================================
   MATERIALS (dark)
   ============================================================ */
.materials { background: var(--secondary-deep); color: #ECE6DA; }
.mat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.materials .eyebrow { color: #D9A06F; }
.materials .eyebrow::before { background: #D9A06F; }
.materials h2 { color: #fff; margin-block: 18px 20px; }
.materials .lead { color: #C8C2B4; margin-bottom: 30px; }
.mat-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.mat-stats .s b { font-family: var(--display); font-size: 2.4rem; font-weight: 600; color: var(--accent); display: block; line-height: 1; }
.mat-stats .s span { font-size: 0.85rem; color: #B6B0A2; }
.swatches { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.swatch { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 1; box-shadow: var(--shadow-md); }
.swatch:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.swatch img { width: 100%; height: 100%; object-fit: cover; }
.swatch span { position: absolute; left: 14px; bottom: 12px; color: #fff; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; counter-reset: step; }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--border); }
.step .num { font-family: var(--display); font-size: 1rem; font-weight: 600; color: var(--accent-deep); display: block; margin-bottom: 14px; letter-spacing: 0.05em; }
.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.93rem; }
.step.active-top { border-top-color: var(--accent); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--surface); border-block: 1px solid var(--border); }
.rev-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.rev-score { text-align: left; }
.rev-score .big { font-family: var(--display); font-size: clamp(4rem, 9vw, 6.5rem); font-weight: 600; line-height: 0.9; color: var(--secondary); }
.rev-score .stars { font-size: 1.4rem; margin-block: 8px 10px; }
.rev-score p { color: var(--muted); font-size: 0.96rem; }
.rev-score .gicon { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.rev-score .gicon img, .rev-score .gicon svg { width: 20px; height: 20px; }
.quote { position: relative; }
.quote .mark { font-family: var(--display); font-size: 6rem; line-height: 0.7; color: var(--accent); opacity: 0.5; }
.quote blockquote { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; line-height: 1.3; color: var(--text); margin-block: 8px 24px; }
.quote cite { font-style: normal; font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.quote cite b { color: var(--text); }

/* ============================================================
   VISIT / SHOWROOM
   ============================================================ */
.visit { background: var(--bg); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.visit-media { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.visit-media .vm { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.visit-media .vm img { width: 100%; height: 100%; object-fit: cover; }
.visit-media .vm.big { grid-row: span 2; }
.visit-info .eyebrow { margin-bottom: 18px; }
.visit-info h2 { margin-bottom: 22px; }
.info-rows { display: grid; gap: 4px; margin-block: 28px; }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.info-row .ic { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; color: var(--primary); }
.info-row .ic svg { width: 18px; height: 18px; }
.info-row .t span { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 700; margin-bottom: 3px; }
.info-row .t b { font-weight: 600; font-size: 1.02rem; }
.info-row .t .sub { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.visit-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   CONTACT / QUOTE
   ============================================================ */
.contact { background: var(--secondary-deep); color: #ECE6DA; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); }
.contact-left .eyebrow { color: #D9A06F; }
.contact-left .eyebrow::before { background: #D9A06F; }
.contact-left h2 { color: #fff; margin-block: 18px 20px; }
.contact-left p { color: #C8C2B4; margin-bottom: 30px; }
.contact-quick { display: grid; gap: 14px; }
.cq {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  background: rgba(247,241,232,0.05); border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cq:hover { background: rgba(247,241,232,0.1); border-color: rgba(247,241,232,0.3); }
.cq .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.cq .ic svg { width: 20px; height: 20px; }
.cq .t span { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: #A9A395; font-weight: 700; }
.cq .t b { font-size: 1.1rem; color: #fff; font-weight: 700; }

/* form */
.form-card { background: var(--surface); color: var(--text); border-radius: var(--radius-lg); padding: clamp(26px, 3.5vw, 42px); box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.form-card .fsub { color: var(--muted); font-size: 0.92rem; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 7px; color: #463a30; }
.field label .req { color: var(--accent-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 0.95rem;
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #a99c8c; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(199,126,79,0.15); }
.field textarea { resize: vertical; min-height: 100px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b4452f; }
.field .err { display: none; color: #b4452f; font-size: 0.78rem; margin-top: 5px; font-weight: 600; }
.field.invalid .err { display: block; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span { display: inline-block; padding: 9px 16px; border: 1.5px solid var(--border); border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: var(--muted); transition: all 0.2s var(--ease); }
.radio-pill input:checked + span { background: var(--secondary); border-color: var(--secondary); color: #F7F1E8; }
.radio-pill input:focus-visible + span { outline: 2.5px solid var(--focus); outline-offset: 2px; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--secondary); color: #F7F1E8; display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 30px; height: 30px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); }
.map-ph { margin-top: 26px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-dark); position: relative; aspect-ratio: 16/7; background: rgba(247,241,232,0.04); }
.map-ph .grid-bg { position: absolute; inset: 0; opacity: 0.5;
  background-image: linear-gradient(rgba(247,241,232,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(247,241,232,0.07) 1px, transparent 1px);
  background-size: 38px 38px; }
.map-ph .center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.map-ph .pin { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; box-shadow: 0 0 0 8px rgba(199,126,79,0.18); }
.map-ph .pin svg { width: 22px; height: 22px; color: #fff; }
.map-ph .lbl { font-size: 0.8rem; color: #C8C2B4; letter-spacing: 0.04em; }
.map-ph .lbl b { color: #fff; display: block; font-size: 0.95rem; margin-bottom: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--secondary-deep); color: #B6B0A2; padding-block: 60px 30px; border-top: 1px solid var(--border-dark); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--border-dark); }
.footer .brand-text b { color: #F7F1E8; }
.footer-col h4 { font-family: var(--body); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; color: #8E8878; margin-bottom: 18px; font-weight: 700; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #F7F1E8; }
.footer-about p { font-size: 0.9rem; margin-block: 16px; max-width: 280px; line-height: 1.65; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-dark); display: grid; place-items: center; transition: all 0.25s var(--ease); }
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 0.82rem; }
.footer-bottom .disc { max-width: 640px; color: #7E7868; }

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: var(--surface); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px -16px rgba(42,33,27,0.4);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-bar a { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 11px 6px; font-size: 0.72rem; font-weight: 600; color: var(--text); border-right: 1px solid var(--border); }
.bottom-bar a:last-child { border-right: none; }
.bottom-bar a.primary { background: var(--secondary); color: #F7F1E8; }
.bottom-bar svg { width: 19px; height: 19px; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-feature { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 880px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero-badge { left: 12px; }
  .mat-grid, .rev-grid, .visit-grid, .contact-grid { grid-template-columns: 1fr; }
  .rev-grid { gap: 36px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .visit-media { order: 2; }
  .bottom-bar { display: grid; }
  body { padding-bottom: 60px; }
  .footer { padding-bottom: 80px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-feature { grid-column: span 1; grid-template-columns: 1fr; }
  .svc-feature .pic { min-height: 240px; }
  .svc-feature .feat-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gal-item.wide, .gal-item.tall { grid-column: auto; grid-row: auto; }
  .f-row { grid-template-columns: 1fr; }
  .swatches { grid-template-columns: 1fr 1fr; }
  .mat-stats { gap: 28px; }
  .hero-trust { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .lb-nav { display: none; }
  .visit-media { grid-template-columns: 1fr 1fr; }
}

/* 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}
