/* =========================================================
   ALEPPO CONSTRUCTION — Stylesheet
   Design tokens: Navy / Charcoal / White / Construction Orange
   Type: Archivo (display) + Inter (body) + IBM Plex Mono (labels)
   ========================================================= */

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

:root {
  /* Color tokens */
  --navy: #0A1F33;
  --navy-deep: #061525;
  --navy-soft: #12314f;
  --charcoal: #23262A;
  --white: #FFFFFF;
  --paper: #F3F4F4;
  --paper-dim: #E7E9E9;
  --line: #D7DADA;
  --orange: #E8590C;
  --orange-light: #FF7E3D;
  --orange-dim: rgba(232, 89, 12, 0.12);

  /* Type */
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Layout */
  --container-w: 1240px;
  --radius: 4px;
  --radius-lg: 10px;
  --nav-h: 84px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.12; letter-spacing: -0.01em; }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 32px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__mark {
  width: 64px; height: 64px;
  position: relative;
}
.preloader__mark svg { width: 100%; height: 100%; }
.preloader__mark path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: draw 1.1s var(--ease) infinite alternate;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Eyebrow / Dimension-line label (signature motif) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange);
}
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; }
.section-head p { margin-top: 16px; font-size: 17px; color: #545a5f; }

/* Dimension line — blueprint tick-mark rule used under headings */
.dim-line {
  display: flex; align-items: center; gap: 6px;
  margin: 18px 0 0;
  color: var(--line);
}
.dim-line::before, .dim-line::after { content: ''; height: 8px; width: 1px; background: var(--paper-dim); }
.dim-line span { flex: 1; height: 1px; background: var(--paper-dim); }

/* Corner brackets — architectural crop-mark framing on media */
.bracket-frame { position: relative; }
.bracket-frame::before, .bracket-frame::after,
.bracket-frame .b-tr, .bracket-frame .b-bl {
  content: ''; position: absolute; width: 22px; height: 22px; z-index: 2;
  border-color: var(--orange); border-style: solid; border-width: 0;
}
.bracket-frame::before { top: -1px; left: -1px; border-top-width: 3px; border-left-width: 3px; }
.bracket-frame::after { bottom: -1px; right: -1px; border-bottom-width: 3px; border-right-width: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px -10px rgba(232, 89, 12, 0.55); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), height 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar.is-scrolled { background: rgba(10, 31, 51, 0.94); backdrop-filter: blur(10px); height: 72px; box-shadow: 0 10px 30px -20px rgba(0,0,0,0.5); }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--white); letter-spacing: -0.01em; }
.nav-logo__mark { width: 34px; height: 34px; flex-shrink: 0; }
.nav-logo__mark svg { width: 100%; height: 100%; }
.nav-logo span em { color: var(--orange); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 10px 16px; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.86);
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta a.phone { display: none; font-family: var(--font-mono); font-size: 13.5px; color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; z-index: 1100; }
.nav-toggle span { height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__blueprint {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 40%, transparent 90%);
}
.hero__glow { position: absolute; width: 700px; height: 700px; right: -180px; top: -120px; background: radial-gradient(circle, rgba(232,89,12,0.18), transparent 70%); filter: blur(10px); }
.hero__art { position: absolute; right: 4%; bottom: 0; width: min(46%, 620px); opacity: 0.92; }
.hero__art svg { width: 100%; height: auto; }
.hero__art .draw { fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: drawline 2.4s var(--ease) 0.3s forwards; }
@keyframes drawline { to { stroke-dashoffset: 0; } }

.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,720px); gap: 24px; padding-top: 60px; padding-bottom: 90px; }
.hero__eyebrow { color: var(--orange-light); }
.hero__eyebrow::before { background: var(--orange-light); }
.hero h1 {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero__lead { max-width: 540px; margin-top: 22px; font-size: 18px; color: rgba(255,255,255,0.72); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero__meta { margin-top: 64px; display: flex; gap: 40px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 26px; max-width: 620px; }
.hero__meta div { font-family: var(--font-mono); font-size: 12.5px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }
.hero__meta strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--white); font-weight: 700; margin-bottom: 4px; letter-spacing: 0; }

