/* ============================================================
   3S Real Estate — Design System
   Palette keyed to brand logo (gold monogram + teal-navy
   wordmark on ivory). See CLAUDE-DESIGN.md.
   ============================================================ */

:root {
  /* Brand palette */
  --bg: #15282F;          /* deep teal-navy ground */
  --bg-2: #102026;        /* darker panel */
  --surface: #FBF8F3;     /* warm ivory */
  --surface-2: #F4EEE3;   /* slightly deeper ivory */
  --text: #16242E;        /* body on light */
  --text-on-dark: #F3EEE4;
  --muted: #5C6B73;       /* secondary text */
  --muted-dark: #9DB0B8;  /* secondary text on dark */
  --primary: #BF9750;     /* brand gold */
  --primary-deep: #A87E2F;/* deeper gold (focus / hover) */
  --secondary: #1E3A44;   /* deep teal panel */
  --accent: #D7BE90;      /* champagne highlight */
  --border: #E3DCCF;      /* hairline on light */
  --border-dark: rgba(215,190,144,.18);
  --focus: #A87E2F;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale (8px base) */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 48px; --sp-6: 64px; --sp-7: 96px;  --sp-8: 128px;

  --radius-s: 8px;
  --radius: 12px;
  --radius-l: 18px;

  --shadow-s: 0 1px 2px rgba(21,40,47,.04), 0 4px 14px rgba(21,40,47,.06);
  --shadow-m: 0 10px 30px rgba(21,40,47,.10), 0 2px 8px rgba(21,40,47,.05);
  --shadow-l: 0 28px 70px rgba(16,32,38,.30);

  --maxw: 1200px;
  --header-h: 96px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--surface);
  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: 4px;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.06; letter-spacing: -.01em; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1.5px;
  background: var(--primary);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--accent); }
.eyebrow.centered { justify-content: center; }
.eyebrow.no-rule::before { display: none; }

.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--muted); line-height: 1.7; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section.dark { background: var(--bg); color: var(--text-on-dark); }
.section.dark .lead { color: var(--muted-dark); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 5.5vw, 56px); margin-top: 18px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--primary { background: var(--primary); color: #1a140a; box-shadow: 0 8px 22px rgba(191,151,80,.28); }
.btn--primary:hover { background: #cda45c; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(191,151,80,.36); }
.btn--whatsapp { background: #1f9d5b; color: #fff; box-shadow: 0 8px 22px rgba(31,157,91,.30); }
.btn--whatsapp:hover { background: #23ad65; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(31,157,91,.38); }
.btn--ghost { background: transparent; color: inherit; border: 1.5px solid currentColor; opacity: .92; }
.btn--ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); opacity: 1; }
.btn--ghost-dark { background: transparent; color: var(--secondary); border: 1.5px solid var(--border); }
.btn--ghost-dark:hover { border-color: var(--primary); color: var(--primary-deep); transform: translateY(-2px); }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--primary-deep); letter-spacing: .02em; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px; }
.site-header.scrolled {
  background: rgba(251,248,243,.92);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-s);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 76px; width: auto; transition: filter .35s var(--ease); }
/* logo is dark-friendly artwork; on the transparent hero we brighten it */
.site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
.brand-name { display: none; }

