/* =========================================================================
   ZAM Construction
   Hand-written stylesheet. Mobile-first. No framework, no build step.
   Sections:
   01 Tokens
   02 Reset and base
   03 Typography
   04 Layout helpers
   05 Buttons and links
   06 Eyebrow, section head, rules
   07 Top bar and header
   08 Mobile nav drawer
   09 Hero
   10 Stat blocks
   11 Service cards
   12 Project cards and data rows
   13 Process steps
   14 Split feature blocks
   15 CTA bands
   16 Testimonials
   17 FAQ accordion
   18 Forms
   19 Contact details and map
   20 Team
   21 Footer
   22 Sticky WhatsApp bar
   23 Scroll reveal and reduced motion
   24 Breakpoints
   ========================================================================= */

/* 01 Tokens ------------------------------------------------------------- */
:root {
  --black:      #1A1A1A;
  --charcoal:   #2B2B2B;
  --gold:       #C9A24B;
  --gold-dark:  #B08E3D;
  --offwhite:   #F7F5F1;
  --white:      #FFFFFF;
  --grey:       #6B6862;
  --grey-dark:  #4A4844;
  --line:       #E2DDD3;
  --line-dark:  rgba(255, 255, 255, 0.14);

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(56px, 9vw, 120px);

  --font-head: "Archivo", "Segoe UI", Tahoma, sans-serif;
  --font-body: "Inter", "Segoe UI", Tahoma, sans-serif;

  --radius: 2px;
  --shadow: 0 18px 40px -24px rgba(26, 26, 26, 0.4);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 02 Reset and base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--grey);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration-color: var(--gold); text-underline-offset: 3px; }

button { font: inherit; color: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--black);
  color: var(--offwhite);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* 03 Typography ----------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--black);
  line-height: 1.12;
  margin: 0 0 0.4em;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.15rem, 5.4vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

strong { color: var(--grey-dark); font-weight: 600; }

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
  color: var(--grey-dark);
}

.muted { color: var(--grey); }

/* 04 Layout helpers ----------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--flush-top { padding-top: 0; }

.section--dark {
  background: var(--black);
  color: rgba(247, 245, 241, 0.82);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--offwhite); }

.section--paper { background: var(--white); }

.divider { border: 0; height: 1px; background: var(--line); margin: 0; }
.section--dark .divider,
.divider--gold { background: var(--gold); }
.divider--gold { height: 2px; }

.grid { display: grid; gap: clamp(24px, 4vw, 48px); }

@media (min-width: 760px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.stack-sm > * + * { margin-top: 0.75rem; }
.stack > * + * { margin-top: 1.4rem; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-tight { max-width: 46ch; }

/* 05 Buttons and links ------------------------------------------------- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.75rem;
}

.btn {
  --btn-bg: var(--black);
  --btn-fg: var(--offwhite);
  --btn-bd: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover {
  border-color: var(--gold);
  box-shadow: inset 0 -3px 0 var(--gold);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--black);
  --btn-bd: var(--black);
}
.btn--gold {
  --btn-bg: var(--gold);
  --btn-fg: var(--black);
  --btn-bd: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: none;
}

.section--dark .btn--primary,
.cta-band .btn--primary {
  --btn-bg: var(--offwhite);
  --btn-fg: var(--black);
  --btn-bd: var(--offwhite);
}
.section--dark .btn--outline,
.cta-band .btn--outline,
.hero .btn--outline {
  --btn-fg: var(--offwhite);
  --btn-bd: rgba(247, 245, 241, 0.55);
}
.hero .btn--outline:hover { border-color: var(--gold); }

.btn--wide { width: 100%; justify-content: center; }
@media (min-width: 520px) { .btn--wide { width: auto; } }

/* text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--black);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--gold-dark); }
.link-arrow svg { width: 16px; height: 16px; }
.section--dark .link-arrow { color: var(--offwhite); }

.link-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--grey-dark);
  transition: color 0.2s var(--ease);
}
.link-wa:hover { color: var(--gold-dark); }
.link-wa svg { width: 17px; height: 17px; }

/* 06 Eyebrow, section head, pills ------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
  flex: none;
}
.eyebrow--center { justify-content: center; }
.section--dark .eyebrow { color: var(--gold); }

.section-head { margin-bottom: clamp(32px, 5vw, 56px); position: relative; }
.section-head__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line);
  margin-bottom: 0.15em;
}
.section--dark .section-head__num { -webkit-text-stroke-color: rgba(255, 255, 255, 0.2); }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p.lead { margin-top: 1rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-dark);
  background: var(--white);
}
.pill svg { width: 14px; height: 14px; color: var(--gold-dark); }

/* 07 Top bar and header --------------------------------------------------- */
.topbar {
  display: none;
  background: var(--black);
  color: rgba(247, 245, 241, 0.72);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 20px;
}
.topbar__meta { display: flex; align-items: center; gap: 22px; }
.topbar__meta a, .topbar__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}
.topbar__meta a:hover { color: var(--gold); }
.topbar__meta svg { width: 14px; height: 14px; color: var(--gold); }
.topbar .pill {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(247, 245, 241, 0.82);
}

