/* ====================================================
   R&D Painting and Cleaning — DARKNESS / BRUTAL / CLEAN
   Palette: Black · Lead (Chumbo) · Gold · White
   ==================================================== */

:root {
  /* Core palette */
  --black:        #0a0a0b;   /* foreground/ink only — not used as flat bg */
  --ink:          #15181c;   /* charcoal surface */
  --chumbo:       #2a2d31;   /* lead — primary dark surface */
  --chumbo-2:     #23272d;   /* deep lead */
  --chumbo-3:     #3a3e44;   /* lead border / outline */
  --chumbo-soft:  #1b1e23;   /* charcoal surface */
  --gold:         #c9a05c;
  --gold-2:       #b08a45;
  --gold-3:       #e6c887;
  --white:        #ffffff;
  --off-white:    #f3f1ec;
  --muted:        #8a8e95;
  --muted-2:      #b8bbc0;
  --line:         rgba(255,255,255,0.08);
  --line-strong:  rgba(255,255,255,0.16);

  /* Backgrounds — cinza chumbo (sem preto chapado), com degradês */
  --bg-deep:      #14161a;
  --bg-base:      #1b1e23;
  --page-grad:    linear-gradient(168deg, #20242b 0%, #16191e 52%, #1c2027 100%);
  --surface:      linear-gradient(180deg, #1d2128 0%, #161a1f 100%);

  /* Layout */
  --container:    1320px;
  --gutter:       32px;

  /* Motion */
  --t-fast:       180ms ease;
  --t:            300ms cubic-bezier(.2,.7,.2,1);

  --header-h:     108px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--bg-deep); }

body {
  font-family: 'Big Shoulders Display', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--muted-2);
  background: var(--page-grad);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.005em;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--white); }
ul { list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Big Shoulders Display', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.005em;
  text-transform: none;
}

p { color: var(--muted-2); }

::selection { background: var(--gold); color: var(--black); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============== EYEBROW ============== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.3);
}
.eyebrow--light { color: rgba(255,255,255,0.55); }
.eyebrow--center { justify-content: center; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 34px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.btn--lg { padding: 22px 42px; }
.btn--sm { padding: 14px 26px; font-size: 11px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--dark {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--dark:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn .arr { transition: transform var(--t); display: inline-block; }
.btn:hover .arr { transform: translateX(6px); }

/* ============== TOPBAR — DARK ============== */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  padding: 12px 0;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}
.topbar__item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.topbar__item svg { color: rgba(255,255,255,0.35); flex-shrink: 0; }
.topbar__item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.topbar__item a:hover { color: var(--white); }

/* ============== HEADER — DARK ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: all var(--t-fast);
}
.header.is-scrolled {
  border-bottom-color: var(--line-strong);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand__logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: 240px;
  transition: opacity var(--t);
}
.brand:hover .brand__logo { opacity: 0.82; }
.brand--footer .brand__logo { height: 72px; max-width: 280px; }

.nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 2px;
}
.nav a {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
}
.nav a:hover { color: var(--white); }
.nav a.active { color: var(--white); }

.header__cta {
  display: flex;
  align-items: center;
}

/* Header CTA — minimal outline */
.btn--phone {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  padding: 14px 22px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: all var(--t);
}
.btn--phone:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--phone .phone-icon {
  width: auto; height: auto;
  background: transparent;
  border-radius: 0;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  align-self: center;
}
.nav__toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--t);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== HERO (HOME) — VIDEO BG ============== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background-color: var(--bg-deep);
  background-image: url('assets/projects/project-01.jpg');
  background-size: cover;
  background-position: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: grayscale(0%) saturate(1.05) contrast(1.02) brightness(0.62);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22,25,30,0.52) 0%, rgba(22,25,30,0.40) 40%, rgba(20,22,26,0.82) 100%),
    linear-gradient(120deg, rgba(28,32,40,0.66) 0%, rgba(28,32,40,0.12) 100%);
  z-index: -1;
}
.hero__content {
  padding: 120px 0 160px;
  max-width: 100%;
  text-align: center;
  width: 100%;
}
.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  display: block;
}
.hero__title {
  font-family: 'Big Shoulders Display', sans-serif;
  color: var(--white);
  font-size: clamp(2.6rem, 7.5vw, 6.8rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 44px;
  letter-spacing: -0.005em;
  text-transform: none;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.hero__title .accent {
  color: var(--white);
  font-weight: 400;
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 140px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  font-weight: 600;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50%      { transform: scaleY(1); transform-origin: top; }
}

.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,11,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-strong);
}
.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero__stats-inner > div {
  padding: 32px 36px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__stats-inner > div:first-child { border-left: 0; }
.hero__stats-inner strong {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.hero__stats-inner strong em {
  font-style: normal;
  color: rgba(255,255,255,0.4);
}
.hero__stats-inner span {
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
}

/* ============== PAGE BANNER (INNER PAGES) ============== */
.page-banner {
  position: relative;
  color: var(--white);
  padding: 160px 0 130px;
  background: var(--chumbo-soft);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-banner__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: grayscale(0%) saturate(1.05) contrast(1.05);
  z-index: 0;
}
.page-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.4), rgba(10,10,11,0.95));
  z-index: 0;
}
.page-banner__inner { position: relative; z-index: 1; }
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.page-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 640px;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { opacity: 0.4; }