.nav { display: none; }
.nav a {
  position: relative;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  padding: 8px 2px; color: var(--secondary);
  transition: color .2s var(--ease);
}
.site-header:not(.scrolled) .nav a { color: rgba(255,255,255,.86); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--primary); transition: right .3s var(--ease);
}
.nav a:hover::after { right: 0; }
.nav a:hover { color: var(--primary); }
.site-header:not(.scrolled) .nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { min-height: 44px; padding: 0 18px; font-size: 14px; }
.header-call { display: none; }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  color: var(--secondary);
}
.site-header:not(.scrolled) .menu-toggle { color: #fff; }
.menu-toggle svg { width: 26px; height: 26px; }

/* Mobile drawer */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(16,32,38,.55); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 120;
  width: min(86vw, 360px); height: 100%;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
  padding: 22px;
  box-shadow: var(--shadow-l);
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer-top img { height: 56px; width: auto; }
.drawer-close { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; color: var(--secondary); }
.drawer-close svg { width: 26px; height: 26px; }
.drawer nav { display: flex; flex-direction: column; margin-top: 8px; border-top: 1px solid var(--border); }
.drawer nav a {
  padding: 17px 6px; font-size: 18px; font-weight: 600; color: var(--secondary);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer nav a span { color: var(--primary); font-size: 15px; }
.drawer-cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 22px; }
.drawer-meta { margin-top: 18px; font-size: 13px; color: var(--muted); letter-spacing: .04em; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(10,22,27,.92) 0%, rgba(10,22,27,.45) 38%, rgba(10,22,27,.15) 64%, rgba(10,22,27,.42) 100%);
}
.hero .wrap { padding-bottom: clamp(48px, 8vh, 96px); padding-top: calc(var(--header-h) + 24px); width: 100%; }
.hero__inner { max-width: 760px; }
.hero h1 { font-size: clamp(44px, 9vw, 92px); line-height: 1.02; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p { margin-top: 22px; font-size: clamp(17px, 2.2vw, 21px); color: rgba(243,238,228,.9); max-width: 56ch; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 36px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
.hero__tag { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; letter-spacing: .02em; color: rgba(243,238,228,.92); }
.hero__tag svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.scroll-hint { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,.6); display: none; }
.scroll-hint svg { width: 24px; height: 24px; animation: bob 2.2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--secondary); color: var(--text-on-dark); }
.trust .wrap { padding-block: 34px; }
.trust__grid { display: grid; gap: 28px 18px; }
.trust__orn { display: flex; align-items: center; gap: 16px; }
.trust__orn .badge {
  flex: none; width: 58px; height: 58px; border-radius: 14px;
  border: 1.5px solid var(--border-dark); display: grid; place-items: center;
  background: rgba(215,190,144,.08); color: var(--accent);
}
.trust__orn .badge svg { width: 28px; height: 28px; }
.trust__orn .k { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-dark); }
.trust__orn .v { font-family: var(--font-display); font-size: 26px; line-height: 1.1; color: #fff; }
.trust__partners .k { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 14px; }
.trust__logos { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.trust__logos span {
  font-family: var(--font-display); font-size: clamp(18px,2.4vw,23px); font-weight: 600;
  color: rgba(243,238,228,.78); letter-spacing: .01em;
}
.trust__logos span:not(:last-child)::after { content: "·"; margin-left: 22px; color: var(--primary); }

/* ============================================================
   PROJECTS
   ============================================================ */
.proj-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.proj-card {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  background: #000; box-shadow: var(--shadow-m); isolation: isolate;
  min-height: 420px; display: flex; align-items: flex-end;
  cursor: pointer;
}
.proj-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.proj-card::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(to top, rgba(8,18,22,.92), rgba(8,18,22,.30) 52%, rgba(8,18,22,.08) 100%); }
.proj-card:hover img { transform: scale(1.06); }
.proj-card__body { padding: 28px; color: #fff; width: 100%; }
.proj-card__loc { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--accent); }
.proj-card__loc svg { width: 15px; height: 15px; }
.proj-card h3 { font-size: clamp(28px, 4vw, 34px); margin: 10px 0 8px; }
.proj-card p { font-size: 15px; color: rgba(243,238,228,.82); line-height: 1.55; max-width: 46ch; }
.proj-card__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  font-size: 12px; font-weight: 600; letter-spacing: .03em;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  color: #fff; backdrop-filter: blur(4px);
}
.proj-card__enquire {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 14px; color: #fff;
}
.proj-card__enquire svg { width: 16px; height: 16px; color: var(--accent); transition: transform .25s var(--ease); }
.proj-card:hover .proj-card__enquire svg { transform: translateX(4px); }
.proj-card--feature { min-height: 480px; }
.proj-tag {
  position: absolute; top: 20px; left: 20px; z-index: 1;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: var(--primary); color: #1a140a; padding: 7px 13px; border-radius: 999px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; grid-template-columns: 1fr; }
.svc {
  background: var(--surface); padding: 34px 30px;
  transition: background .3s var(--ease), transform .3s var(--ease);
  position: relative;
}
.svc:hover { background: #fff; }
.svc__icon { width: 50px; height: 50px; border-radius: 13px; background: rgba(191,151,80,.12); color: var(--primary-deep); display: grid; place-items: center; margin-bottom: 20px; }
.svc__icon svg { width: 25px; height: 25px; }
.svc h3 { font-size: 25px; margin-bottom: 9px; color: var(--secondary); }
.svc p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.svc__num { position: absolute; top: 26px; right: 28px; font-family: var(--font-display); font-size: 18px; color: var(--border); font-style: italic; }

/* ============================================================
   VALUES / WHY
   ============================================================ */
.values-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
.value {
  border-left: 2px solid var(--primary); padding-left: 24px;
}
.value .num { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--accent); }
.value h3 { font-size: 30px; margin: 6px 0 10px; color: #fff; }
.value p { color: var(--muted-dark); font-size: 15.5px; line-height: 1.7; }

/* Advisory band */
.advisory { background: var(--surface-2); }
.advisory__inner { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
.advisory__media { position: relative; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); aspect-ratio: 16/10; }
.advisory__media img { width: 100%; height: 100%; object-fit: cover; }
.advisory__list { display: grid; gap: 22px; margin-top: 30px; }
.advisory__item { display: flex; gap: 16px; }
.advisory__item .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--secondary); color: var(--accent); display: grid; place-items: center; }
.advisory__item .ic svg { width: 22px; height: 22px; }
.advisory__item h4 { font-family: var(--font-ui); font-weight: 700; font-size: 17px; color: var(--secondary); margin-bottom: 4px; }
.advisory__item p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--bg); color: var(--text-on-dark); overflow: hidden; }
.team__photo { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-l); border: 1px solid var(--border-dark); margin-top: 18px; background: #fff; }
.team__photo img { width: 100%; height: auto; display: block; }
.team__note { font-size: 13.5px; color: var(--muted-dark); margin-top: 14px; font-style: italic; }
.team__faces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; max-width: 560px; }
.team__face { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; position: relative; background: var(--secondary); }
.team__face img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; margin-top: 40px; }
.stat .v { font-family: var(--font-display); font-size: clamp(34px,5vw,46px); color: var(--accent); line-height: 1; }
.stat .k { font-size: 13.5px; color: var(--muted-dark); margin-top: 8px; letter-spacing: .02em; }