@media (min-width: 960px) {
  .topbar { display: block; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--offwhite);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(26, 26, 26, 0.55); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}
@media (min-width: 960px) {
  .site-header__inner { min-height: 84px; }
}

.site-header__brand { display: inline-flex; flex: none; }
.site-header__logo {
  width: auto;
  height: 52px;
}
@media (min-width: 960px) {
  .site-header__logo { height: 64px; }
}

.site-nav { display: none; }

@media (min-width: 960px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    flex: 1;
    justify-content: flex-end;
  }
  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .site-nav__list a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    color: var(--grey-dark);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
  }
  .site-nav__list a:hover { color: var(--black); }
  .site-nav__list a[aria-current="page"] {
    color: var(--black);
    border-bottom-color: var(--gold);
  }
  .site-nav__cta {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex: none;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--black);
  transition: transform 0.24s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
}

/* 08 Mobile nav drawer ------------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--offwhite);
  display: flex;
  flex-direction: column;
  padding: 22px var(--gutter) 40px;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-nav__top img { height: 42px; width: auto; }
.mobile-nav__close {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}
.mobile-nav__close svg { width: 20px; height: 20px; }

.mobile-nav__list {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  border-top: 1px solid var(--line);
}
.mobile-nav__list li { border-bottom: 1px solid var(--line); }
.mobile-nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--black);
  text-decoration: none;
}
.mobile-nav__list a[aria-current="page"] { color: var(--gold-dark); }
.mobile-nav__list a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.mobile-nav__foot {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}
.mobile-nav__foot .btn { width: 100%; justify-content: center; }
.mobile-nav__meta {
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.mobile-nav__meta a { color: var(--grey-dark); font-weight: 600; text-decoration: none; }

body.nav-open { overflow: hidden; }

@media (min-width: 960px) {
  .mobile-nav { display: none; }
}

/* 09 Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--offwhite);
  background: var(--black);
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.72) 0%,
    rgba(26, 26, 26, 0.55) 45%,
    rgba(26, 26, 26, 0.82) 100%
  );
}
.hero__inner {
  padding-block: clamp(72px, 16vw, 168px);
  max-width: 44rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.35rem, 6vw, 4.35rem);
  margin-bottom: 0.5em;
}
.hero .eyebrow { color: var(--gold); }
.hero__lead {
  font-size: clamp(1.05rem, 1.9vw, 1.32rem);
  color: rgba(247, 245, 241, 0.9);
  max-width: 40ch;
}
.hero .btn-row { margin-top: 2rem; }

.hero--inner {
  background: var(--charcoal);
}
.hero--inner .hero__inner {
  padding-block: clamp(52px, 10vw, 104px);
  max-width: 52rem;
}
.hero--inner h1 { font-size: clamp(2.15rem, 5vw, 3.5rem); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(247, 245, 241, 0.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(247, 245, 241, 0.85); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-current] { color: var(--gold); }

/* 10 Stat blocks ----------------------------------------------------- */
.stats {
  display: grid;
  gap: 2px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
@media (min-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat {
  background: var(--black);
  padding: clamp(26px, 4vw, 40px) clamp(20px, 3vw, 32px);
}
.stats--paper { background: var(--line); border-color: var(--line); }
.stats--paper .stat { background: var(--offwhite); }

.stat__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--offwhite);
}
.stats--paper .stat__num { color: var(--black); }
.stat__num .u { color: var(--gold); }
.stat__label {
  display: block;
  margin-top: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.62);
}
.stats--paper .stat__label { color: var(--grey); }