/* ============== STRIP ============== */
.strip {
  background: var(--ink);
  color: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-left: 1px solid var(--line);
}
.strip__item:first-child { border-left: 0; }
.strip__item svg { color: rgba(255,255,255,0.5); flex-shrink: 0; }

/* ============== SECTIONS ============== */
.section { padding: 180px 0; background: transparent; }
.section--alt { background: linear-gradient(180deg, #1f242b 0%, #171b20 100%); }
.section--soft { background: linear-gradient(180deg, #181c21 0%, #14171b 100%); }
.section--dark { background: linear-gradient(160deg, #262b32 0%, #1b1f25 100%); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p  { color: rgba(255,255,255,0.7); }

.section__head { max-width: 800px; margin-bottom: 100px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 24px;
}
.section__head p {
  font-size: 1.08rem;
  color: var(--muted-2);
}

/* Two-column intro layout */
.split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 100px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.split-head h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin: 0;
}
.split-head p { margin: 0; color: var(--muted-2); font-size: 1.05rem; }

/* ============== SERVICES (Cards) ============== */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  background: var(--surface);
  padding: 0;
  transition: all var(--t);
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  color: inherit;
  overflow: hidden;
}
.service__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter var(--t);
  filter: brightness(0.92);
}
.service:hover .service__img {
  transform: scale(1.04);
  filter: brightness(1);
}
.service__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0) 18%,
    rgba(0,0,0,0.15) 38%,
    rgba(20,23,28,0.55) 60%,
    rgba(22,26,31,0.92) 85%,
    #181c21 100%);
  pointer-events: none;
}
.service__body {
  padding: 32px 36px 44px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.service:hover .service__num  { color: rgba(255,255,255,0.6); }
.service:hover .service__link {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.service:hover .service__link .arr { transform: translateX(4px); }

.service__num {
  display: inline-block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.32em;
  margin-bottom: 20px;
  transition: all var(--t);
}
.service h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  transition: color var(--t);
}
.service p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.7;
  flex: 1;
}
.service ul { margin: 0 0 36px; }
.service ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 12px 0 12px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.04em;
}
.service ul li:last-child { border-bottom: 0; }
.service ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 10px; height: 1px;
  background: rgba(255,255,255,0.4);
  transform: translateY(-50%);
}
.service__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  transition: all var(--t);
  margin-top: 32px;
  align-self: flex-start;
  line-height: 1;
}
.service__link .arr { transition: transform var(--t); }

/* Detailed service block (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  background: var(--chumbo-soft);
  margin-bottom: -1px;
}
.service-detail--reverse .service-detail__media { order: 2; }
.service-detail__media {
  background-size: cover;
  background-position: center;
  min-height: 520px;
  filter: grayscale(0%) saturate(1.05) contrast(1.03) brightness(1);
}
.service-detail__body {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail__num {
  font-family: 'Big Shoulders Display', sans-serif;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.service-detail__body h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  margin-bottom: 24px;
}
.service-detail__body p { margin-bottom: 22px; color: var(--muted-2); }
.service-detail__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  margin: 32px 0 44px;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
}
.service-detail__list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.service-detail__list li::before {
  content: '';
  width: 8px; height: 1px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* ============== ABOUT / SPLIT ============== */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 110px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }

