/* ===========================================================================
   Drs. Nicolas & Asp Dental Centers – Jumeirah
   Clinical-premium design system. Palette + type from research/brand-system.md
   =========================================================================== */

:root {
  /* Brand tokens */
  --bg: #F6FBFC;
  --surface: #FFFFFF;
  --surface-2: #EEF7F8;
  --text: #10202B;
  --muted: #647985;
  --primary: #0D7C8A;
  --primary-deep: #0A5F6B;
  --secondary: #17324D;
  --secondary-2: #0F2438;
  --accent: #7AC6C4;
  --border: #D8ECEF;
  --border-strong: #BFE0E4;
  --focus: #0D7C8A;
  --star: #E8A93B;

  /* Tweakable (overwritten via JS) */
  --t-accent: #0D7C8A;
  --t-display: 'Sora', system-ui, sans-serif;

  /* Type */
  --font-display: var(--t-display);
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --section-y: clamp(56px, 8vw, 116px);

  --shadow-sm: 0 1px 2px rgba(16, 32, 43, .04), 0 2px 8px rgba(16, 32, 43, .05);
  --shadow-md: 0 10px 30px -12px rgba(16, 32, 43, .18);
  --shadow-lg: 0 30px 70px -28px rgba(15, 36, 56, .35);

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--secondary);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 650;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--t-accent) 55%, white);
  outline-offset: 2px;
  border-radius: 6px;
}

.tnum { font-variant-numeric: tabular-nums; letter-spacing: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.app { overflow-clip-margin: content-box; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--t-accent);
}
.eyebrow.center::before { display: none; }

.h-display { font-size: clamp(2.1rem, 6vw, 4rem); }
.h-1 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
.h-2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); line-height: 1.55; }

.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h-1 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--t-accent);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--bg-btn); color: #fff; box-shadow: 0 10px 24px -10px color-mix(in oklab, var(--t-accent) 70%, transparent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px color-mix(in oklab, var(--t-accent) 75%, transparent); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { transform: translateY(-2px); background: var(--secondary-2); }
.btn-ghost { background: transparent; color: var(--secondary); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--t-accent); color: var(--primary); background: #fff; }
.btn-white { background: #fff; color: var(--secondary); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--primary);
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: 12px; }
.link-arrow svg { width: 16px; height: 16px; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in oklab, var(--surface) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled { border-color: var(--border); box-shadow: 0 6px 24px -18px rgba(16,32,43,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-txt b { font-family: var(--font-display); font-weight: 650; font-size: 1.02rem; color: var(--secondary); letter-spacing: -.01em; }
.brand-txt span { font-size: 11px; color: var(--muted); letter-spacing: .04em; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: 999px; font-weight: 550; font-size: .96rem; color: var(--secondary);
  transition: background .18s, color .18s; position: relative;
}
.nav-links a:hover { background: var(--surface-2); color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--t-accent); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 650; color: var(--secondary);
  font-size: .98rem;
}
.nav-phone svg { width: 17px; height: 17px; color: var(--primary); }

.burger { display: none; background: none; border: 1.5px solid var(--border-strong); border-radius: 11px; width: 46px; height: 46px; cursor: pointer; align-items: center; justify-content: center; color: var(--secondary); }
.burger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(15,36,56,.4); z-index: 70; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(2px); }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); background: var(--surface);
  z-index: 80; transform: translateX(100%); transition: transform .36s var(--ease);
  display: flex; flex-direction: column; padding: 22px; box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer-close { background: var(--surface-2); border: none; width: 44px; height: 44px; border-radius: 12px; cursor: pointer; color: var(--secondary); display: flex; align-items: center; justify-content: center; }