/* 11 Service cards -------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3.2vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
}
.card h3 { margin: 0; }
.card p { font-size: 0.96rem; }
.card .link-arrow { margin-top: auto; align-self: flex-start; }

/* 12 Project cards -------------------------------------------------------- */
.project {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.project__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--charcoal);
}
.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.project:hover .project__media img { transform: scale(1.05); }
.project__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--black);
  color: var(--offwhite);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
}
.project__body {
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.project__body h3 { margin: 0; }
.project__body p { font-size: 0.96rem; }
.project__body .link-arrow { margin-top: auto; align-self: flex-start; }

.datarow {
  list-style: none;
  margin: 0;
  padding: 14px 0;
  border-block: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.datarow li {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
}
.datarow .k {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.datarow .v {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}
.section--dark .datarow { border-color: var(--line-dark); }
.section--dark .datarow .v { color: var(--offwhite); }
.section--dark .datarow .k { color: rgba(247, 245, 241, 0.55); }

/* case study block (alternating) */
.case {
  display: grid;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding-block: clamp(36px, 6vw, 68px);
  border-bottom: 1px solid var(--line);
}
.case:last-child { border-bottom: 0; }
.case__media {
  display: grid;
  gap: 12px;
}
.case__media .frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}
.case__media .frame img { width: 100%; height: 100%; object-fit: cover; }
.case__media--pair { grid-template-columns: 1fr 1fr; }
.case__media--pair .frame { aspect-ratio: 3 / 4; }

@media (min-width: 900px) {
  .case { grid-template-columns: 1.05fr 0.95fr; }
  .case--flip .case__media { order: 2; }
}

/* 13 Process steps -------------------------------------------------------- */
.process {
  display: grid;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 720px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .process { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: var(--white);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  letter-spacing: -0.03em;
}
.step h3 { margin: 0; font-size: 1.08rem; }
.step p { font-size: 0.93rem; margin: 0; }

.process--media .step { padding: 0; }
.process--media .step__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--charcoal);
}
.process--media .step__media img { width: 100%; height: 100%; object-fit: cover; }
.process--media .step__text {
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* build strip */
.buildstrip {
  display: grid;
  gap: 2px;
  background: var(--line-dark);
}
@media (min-width: 700px) { .buildstrip { grid-template-columns: repeat(3, 1fr); } }
.buildstrip figure { margin: 0; position: relative; background: var(--charcoal); }
.buildstrip img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.buildstrip figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(26, 26, 26, 0.85));
  color: var(--offwhite);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

/* 14 Split feature blocks ---------------------------------------------- */
.feature {
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.feature__media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  position: relative;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__media .badge {
  position: absolute;
  left: 18px;
  top: 18px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 13px;
}
.feature ul.ticks {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.feature ul.ticks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-size: 0.98rem;
}
.feature ul.ticks li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background: var(--gold);
  clip-path: polygon(41% 68%, 84% 22%, 94% 32%, 41% 88%, 8% 54%, 18% 44%);
}

@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--flip .feature__media { order: 2; }
}

/* 15 CTA bands ------------------------------------------------------------ */
.cta-band {
  position: relative;
  background: var(--black);
  color: rgba(247, 245, 241, 0.85);
  isolation: isolate;
  overflow: hidden;
}
.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.cta-band__inner {
  padding-block: clamp(52px, 9vw, 104px);
  max-width: 48rem;
}
.cta-band h2 { color: var(--white); }
.cta-band .eyebrow { color: var(--gold); }
.cta-band p { font-size: clamp(1rem, 1.6vw, 1.18rem); }

.cta-inline {
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  background: var(--white);
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius);
  margin-top: 1.75rem;
}
.cta-inline p { margin-bottom: 1rem; font-size: 0.98rem; }
.cta-inline .btn { width: 100%; justify-content: center; }
@media (min-width: 560px) { .cta-inline .btn { width: auto; } }