.split__media {
  position: relative;
  height: 680px;
}
.split__img {
  position: absolute;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0%) saturate(1.05) contrast(1.03) brightness(1);
  transition: filter var(--t);
  display: block;
}
video.split__img { background: var(--surface); }
.split__img:hover { filter: grayscale(0%) contrast(1.05) brightness(1); }
.split__img--1 {
  top: 0; left: 0;
  width: 72%;
  height: 72%;
  border: 1px solid var(--line);
}
.split__img--2 {
  bottom: 0; right: 0;
  width: 60%;
  height: 55%;
  border: 10px solid var(--black);
  outline: 1px solid var(--line);
}
.section--alt .split__img--2 { border-color: var(--chumbo-soft); }
.section--dark .split__img--2 { border-color: var(--chumbo-2); }

.split__badge {
  position: absolute;
  bottom: 16%;
  left: -24px;
  background: var(--white);
  color: var(--black);
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  z-index: 2;
}
.split__badge strong {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.split__badge span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}

.split__text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 28px;
}
.lead {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.55;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.split__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 48px 0;
  border-top: 1px solid var(--line);
}
.split__pillars > div {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.split__pillars .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.split__pillars strong {
  display: block;
  color: var(--white);
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.split__pillars p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ============== WHY US ============== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why__card {
  padding: 60px 38px;
  background: transparent;
  transition: all var(--t);
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why__card:hover { background: var(--chumbo-soft); }
.why__card:hover .why__num { color: rgba(255,255,255,0.6); }

.why__num {
  display: block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
  line-height: 1;
  transition: all var(--t);
}
.why__card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.why__card p { font-size: 14px; margin: 0; color: var(--muted); line-height: 1.7; }

/* ============== PROCESS (numbered steps) ============== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.process__step {
  padding: 56px 38px;
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  counter-increment: step;
  transition: background var(--t);
}
.process__step:hover { background: rgba(255,255,255,0.02); }
.process__step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.32em;
  margin-bottom: 36px;
}
.process__step h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.process__step p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}

/* ============== TESTIMONIALS ============== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.testimonial {
  background: transparent;
  padding: 60px 42px;
  transition: all var(--t);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonial:hover { background: rgba(255,255,255,0.02); }
.testimonial__quote {
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.testimonial blockquote {
  margin: 0 0 36px;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 400;
}
.testimonial figcaption {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.testimonial figcaption strong {
  display: block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.testimonial figcaption span {
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============== CTA BAND ============== */
.cta-band {
  background: var(--chumbo-soft);
  color: var(--white);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0;
  letter-spacing: -0.02em;
}
.cta-band h2 .accent { color: var(--white); font-style: italic; font-weight: 400; opacity: 0.55; }
.cta-band p {
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-size: 1.05rem;
}

/* ============== PROJECTS GRID ============== */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  border: 1px solid var(--line);
}
.project__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), filter var(--t);
  filter: grayscale(0%) saturate(1.05) contrast(1.03) brightness(0.96);
}
.project:hover .project__img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.05) brightness(1);
}
.project__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,11,0.96) 0%, rgba(10,10,11,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: var(--white);
  z-index: 1;
}
.project__cat {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.project__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}
.project__loc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 70px;
}
.filter {
  padding: 12px 26px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t);
}
.filter:hover { color: var(--white); border-color: var(--white); }
.filter.is-active { background: var(--white); color: var(--black); border-color: var(--white); }