.drawer-close svg { width: 22px; height: 22px; }
.drawer-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: auto; }
.drawer-links a { padding: 15px 14px; border-radius: 12px; font-weight: 600; font-size: 1.1rem; color: var(--secondary); display: flex; justify-content: space-between; align-items: center; }
.drawer-links a.active, .drawer-links a:hover { background: var(--surface-2); color: var(--primary); }
.drawer-links a svg { width: 18px; height: 18px; opacity: .4; }
.drawer-foot { display: flex; flex-direction: column; gap: 10px; padding-top: 18px; border-top: 1px solid var(--border); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--secondary); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,36,56,.93) 0%, rgba(15,36,56,.78) 34%, rgba(15,36,56,.30) 60%, rgba(15,36,56,0) 82%),
    linear-gradient(0deg, rgba(15,36,56,.5), rgba(15,36,56,0) 40%);
}
.hero-inner { position: relative; padding-block: clamp(58px, 10vw, 120px); min-height: min(86vh, 760px); display: flex; flex-direction: column; justify-content: center; }
.hero-content { max-width: 640px; color: #fff; }
.hero .eyebrow { color: var(--accent); }
.hero .eyebrow::before { background: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6.4vw, 4.4rem); margin-top: 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { margin-top: 22px; font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: rgba(255,255,255,.85); max-width: 540px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.stars { display: inline-flex; gap: 3px; color: var(--star); line-height: 0; }
.stars svg { width: 22px; height: 22px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-rating { display: flex; align-items: center; gap: 12px; }
.hero-rating .stars { display: flex; gap: 2px; color: var(--star); }
.hero-rating .stars svg { width: 18px; height: 18px; }
.hero-rating b { font-size: 1.15rem; color: #fff; }
.hero-rating span { color: rgba(255,255,255,.7); font-size: .92rem; }
.hero-badge-row { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 550; }
.hero-badge-row img { height: 42px; width: auto; background: #fff; border-radius: 8px; padding: 3px; }

/* ---------- Quick action strip ---------- */
.qstrip { background: var(--secondary-2); }
.qstrip-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.qcard { display: flex; align-items: center; gap: 16px; padding: 26px var(--gutter); color: #fff; border-right: 1px solid rgba(255,255,255,.1); transition: background .2s; }
.qcard:last-child { border-right: none; }
.qcard:hover { background: rgba(255,255,255,.04); }
.qcard .ic { flex: none; width: 48px; height: 48px; border-radius: 13px; background: rgba(122,198,196,.16); color: var(--accent); display: grid; place-items: center; }
.qcard .ic svg { width: 23px; height: 23px; }
.qcard b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: #fff; }
.qcard span { font-size: .9rem; color: rgba(255,255,255,.66); }

/* ---------- Trust band ---------- */
.trust { background: var(--surface); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat .n { font-family: var(--font-display); font-weight: 650; font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--primary); line-height: 1; }
.stat .l { margin-top: 10px; color: var(--muted); font-size: .96rem; font-weight: 500; }

/* ---------- Cards / Services ---------- */
.cards { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--surface-2); color: var(--primary); display: grid; place-items: center; margin-bottom: 20px; }
.card-ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; }
.card p { margin-top: 11px; color: var(--muted); font-size: .98rem; }
.card .card-link { margin-top: 18px; }
.card ul { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.card ul li { display: flex; gap: 9px; align-items: flex-start; color: var(--secondary); font-size: .95rem; }
.card ul li svg { width: 17px; height: 17px; color: var(--primary); flex: none; margin-top: 3px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }
.split-media.tall img { aspect-ratio: 4/5; }
.feature-list { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.feature-item { display: flex; gap: 15px; }
.feature-item .fi-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); color: var(--primary); display: grid; place-items: center; }
.feature-item .fi-ic svg { width: 22px; height: 22px; }
.feature-item h4 { font-size: 1.08rem; color: var(--secondary); }
.feature-item p { margin-top: 4px; color: var(--muted); font-size: .96rem; }

/* image badge floating */
.img-badge {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.img-badge.bl { left: -18px; bottom: -22px; }
.img-badge.tr { right: -18px; top: -22px; }
.img-badge img { width: 50px; height: 50px; object-fit: contain; }
.img-badge .ib-t b { display: block; font-family: var(--font-display); color: var(--secondary); font-size: 1.05rem; }
.img-badge .ib-t span { font-size: .82rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gtile { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--surface-2); }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gtile:hover img { transform: scale(1.06); }
.gtile .gcap { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; background: linear-gradient(0deg, rgba(15,36,56,.82), transparent); color: #fff; font-weight: 600; font-size: .9rem; opacity: 0; transform: translateY(8px); transition: .3s var(--ease); }
.gtile:hover .gcap { opacity: 1; transform: translateY(0); }
.gtile.wide { grid-column: span 2; }
.gtile.tall { grid-row: span 2; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(8,20,30,.92); display: grid; place-items: center; padding: 28px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 22px; right: 24px; background: rgba(255,255,255,.12); border: none; color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.lightbox .lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: .95rem; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.lightbox .lb-nav.prev { left: 18px; } .lightbox .lb-nav.next { right: 18px; }
.lightbox .lb-nav svg, .lightbox .lb-close svg { width: 24px; height: 24px; }

/* ---------- Before/after case ---------- */
.case { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.case-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.case-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); color: var(--primary); padding: 7px 14px; border-radius: 999px; font-weight: 650; font-size: .85rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--secondary), var(--primary-deep)); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 76px); color: #fff; }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(122,198,196,.28), transparent 68%); }
.cta-band .inner { position: relative; max-width: 640px; }
.cta-band h2 { color: #fff; }
.cta-band p { margin-top: 16px; color: rgba(255,255,255,.82); font-size: 1.1rem; }
.cta-band .hero-actions { margin-top: 30px; }

/* ---------- Page hero (interior) ---------- */
.phero { background: var(--secondary); color: #fff; position: relative; overflow: hidden; }
.phero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 380px at 88% -10%, rgba(122,198,196,.22), transparent 70%); }
.phero-inner { position: relative; padding-block: clamp(48px, 8vw, 92px); }
.phero .eyebrow { color: var(--accent); }
.phero .eyebrow::before { background: var(--accent); }
.phero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); margin-top: 16px; }
.phero p { margin-top: 18px; color: rgba(255,255,255,.82); max-width: 620px; font-size: 1.12rem; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .9rem; color: rgba(255,255,255,.6); }
.crumbs a:hover { color: #fff; }

/* ---------- Contact / forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.info-card .ic { flex: none; width: 48px; height: 48px; border-radius: 13px; background: var(--surface-2); color: var(--primary); display: grid; place-items: center; }
.info-card .ic svg { width: 23px; height: 23px; }
.info-card h4 { font-size: 1.05rem; color: var(--secondary); }
.info-card p, .info-card a { margin-top: 4px; color: var(--muted); font-size: .98rem; }
.info-card a:hover { color: var(--primary); }
.info-list { display: flex; flex-direction: column; gap: 14px; }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--secondary); margin-bottom: 7px; }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--t-accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--t-accent) 15%, transparent); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { padding: 9px 15px; border: 1.5px solid var(--border); border-radius: 999px; background: var(--bg); cursor: pointer; font-size: .92rem; font-weight: 550; color: var(--secondary); transition: .18s; }
.chip:hover { border-color: var(--border-strong); }
.chip.sel { background: var(--t-accent); border-color: var(--t-accent); color: #fff; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 4px; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .sc { width: 64px; height: 64px; border-radius: 50%; background: color-mix(in oklab, var(--primary) 14%, white); color: var(--primary); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .sc svg { width: 32px; height: 32px; }

/* map */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); position: relative; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: grayscale(.1); }

/* ---------- FAQ / accordion ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin-inline: auto; }
.acc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.acc.open { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.acc-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--secondary); }
.acc-q svg { width: 22px; height: 22px; flex: none; color: var(--primary); transition: transform .3s var(--ease); }
.acc.open .acc-q svg { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-a-inner { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Pills / tags ---------- */
.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); color: var(--primary); padding: 8px 15px; border-radius: 999px; font-weight: 600; font-size: .88rem; }
.pill svg { width: 16px; height: 16px; }