.hero__scroll { position: absolute; left: 32px; bottom: 32px; z-index: 2; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.55); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.hero__scroll .line { width: 1px; height: 40px; background: linear-gradient(var(--orange), transparent); animation: scrolldown 1.8s var(--ease) infinite; }
@keyframes scrolldown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Page (inner) hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 76px) 0 76px;
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
  overflow: hidden;
}
.page-hero__blueprint { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(180deg, black, transparent); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--orange-light); }
.page-hero .eyebrow::before { background: var(--orange-light); }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 54px); font-weight: 800; max-width: 760px; }
.page-hero p { margin-top: 16px; max-width: 600px; color: rgba(255,255,255,0.68); font-size: 17px; }
.breadcrumb { margin-top: 26px; display: flex; gap: 8px; font-family: var(--font-mono); font-size: 12.5px; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--orange-light); }

/* ---------- Sections generic ---------- */
section { padding: 110px 0; }
.section-alt { background: var(--paper); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.8); }
.section-navy h2 { color: var(--white); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__media { position: relative; }
.about__media .frame { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(155deg, var(--navy) 0%, var(--navy-soft) 55%, var(--orange) 220%); position: relative; overflow: hidden; }
.about__media .frame svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
.about__badge { position: absolute; bottom: -26px; left: -26px; background: var(--white); border-radius: var(--radius); padding: 22px 26px; box-shadow: 0 24px 48px -20px rgba(10,31,51,0.35); font-family: var(--font-mono); }
.about__badge strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--navy); font-weight: 800; }
.about__badge span { font-size: 12px; color: #6b7176; text-transform: uppercase; letter-spacing: 0.08em; }
.about__body h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; margin-bottom: 20px; }
.about__body p { color: #4b5257; font-size: 16.5px; margin-bottom: 16px; }
.about__list { margin-top: 28px; display: grid; gap: 14px; }
.about__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--charcoal); }
.about__list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--orange); margin-top: 2px; }