/* ============== TEAM / VALUES ============== */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value {
  padding: 70px 42px;
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  transition: background var(--t);
}
.value:hover { background: var(--chumbo-soft); }
.value .icon {
  width: 72px; height: 72px;
  border: 1px solid var(--line-strong);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: all var(--t);
}
.value:hover .icon { border-color: var(--white); }
.value h3 { font-size: 1.4rem; margin-bottom: 16px; }
.value p { font-size: 14.5px; margin: 0; color: var(--muted); line-height: 1.7; }

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border: 1px solid var(--line);
}
.contact__info {
  padding: 70px 56px;
  background: var(--chumbo-soft);
  color: var(--white);
}
.contact__info h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 22px;
}
.contact__info > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact__list li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.contact__list li:last-child { border-bottom: 0; }
.contact__list .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__list strong {
  display: block;
  color: var(--white);
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact__list span,
.contact__list a {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
}
.contact__list a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }

.contact__form {
  background: var(--ink);
  padding: 70px 56px;
}
.contact__form h3 {
  font-size: 1.6rem;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--white);
  display: inline-block;
  color: var(--white);
}
.field { margin-bottom: 26px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--white);
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  transition: all var(--t-fast);
  width: 100%;
  border-radius: 0;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--white);
}
.field textarea { resize: vertical; min-height: 150px; }
/* Selects: solid dark control + readable native dropdown options */
.field select { background: #16191e; }
.field select option,
.field select optgroup {
  background-color: #16191e;
  color: var(--white);
}
.field select option:checked,
.field select option:hover { background-color: #23272d; }
.form__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}
.form__success {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-left: 2px solid var(--white);
}

/* Map */
.map-wrap {
  height: 460px;
  background: var(--ink);
  position: relative;
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(100%) invert(0.92) contrast(1.1);
}

/* ============== FOOTER ============== */
.footer {
  background: var(--surface);
  color: rgba(255,255,255,0.6);
  border-top: 1px solid var(--line);
}
.footer__brand-strip {
  background: var(--ink);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.footer__brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer__brand-tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
}
.footer__brand-tag span { color: var(--gold); }
/* (the only intentional gold accent on the site) */
.footer__brand-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__brand-social a {
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--t);
}
.footer__brand-social a:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.footer__main { padding-top: 100px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 70px;
  padding-bottom: 80px;
}
.footer__col-tag {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.footer h4 {
  color: var(--white);
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
.footer ul a { color: rgba(255,255,255,0.7); }
.footer ul a:hover { color: var(--white); }
.footer__contact li {
  color: rgba(255,255,255,0.7);
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13.5px;
}
.footer__contact li svg { color: rgba(255,255,255,0.4); margin-top: 4px; flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.4);
}

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== UTIL ============== */
.center { text-align: center; }
.mt-lg { margin-top: 70px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }

  .testimonials { grid-template-columns: 1fr; }

  .projects { grid-template-columns: repeat(2, 1fr); }

  .values { grid-template-columns: 1fr; }

  .split { grid-template-columns: 1fr; gap: 60px; }
  .split--reverse .split__media { order: 0; }
  .split__media { height: 520px; max-width: 620px; margin: 0 auto; width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }

  .service-detail { grid-template-columns: 1fr; }
  .service-detail--reverse .service-detail__media { order: 0; }
  .service-detail__media { min-height: 360px; }
  .service-detail__body { padding: 60px 40px; }

  .split-head { grid-template-columns: 1fr; gap: 24px; }
  .header__cta { display: none; }

  .hero__scroll { display: none; }
  .section { padding: 120px 0; }
}

@media (max-width: 1024px) {
  .topbar__inner { grid-template-columns: 1fr; gap: 6px; text-align: center; }
  .topbar { font-size: 12px; padding: 10px 0; }
  .topbar__item { justify-content: center; }
  .btn--phone { font-size: 15px; padding: 12px 22px 12px 14px; }
  .btn--phone .phone-icon { width: 32px; height: 32px; }
}