/* 16 Testimonials ---------------------------------------------------------- */
.quote-lead {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--black);
}
.section--dark .quote-lead { color: var(--offwhite); }
.quote-lead .mark { color: var(--gold); }

.tcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.tcard__stars { display: flex; gap: 3px; color: var(--gold); }
.tcard__stars svg { width: 16px; height: 16px; }
.tcard blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--grey-dark);
}
.tcard figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.avatar {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 999px;
  background: var(--black);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.tcard__who {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--black);
}
.tcard__where { font-size: 0.84rem; color: var(--grey); }

/* 17 FAQ accordion ------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--black);
  letter-spacing: -0.01em;
}
.faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 3px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--gold-dark);
  transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
}
.faq__icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq__icon::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); opacity: 0; }

.faq__panel > div { overflow: hidden; }
.faq__panel p {
  padding: 0 4px 24px;
  max-width: 68ch;
  font-size: 0.98rem;
}
/* With JS the panel collapses and animates on a measured max-height.
   Without JS every answer stays visible. */
.js .faq__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s var(--ease);
}
.js .faq__item.is-open .faq__panel { max-height: 40rem; }

/* 18 Forms ------------------------------------------------------------- */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
}
.form__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .form__grid { grid-template-columns: repeat(2, 1fr); }
  .field--full { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--grey-dark);
}
.field .req { color: var(--gold-dark); }
.field .hint { font-size: 0.78rem; color: var(--grey); font-weight: 400; }

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.96rem;
  color: var(--black);
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6862' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

fieldset.field-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 6px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
fieldset.field-group legend {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--grey-dark);
  padding: 0 6px;
}
.radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  font-size: 0.92rem;
}
.radio-row input { width: 18px; height: 18px; accent-color: var(--gold-dark); flex: none; }

.form__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.form__actions .btn { width: 100%; justify-content: center; }
@media (min-width: 560px) { .form__actions .btn { width: auto; } }
.form__note { font-size: 0.82rem; color: var(--grey); }

.form__success {
  display: none;
  border: 1px solid var(--gold);
  border-left: 3px solid var(--gold);
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}
.form__success.is-shown { display: block; }
.form__success .check {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.form__success .check svg { width: 24px; height: 24px; }
.form__success h2 { margin-bottom: 0.3em; }
.form.is-hidden { display: none; }

/* 19 Contact details and map ---------------------------------------------- */
.contact-grid { display: grid; gap: clamp(28px, 5vw, 56px); }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.15fr; align-items: start; }
}

.info-block {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.info-block:first-of-type { padding-top: 0; }
.info-block h3 {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0;
}
.info-block a { color: var(--black); font-weight: 600; text-decoration: none; }
.info-block a:hover { color: var(--gold-dark); }
.info-block address { font-style: normal; line-height: 1.7; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.area-tags span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--grey-dark);
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}
@media (min-width: 900px) { .map-frame iframe { height: 100%; min-height: 460px; } }