/* ---------- Disclaimer note ---------- */
.note {
  display: flex; gap: 13px; align-items: flex-start; background: color-mix(in oklab, var(--accent) 12%, white);
  border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 18px 20px; font-size: .92rem; color: var(--secondary);
}
.note svg { width: 20px; height: 20px; color: var(--primary); flex: none; margin-top: 1px; }

/* ---------- Footer ---------- */
.footer { background: var(--secondary-2); color: rgba(255,255,255,.7); padding-top: clamp(48px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer .brand-txt b { color: #fff; }
.footer .brand-txt span { color: rgba(255,255,255,.5); }
.footer-about { margin-top: 18px; font-size: .95rem; line-height: 1.6; max-width: 320px; }
.footer h5 { font-family: var(--font-display); color: #fff; font-size: 1rem; font-weight: 600; margin: 0 0 16px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 10px; transition: color .18s; }
.footer-col a:hover { color: var(--accent); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; transition: .2s; }
.socials a:hover { background: var(--primary); transform: translateY(-2px); }
.socials a svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom .badges { display: flex; gap: 12px; align-items: center; }
.footer-bottom .badges img { height: 38px; background: #fff; border-radius: 7px; padding: 3px; }

/* ---------- Mobile bottom action bar ---------- */
.mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: color-mix(in oklab, var(--surface) 94%, transparent); backdrop-filter: blur(14px); border-top: 1px solid var(--border); display: none; grid-template-columns: repeat(3, 1fr); padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); gap: 6px; }
.mobilebar a { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 4px; border-radius: 12px; font-size: .74rem; font-weight: 600; color: var(--secondary); }
.mobilebar a .mb-ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; }
.mobilebar a svg { width: 20px; height: 20px; }
.mobilebar a.call .mb-ic { background: var(--primary); color: #fff; }
.mobilebar a.enq .mb-ic { background: var(--surface-2); color: var(--primary); }
.mobilebar a.dir .mb-ic { background: var(--surface-2); color: var(--primary); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); 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: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  .cards, .cards.two { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .case { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .qstrip-grid { grid-template-columns: 1fr; }
  .qcard { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .qcard:last-child { border-bottom: none; }
  .mobilebar { display: grid; }
  body { padding-bottom: 78px; }
  .img-badge.bl { left: 10px; bottom: 12px; }
  .img-badge.tr { right: 10px; top: 12px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards, .cards.two { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gtile.wide { grid-column: span 2; }
  .gtile.tall { grid-row: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
}