@media (max-width: 820px) {
  .topbar__item:not(:first-child):not(:last-child) { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 80px; }
  .topbar { display: none; }
  .brand__logo { height: 56px; }
  .nav {
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 30px -16px rgba(0,0,0,0.18);
    transition: max-height var(--t);
    z-index: 99;
    justify-content: flex-start;
  }
  .nav.is-open { max-height: 500px; }
  .nav a {
    width: 100%;
    padding: 22px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--black);
  }
  .nav a::after { display: none; }
  .nav__toggle { display: flex; }
  .header__cta { display: none; }

  .section { padding: 90px 0; }
  .hero__content { padding: 100px 0 160px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__stats-inner { grid-template-columns: 1fr 1fr; }
  .hero__stats-inner > div:nth-child(2n+1) { border-left: 0; }
  .hero__stats-inner > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .hero__stats-inner > div { padding: 22px; }
  .hero__stats-inner strong { font-size: 1.8rem; }

  .strip__inner { grid-template-columns: 1fr 1fr; }
  .strip__item:nth-child(2n+1) { border-left: 0; }
  .strip__item:nth-child(n+3) { border-top: 1px solid var(--line); }

  .services { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }

  .projects { grid-template-columns: 1fr; }

  .field-row { grid-template-columns: 1fr; }

  .split__media { height: 420px; }
  .split__badge { left: 0; bottom: 14%; padding: 18px 22px; }
  .split__badge strong { font-size: 1.2rem; }

  .contact__info, .contact__form { padding: 50px 30px; }
  .service-detail__body { padding: 50px 30px; }

  .page-banner { padding: 100px 0 80px; }

  .cta-band { padding: 90px 0; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 32px; }

  .footer__main { padding-top: 70px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 60px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .strip__inner { grid-template-columns: 1fr; }
  .strip__item { border-left: 0; border-top: 1px solid var(--line); }
  .strip__item:first-child { border-top: 0; }
  .split-head { margin-bottom: 60px; padding-bottom: 30px; }
  .section__head { margin-bottom: 60px; }
}

/* ============== TRUSTED BY — INFINITE MARQUEE ============== */
.trusted {
  padding: 80px 0 90px;
  background: var(--chumbo-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.trusted__title {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 56px;
}
.trusted__marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trusted__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: trustedScroll 50s linear infinite;
}
.trusted__marquee:hover .trusted__track { animation-play-state: paused; }
@keyframes trustedScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trusted__logo {
  flex: 0 0 auto;
  padding: 30px 56px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}
.trusted__logo:hover { color: var(--white); }
.trusted__logo--big {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.trusted__logo--thin {
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.22em;
}
.trusted__logo--italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: none;
}
@media (max-width: 540px) {
  .trusted { padding: 60px 0 70px; }
  .trusted__logo { padding: 24px 36px; font-size: 16px; }
  .trusted__logo--big { font-size: 20px; }
  .trusted__logo--italic { font-size: 22px; }
  .trusted__title { margin-bottom: 36px; }
}

/* ============== REVIEWS (Google-style + horizontal marquee) ============== */
.reviews {
  padding: 110px 0 110px;
  background: var(--surface);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.reviews__head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.reviews__head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-top: 18px;
}
.reviews__marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.reviews__track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 8px 12px;
  animation: reviewsScroll 70s linear infinite;
}
.reviews__marquee:hover .reviews__track { animation-play-state: paused; }
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 12px)); }
}
.review {
  flex: 0 0 360px;
  background: var(--chumbo-soft);
  border: 1px solid var(--line);
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background var(--t), border-color var(--t);
}
.review:hover { background: var(--chumbo-2); border-color: var(--line-strong); }
.review__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}
.review__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 20px;
  font-weight: 700;
  border: 1px solid var(--line-strong);
}
.review__name {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.review__meta {
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.review__body {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 540px) {
  .reviews { padding: 80px 0; }
  .review { flex-basis: 300px; padding: 24px 22px 26px; }
  .reviews__head { margin-bottom: 44px; }
}

/* ============== SECTION VARIANT — tighter head spacing ============== */
.section--tight .section__head { margin-bottom: 56px; }

/* ============== LEGAL PAGE (privacy / terms) ============== */
.legal {
  max-width: 820px;
}
.legal__meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal__intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
}
.legal h2 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  color: var(--white);
  margin: 56px 0 18px;
  letter-spacing: -0.005em;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.legal__list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: rgba(255,255,255,0.78);
  font-size: 15.5px;
  line-height: 1.65;
}
.legal__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 10px; height: 1px;
  background: rgba(255,255,255,0.4);
}
.legal a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.35); }
.legal a:hover { text-decoration-color: var(--white); }
.legal strong { color: var(--white); font-weight: 600; }
.legal code {
  background: var(--chumbo-soft);
  padding: 2px 8px;
  font-family: 'Inter', ui-monospace, monospace;
  font-size: 13.5px;
  color: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
}
.legal__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  background: var(--chumbo-soft);
  border: 1px solid var(--line);
  margin-top: 18px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.legal__contact strong {
  font-size: 16px;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

/* ============== CONSENT POPUP (cookie / privacy notice) ============== */
.consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  background: var(--chumbo-soft);
  border: 1px solid var(--line-strong);
  padding: 22px 28px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 760px;
  margin: 0 auto;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1), opacity 400ms ease;
  box-shadow: 0 18px 60px -20px rgba(0,0,0,0.6);
}
.consent.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.consent__text {
  flex: 1;
  min-width: 240px;
  color: rgba(255,255,255,0.82);
  font-size: 14.5px;
  line-height: 1.55;
}
.consent__text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.4);
}
.consent__text a:hover { text-decoration-color: var(--white); }
.consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.consent .btn {
  padding: 12px 22px;
  font-size: 11.5px;
}
@media (max-width: 600px) {
  .consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px 20px;
    gap: 16px;
  }
  .consent__actions { width: 100%; }
  .consent__actions .btn { flex: 1; }
}