/* ---------- Services / Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--paper-dim);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(10,31,51,0.28); border-color: transparent; }
.card__icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--orange-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: background .4s var(--ease); }
.card__icon svg { width: 26px; height: 26px; color: var(--orange); }
.card:hover .card__icon { background: var(--orange); }
.card:hover .card__icon svg { color: var(--white); }
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.card p { color: #5a6065; font-size: 15px; }
.card__num { position: absolute; top: 30px; right: 32px; font-family: var(--font-mono); font-size: 12px; color: var(--paper-dim); }
.card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--navy); }
.card__link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); color: var(--orange); }

/* ---------- Why choose us ---------- */
.why { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.why__points { display: grid; gap: 30px; }
.why__point { display: flex; gap: 20px; }
.why__point .n { font-family: var(--font-mono); font-size: 13px; color: var(--orange); padding-top: 4px; }
.why__point h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.why__point p { color: #545a5f; font-size: 15px; }

/* ---------- Process (timeline) ---------- */
.process { position: relative; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process__steps::before { content: ''; position: absolute; top: 26px; left: 6%; right: 6%; height: 1px; background: var(--paper-dim); }
.process__step { position: relative; padding: 0 22px; text-align: left; }
.process__step .dot { width: 52px; height: 52px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--paper-dim); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 600; color: var(--navy); margin-bottom: 26px; position: relative; z-index: 2; transition: all .4s var(--ease); }
.process__step:hover .dot { background: var(--orange); border-color: var(--orange); color: var(--white); }
.process__step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.process__step p { font-size: 14.5px; color: #5a6065; }

/* ---------- Gallery / Projects placeholder tiles ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tile-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.tile {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
}
.tile::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}
.tile__body { position: relative; z-index: 1; text-align: center; color: rgba(255,255,255,0.65); padding: 20px; }
.tile__body svg { width: 34px; height: 34px; margin: 0 auto 12px; color: var(--orange-light); }
.tile__body span { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.tile-tag { position: absolute; top: 16px; left: 16px; z-index: 2; font-family: var(--font-mono); font-size: 11px; padding: 5px 10px; background: rgba(255,255,255,0.1); color: var(--white); border-radius: 20px; letter-spacing: 0.05em; }

.empty-state { text-align: center; padding: 70px 24px; border: 1px dashed var(--paper-dim); border-radius: var(--radius-lg); background: var(--paper); }
.empty-state svg { width: 40px; height: 40px; color: var(--orange); margin: 0 auto 18px; }
.empty-state h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.empty-state p { color: #5a6065; max-width: 460px; margin: 0 auto; font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); position: relative; overflow: hidden; padding: 90px 0; }
.cta-band__blueprint { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(ellipse 70% 100% at 20% 50%, black, transparent); }
.cta-band .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3.4vw, 36px); max-width: 560px; font-weight: 800; }
.cta-band p { color: rgba(255,255,255,0.6); margin-top: 12px; max-width: 480px; }
.cta-band__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 80px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand .nav-logo { margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; max-width: 300px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 24px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: all .3s var(--ease); }
.footer__social a:hover { background: var(--orange); border-color: var(--orange); }
.footer__social svg { width: 16px; height: 16px; }
.footer h4 { color: var(--white); font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 22px; letter-spacing: 0.02em; text-transform: uppercase; }
.footer ul { display: grid; gap: 13px; }
.footer ul a { font-size: 14.5px; transition: color .25s var(--ease); }
.footer ul a:hover { color: var(--orange-light); }
.footer__contact li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 26px 0; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer__bottom-links { display: flex; gap: 22px; }

/* ---------- Scroll to top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.35s var(--ease);
  box-shadow: 0 14px 30px -12px rgba(10,31,51,0.5);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--orange); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea {
  padding: 14px 16px; border: 1.5px solid var(--paper-dim); border-radius: var(--radius);
  background: var(--white); font-size: 15px; color: var(--charcoal);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-dim); outline: none; }
.field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 13px; color: #7a8085; margin-top: 14px; }
.form-status { margin-top: 18px; font-size: 14.5px; font-weight: 600; display: none; padding: 14px 16px; border-radius: var(--radius); }
.form-status.is-success { display: block; background: #eaf6ee; color: #1c7a3d; }

/* ---------- Contact page layout ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-card { background: var(--paper); border-radius: var(--radius-lg); padding: 40px; }
.contact-card ul { display: grid; gap: 26px; margin-top: 6px; }
.contact-card li { display: flex; gap: 16px; align-items: flex-start; }
.contact-card .ico { width: 44px; height: 44px; border-radius: var(--radius); background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .ico svg { width: 20px; height: 20px; color: var(--orange-light); }
.contact-card strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 3px; }
.contact-card span, .contact-card a { font-size: 14.5px; color: #545a5f; }
.map-frame { margin-top: 30px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--paper-dim); }
.map-frame iframe { width: 100%; height: 240px; border: 0; display: block; }

/* ---------- Privacy Policy page ---------- */
.policy-content { max-width: 780px; }
.policy-content h2 { margin-top: 44px; margin-bottom: 14px; font-size: 22px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: #4b5257; margin-bottom: 14px; font-size: 15.5px; }
.policy-placeholder { border: 1px dashed var(--paper-dim); border-radius: var(--radius-lg); padding: 46px; background: var(--paper); text-align: center; }
.policy-placeholder svg { width: 36px; height: 36px; color: var(--orange); margin: 0 auto 16px; }
.policy-placeholder h3 { font-size: 19px; margin-bottom: 10px; }
.policy-placeholder p { color: #5a6065; font-size: 15px; max-width: 480px; margin: 0 auto; }
.policy-meta { font-family: var(--font-mono); font-size: 12.5px; color: #8a9095; margin-bottom: 30px; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Stats strip (used sparingly, factual/structural only) ---------- */
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.badge-row span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; color: var(--navy); background: var(--paper); border: 1px solid var(--paper-dim); padding: 8px 14px; border-radius: 30px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .about, .why, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); row-gap: 46px; }
  .process__steps::before { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --nav-h: 72px; }
  .nav-links, .nav-cta a.phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; top: 0;
    flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    background: var(--navy-deep);
    transform: translateX(100%); transition: transform 0.45s var(--ease);
  }
  .nav-links.is-open { display: flex; transform: translateX(0); }
  .nav-links a { font-size: 22px; padding: 14px 20px; }
  .hero__art { display: none; }
  .hero .container { padding-bottom: 70px; }
  .hero__meta { gap: 26px; }
  section { padding: 76px 0; }
  .grid-3, .grid-2, .tile-grid, .tile-grid.two-col { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}