/* 20 Team ------------------------------------------------------------- */
.team { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 700px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member {
  background: var(--white);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.member .monogram {
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.member h3 { margin: 0; font-size: 1.1rem; }
.member .role {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.member p { font-size: 0.92rem; margin: 8px 0 0; }

/* 21 Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: rgba(247, 245, 241, 0.7);
  font-size: 0.92rem;
}
.site-footer__grid {
  display: grid;
  gap: clamp(30px, 5vw, 48px);
  padding-block: clamp(48px, 8vw, 88px);
}
@media (min-width: 680px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .site-footer__grid { grid-template-columns: 1.6fr 1fr 1.3fr 1.1fr; }
}

.site-footer__brand img { height: 58px; width: auto; margin-bottom: 18px; }
.site-footer__brand p { max-width: 38ch; margin-bottom: 20px; }

.site-footer__h {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--offwhite);
  margin: 0 0 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(247, 245, 241, 0.7); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer address { font-style: normal; line-height: 1.9; }
.site-footer__hours { margin-top: 16px; line-height: 1.9; }

.site-footer__bar {
  border-top: 1px solid var(--line-dark);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(247, 245, 241, 0.5);
}

/* 22 Sticky WhatsApp bar ---------------------------------------------- */
.wa-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--black);
  color: var(--offwhite);
  border-top: 2px solid var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.wa-bar svg { width: 20px; height: 20px; color: var(--gold); }

@media (min-width: 960px) {
  .wa-bar { display: none; }
}
@media (max-width: 959px) {
  body { padding-bottom: 58px; }
  .mobile-nav { padding-bottom: 72px; }
}

/* 23 Motion: reveal, stagger, hero, page transition ----------------- */

/* -- Standalone reveal targets -- */
.js-motion [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.js-motion [data-reveal="left"]  { transform: translateX(-36px); }
.js-motion [data-reveal="right"] { transform: translateX(36px); }
.js-motion [data-reveal="pop"] {
  transform: scale(0.93);
  transition-timing-function: cubic-bezier(0.34, 1.42, 0.64, 1);
}
.js-motion [data-reveal="fade"] { transform: none; }
.js-motion [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* -- Staggered children of a [data-stagger] container -- */
.js-motion [data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.js-motion [data-stagger="left"]  > * { transform: translateX(-30px); }
.js-motion [data-stagger="right"] > * { transform: translateX(30px); }
.js-motion [data-stagger="pop"] > * {
  transform: scale(0.9);
  transition-timing-function: cubic-bezier(0.34, 1.42, 0.64, 1);
}
.js-motion [data-stagger].is-in > * {
  opacity: 1;
  transform: none;
}

/* -- Gold eyebrow rule draws in with its element -- */
.js-motion .eyebrow[data-reveal]::before,
.js-motion [data-stagger] > .eyebrow::before {
  transform: scaleX(0);
  transition: transform 0.55s var(--ease) 0.12s;
}
.js-motion .eyebrow[data-reveal].is-in::before,
.js-motion [data-stagger].is-in > .eyebrow::before {
  transform: scaleX(1);
}

/* -- Count-up finish pop -- */
.stat__num.is-counted { animation: count-pop 0.42s var(--ease); }
@keyframes count-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.09); }
  100% { transform: scale(1); }
}

/* -- Header settles in on load (self-completing, no JS dependency) -- */
.js .topbar { animation: drop-in 0.5s var(--ease) both; }
.js .site-header { animation: drop-in 0.5s var(--ease) 0.05s both; }
@keyframes drop-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}

/* -- Hero background settle -- */
.js-motion .hero__media img { animation: hero-zoom 1.5s var(--ease) both; }
@keyframes hero-zoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

/* -- Page leave (exit fade before an internal navigation) --
   No entrance animation on arrival: the per-element reveals below already
   carry the page in, and a whole-page opacity gate is a single point of
   failure. The exit fade degrades safely to an instant navigation. */
.js.is-leaving [data-page] {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

/* -- Failsafe: only reached if main.js never runs (it clears the timer
   that adds this class). Snap everything visible, transitions off. -- */
.motion-failsafe [data-reveal],
.motion-failsafe [data-stagger] > *,
.motion-failsafe .eyebrow[data-reveal]::before,
.motion-failsafe [data-stagger] > .eyebrow::before {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* -- Success check draws itself -- */
.form__success .check svg path {
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
}
.form__success.is-shown .check svg path {
  transition: stroke-dashoffset 0.5s var(--ease) 0.18s;
  stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js-motion [data-reveal],
  .js-motion [data-stagger] > *,
  .js-motion [data-reveal].is-in,
  .js-motion [data-stagger].is-in > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .js-motion .eyebrow[data-reveal]::before,
  .js-motion [data-stagger] > .eyebrow::before { transform: scaleX(1) !important; }
  .js .topbar,
  .js .site-header,
  .js-motion .hero__media img { animation: none !important; }
  .js [data-page] { animation: none !important; }
  .js.is-leaving [data-page] { opacity: 1 !important; transform: none !important; }
  .stat__num.is-counted { animation: none !important; }
  .form__success .check svg path { stroke-dashoffset: 0 !important; }
  .project:hover .project__media img { transform: none; }
}

/* 24 Small screen tweaks -------------------------------------------------- */
@media (max-width: 400px) {
  :root { --gutter: 18px; }
  .btn { padding: 14px 20px; font-size: 0.9rem; }
}