/* ============== QUOTE MODAL ============== */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
  padding: 24px;
}
.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}
.quote-modal__dialog {
  position: relative;
  background: var(--chumbo-soft);
  border: 1px solid var(--line-strong);
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 32px);
  overflow: hidden;
  padding: 40px 48px 36px;
  transform: translateY(24px) scale(0.98);
  transition: transform var(--t);
  z-index: 1;
}
.quote-modal.is-open .quote-modal__dialog {
  transform: translateY(0) scale(1);
}
.quote-modal__close {
  position: absolute;
  top: 18px; right: 18px;
  background: transparent;
  border: 0;
  font-size: 32px;
  line-height: 1;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t);
  font-family: inherit;
  padding: 0;
}
.quote-modal__close:hover { color: var(--white); }

.quote-modal__progress {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.quote-modal__progress.is-hidden { visibility: hidden; }
.quote-modal__step-num {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.quote-modal__bar {
  flex: 1;
  height: 1px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.quote-modal__bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--white);
  width: 33%;
  transition: width 400ms cubic-bezier(.2,.7,.2,1);
}

.quote-modal__title {
  font-size: clamp(1.6rem, 2.6vw, 1.95rem);
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.quote-modal__sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.45;
}

.quote-step { display: none; }
.quote-step.is-active { display: block; animation: quoteStepIn 380ms cubic-bezier(.2,.7,.2,1); }
@keyframes quoteStepIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.quote-modal .field { margin-bottom: 14px; }
.quote-modal .field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.7);
}
.quote-modal .field input,
.quote-modal .field select,
.quote-modal .field textarea {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--white);
  padding: 12px 16px;
  font-size: 16px;
}
.quote-modal .field input::placeholder,
.quote-modal .field textarea::placeholder {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
}
.quote-modal .field input.is-error,
.quote-modal .field select.is-error,
.quote-modal .field textarea.is-error {
  border-color: #d96d6d;
}
.quote-modal .field textarea { min-height: 84px; resize: vertical; }

.quote-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.quote-modal__actions .btn { flex: 1; padding: 14px 22px; }
.quote-modal__actions .btn--ghost {
  flex: 0 0 auto;
  padding: 14px 20px;
}

.quote-thanks {
  text-align: center;
  padding: 8px 0 4px;
}
.quote-thanks__check {
  width: 56px; height: 56px;
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.quote-thanks__countdown {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.quote-thanks__countdown span {
  display: inline-block;
  min-width: 1em;
  color: var(--white);
  font-weight: 700;
  margin-left: 4px;
}

body.modal-open { overflow: hidden; }

@media (max-width: 560px) {
  .quote-modal__dialog { padding: 44px 28px 36px; }
  .quote-modal__title { font-size: 1.6rem; }
  .quote-modal__progress { margin-bottom: 32px; }
  .quote-modal__actions { flex-direction: column-reverse; }
  .quote-modal__actions .btn { width: 100%; flex: none; }
}