/* ============================================================
   CONTACT / LEAD
   ============================================================ */
.contact__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.contact__intro h2 { font-size: clamp(34px,5.5vw,52px); color: var(--secondary); margin-top: 16px; }
.contact__intro p { margin-top: 16px; }
.contact-methods { display: grid; gap: 12px; margin-top: 30px; }
.cm {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.cm:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-s); }
.cm .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(191,151,80,.12); color: var(--primary-deep); display: grid; place-items: center; }
.cm .ic svg { width: 23px; height: 23px; }
.cm .k { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cm .v { font-weight: 700; font-size: 16px; color: var(--secondary); }
.cm--wa .ic { background: rgba(31,157,91,.14); color: #1f9d5b; }

/* Form */
.lead-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-m); }
.lead-form h3 { font-size: 27px; color: var(--secondary); }
.lead-form .sub { font-size: 14.5px; color: var(--muted); margin: 6px 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .03em; color: var(--secondary); margin-bottom: 7px; }
.field label .req { color: var(--primary-deep); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 16px; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--surface); transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(191,151,80,.16); }
.field textarea { resize: vertical; min-height: 96px; }
.field--err input, .field--err textarea, .field--err select { border-color: #c0492f; }
.field .err { color: #c0492f; font-size: 12.5px; margin-top: 6px; display: none; font-weight: 600; }
.field--err .err { display: block; }
.chips-input { display: flex; flex-wrap: wrap; gap: 9px; }
.chip-opt { padding: 9px 16px; border: 1.5px solid var(--border); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--muted); background: var(--surface); transition: all .2s var(--ease); min-height: 44px; }
.chip-opt[aria-pressed="true"] { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.chip-opt:hover { border-color: var(--primary); }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .ic { width: 64px; height: 64px; border-radius: 50%; background: rgba(31,157,91,.14); color: #1f9d5b; display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ic svg { width: 32px; height: 32px; }
.form-success h3 { color: var(--secondary); }
.form-success p { color: var(--muted); margin-top: 10px; font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-2); color: var(--text-on-dark); padding-top: clamp(56px,7vw,84px); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.footer-brand img { height: 84px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { color: var(--muted-dark); font-size: 14.5px; margin-top: 16px; max-width: 38ch; line-height: 1.65; }
.footer-col h4 { font-family: var(--font-ui); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: var(--muted-dark); font-size: 14.5px; transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--border-dark); display: grid; place-items: center; color: var(--muted-dark); transition: all .25s var(--ease); }
.footer-socials a:hover { color: #1a140a; background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.footer-socials svg { width: 19px; height: 19px; }

/* Map placeholder */
.map-ph {
  margin-top: 16px; border: 1px dashed var(--border-dark); border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(215,190,144,.05) 0 10px, transparent 10px 20px);
  min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 20px;
}
.map-ph svg { width: 28px; height: 28px; color: var(--accent); }
.map-ph .t { font-weight: 700; font-size: 14px; color: var(--text-on-dark); }
.map-ph .s { font-size: 12.5px; color: var(--muted-dark); font-family: var(--font-ui); }

.footer-bottom { border-top: 1px solid var(--border-dark); margin-top: clamp(40px,5vw,60px); padding-block: 24px; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom p { font-size: 13px; color: var(--muted-dark); }
.footer-bottom .disclaimer { font-size: 12px; color: rgba(157,176,184,.65); line-height: 1.6; }

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  box-shadow: 0 -6px 24px rgba(16,32,38,.18);
  transform: translateY(110%); transition: transform .35s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar.show { transform: translateY(0); }
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 58px; font-weight: 700; font-size: 15px; letter-spacing: .01em;
}
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar .mb-wa { background: #1f9d5b; color: #fff; }
.mobile-bar .mb-call { background: var(--secondary); color: #fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint svg { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(4, auto); }
}
@media (min-width: 760px) {
  .scroll-hint { display: block; }
  .trust__grid { grid-template-columns: auto 1fr; align-items: center; gap: 44px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .advisory__inner { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .advisory__inner.reverse .advisory__media { order: 2; }
  .contact__grid { grid-template-columns: .92fr 1.08fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 940px) {
  .nav { display: flex; gap: 30px; }
  .header-call { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-bar { display: none !important; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-card--feature { grid-column: span 2; }
  .team__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
}
@media (min-width: 1100px) {
  .proj-grid { grid-template-columns: repeat(3, 1fr); }
  .proj-card--feature { grid-column: span 3; }
}
