/* =========================================================================
   Nielsen Property Services — Trusted & authoritative, navy-forward system
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Ink & neutrals */
  --ink:        oklch(0.24 0.03 262);
  --ink-soft:   oklch(0.40 0.03 262);
  --muted:      oklch(0.49 0.025 262);
  --paper:      oklch(0.985 0.003 255);
  --surface:    oklch(1 0 0);
  --stone:      oklch(0.955 0.006 258);
  --line:       oklch(0.90 0.008 260);
  --line-soft:  oklch(0.93 0.006 260);

  /* Brand navy / blue */
  --brand:        oklch(0.38 0.17 266);
  --brand-hover:  oklch(0.33 0.16 266);
  --brand-bright: oklch(0.62 0.17 262);
  --navy-900: oklch(0.185 0.045 264);
  --navy-800: oklch(0.235 0.06 265);
  --navy-700: oklch(0.30 0.075 266);

  /* Brass accent */
  --brass:      oklch(0.80 0.09 82);
  --brass-deep: oklch(0.56 0.10 74);

  /* Text on dark */
  --on-dark:      oklch(0.955 0.012 255);
  --on-dark-soft: oklch(0.80 0.02 258);

  /* Type */
  --sans: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  --fs-hero:  clamp(2.7rem, 1.4rem + 4.6vw, 5.15rem);
  --fs-h2:    clamp(1.95rem, 1.2rem + 2.6vw, 3.15rem);
  --fs-h3:    clamp(1.25rem, 1.05rem + 0.7vw, 1.6rem);
  --fs-lead:  clamp(1.1rem, 1.02rem + 0.4vw, 1.32rem);
  --fs-body:  1.0625rem;
  --fs-sm:    0.9375rem;
  --fs-label: 0.78rem;

  /* Space & shape */
  --wrap: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 3rem + 5vw, 8rem);
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 20px;

  /* Shadows (navy-tinted) */
  --shadow-sm: 0 1px 2px oklch(0.24 0.03 262 / 0.06), 0 2px 6px oklch(0.24 0.03 262 / 0.05);
  --shadow-md: 0 6px 18px oklch(0.24 0.05 262 / 0.10), 0 2px 6px oklch(0.24 0.03 262 / 0.06);
  --shadow-lg: 0 24px 60px oklch(0.20 0.05 262 / 0.22);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t: 320ms;
  --t-slow: 560ms;

  /* Z-scale */
  --z-sticky: 100;
  --z-menu: 300;
}

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

body {
  font-family: var(--serif);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--sans); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); text-wrap: balance; }
p { text-wrap: pretty; }
::selection { background: var(--brand); color: #fff; }

:focus-visible { outline: 3px solid var(--brand-bright); outline-offset: 3px; border-radius: 3px; }

.skip-link {
  position: fixed; top: 0; left: 50%; transform: translate(-50%, -120%);
  z-index: 999; background: var(--navy-900); color: #fff; padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-family: var(--sans); font-weight: 600;
  transition: transform var(--t) var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

/* ---------- Layout utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
:where(section[id], [id].creds) { scroll-margin-top: 88px; }

.eyebrow {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 0.3em 0.5em;
  font-family: var(--sans); font-weight: 700; font-size: var(--fs-label);
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand);
  margin-bottom: 1.1rem; max-width: 100%;
}
.eyebrow svg { width: 1.1em; height: 1.1em; color: var(--brass-deep); }
.eyebrow--light { color: var(--brass); }
.eyebrow--light svg { color: var(--brass); }

.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }

.section__head { max-width: 62ch; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.section__head h2 { font-size: var(--fs-h2); margin-bottom: 1.1rem; }
.section__head .lead { margin-top: 0; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--sans); font-weight: 700; font-size: 0.98rem; letter-spacing: 0.005em;
  padding: 0.82em 1.4em; border-radius: var(--r-sm); border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); white-space: nowrap;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid { box-shadow: 0 6px 16px oklch(0.38 0.17 266 / 0.28); }
.btn--solid:hover { background: var(--brand-hover); box-shadow: 0 10px 24px oklch(0.38 0.17 266 / 0.34); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); background: oklch(0.38 0.17 266 / 0.05); }

.btn--outline-light { --btn-bg: oklch(1 0 0 / 0.06); --btn-fg: #fff; border-color: oklch(1 0 0 / 0.35); backdrop-filter: blur(4px); }
.btn--outline-light:hover { background: oklch(1 0 0 / 0.14); border-color: #fff; }

.btn--lg { padding: 0.95em 1.7em; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4em; font-family: var(--sans);
  font-weight: 700; color: var(--brand); font-size: var(--fs-sm);
}
.link-arrow svg { width: 1.15em; height: 1.15em; transition: transform var(--t-fast) var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-sticky);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; align-items: center; gap: 1.5rem; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
/* Isolated hammer/N mark from the brand logo, rendered white on the dark header */
.brand__mark { flex: none; display: block; }
.brand__mark img { height: 42px; width: auto; max-width: none; display: block; filter: brightness(0) invert(1); }
.brand__word { display: flex; flex-direction: column; line-height: 1; font-family: var(--sans); }
.brand__word strong { font-size: 1.24rem; font-weight: 800; letter-spacing: -0.01em; }
.brand__word span { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; margin-top: 4px; opacity: 0.9; white-space: nowrap; }

.nav { display: flex; gap: clamp(1rem, 2vw, 1.9rem); margin-left: auto; font-family: var(--sans); font-weight: 600; font-size: 0.95rem; }
.nav a { position: relative; padding: 0.4rem 0; white-space: nowrap; transition: color var(--t-fast) var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease); border-radius: 2px; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: 0.7rem; }
.btn--phone svg { width: 1em; height: 1em; }

/* Header states: transparent over hero → solid on scroll */
.site-header { color: #fff; }
.site-header .brand__word { color: #fff; }
.site-header .btn--ghost { --btn-fg: #fff; border-color: oklch(1 0 0 / 0.35); }
.site-header .btn--ghost:hover { color: #fff; border-color: #fff; background: oklch(1 0 0 / 0.12); }

.site-header[data-scrolled] {
  background: oklch(0.185 0.045 264 / 0.9);
  backdrop-filter: saturate(1.2) blur(12px);
  box-shadow: 0 6px 24px oklch(0.18 0.04 264 / 0.28);
  border-bottom-color: oklch(1 0 0 / 0.08);
}
.site-header[data-scrolled] .header__inner { height: 66px; }

/* Nav toggle (mobile) */
.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 1.5px solid oklch(1 0 0 / 0.3); border-radius: var(--r-sm); background: oklch(1 0 0 / 0.06); position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--navy-900); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0; visibility: hidden; transition: opacity var(--t) var(--ease), visibility var(--t);
}
.mobile-menu[hidden] { display: flex; }
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-menu nav a { font-family: var(--sans); font-weight: 700; font-size: clamp(1.6rem, 8vw, 2.4rem); letter-spacing: -0.02em; padding: 0.35rem 0; border-bottom: 1px solid oklch(1 0 0 / 0.1); }
.mobile-menu__cta { display: flex; flex-direction: column; gap: 0.7rem; }
.mobile-menu__cta .btn--ghost { --btn-fg: #fff; border-color: oklch(1 0 0 / 0.4); }
.mobile-menu__seal { font-family: var(--sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); text-align: center; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: min(92vh, 860px); display: flex; align-items: center; padding-top: 76px; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, oklch(0.16 0.04 264 / 0.94) 0%, oklch(0.17 0.045 264 / 0.72) 42%, oklch(0.18 0.05 264 / 0.28) 72%, oklch(0.2 0.05 264 / 0.15) 100%),
    linear-gradient(to top, oklch(0.15 0.04 264 / 0.75), transparent 40%);
}
.hero__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; width: 100%; padding-block: clamp(3rem, 8vw, 5rem); }
.hero__copy { max-width: 40rem; min-width: 0; }
.eyebrow--light { color: var(--brass); }
.hero__title { font-size: var(--fs-hero); letter-spacing: -0.03em; color: #fff; margin-bottom: 1.4rem; text-shadow: 0 2px 30px oklch(0.15 0.04 264 / 0.5); }
.hero__lead { font-size: var(--fs-lead); line-height: 1.6; color: oklch(0.96 0.01 255); max-width: 46ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.4rem; }
.hero__trust { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; font-family: var(--sans); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em; }
.hero__trust li { display: inline-flex; align-items: center; gap: 0.5em; color: oklch(0.94 0.01 255); }
.hero__trust svg { width: 1.05em; height: 1.05em; color: var(--brass); }

.hero__seal { justify-self: end; }
.seal { width: clamp(120px, 15vw, 168px); height: auto; color: var(--brass); filter: drop-shadow(0 8px 24px oklch(0.15 0.04 264 / 0.5)); }
.seal__ring { fill: none; stroke: currentColor; }
.seal__ring--outer { stroke-width: 2; }
.seal__ring--inner { stroke-width: 1; opacity: 0.7; }
.seal__arc { fill: currentColor; font-family: var(--sans); font-weight: 700; font-size: 12.5px; letter-spacing: 1.3px; }
.seal__arc text, .seal text { text-anchor: middle; }
.seal__dot { fill: currentColor; }
.seal__star { fill: currentColor; }
.seal__center { fill: currentColor; font-family: var(--sans); font-weight: 800; font-size: 15px; letter-spacing: 1px; text-anchor: middle; }

.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid oklch(1 0 0 / 0.5); border-radius: 20px; z-index: 1; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 2px; animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 70% { opacity: 1; transform: translateY(12px); } 100% { opacity: 0; transform: translateY(14px); } }

/* =========================================================================
   CREDENTIALS BAND
   ========================================================================= */
.creds { background: var(--navy-800); color: var(--on-dark); border-block: 1px solid oklch(1 0 0 / 0.06); }
.creds__row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; padding-block: clamp(1.6rem, 3vw, 2.3rem); }
.cred { display: flex; align-items: center; gap: 0.75rem; font-family: var(--sans); font-weight: 600; font-size: 0.9rem; line-height: 1.28; letter-spacing: 0.01em; }
.cred svg { width: 26px; height: 26px; flex: none; color: var(--brass); }
.cred + .cred { position: relative; }
.cred + .cred::before { content: ""; position: absolute; left: -0.5rem; top: 50%; transform: translateY(-50%); width: 1px; height: 30px; background: oklch(1 0 0 / 0.12); }

/* =========================================================================
   THE DIFFERENCE
   ========================================================================= */
.difference { background: var(--paper); }
.difference__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.difference__media { position: relative; }
.difference__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.6; object-fit: cover; object-position: center 30%; }
.difference__badge {
  position: absolute; left: -0.6rem; bottom: 1.6rem; display: flex; align-items: center; gap: 0.6rem;
  background: var(--navy-900); color: #fff; padding: 0.85rem 1.15rem; border-radius: var(--r);
  box-shadow: var(--shadow-lg); max-width: 15rem; font-family: var(--sans); font-weight: 700; font-size: 0.86rem; line-height: 1.25;
  border: 1px solid oklch(1 0 0 / 0.1);
}
.difference__badge svg { width: 30px; height: 30px; flex: none; color: var(--brass); }

.difference__body h2 { font-size: var(--fs-h2); margin-bottom: 1.2rem; }
.difference__body .lead { margin-bottom: 2.2rem; }
.pillars { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.7rem; }
.pillar { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; }
.pillar__icon { width: 30px; height: 30px; color: var(--brand); margin-top: 3px; flex: none; }
.pillar h3 { font-size: 1.24rem; margin-bottom: 0.35rem; }
.pillar p { color: var(--ink-soft); max-width: 46ch; }

/* =========================================================================
   SERVICES — alternating features
   ========================================================================= */
.services { background: var(--stone); }
.features { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 6rem); }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 5vw, 4.5rem); align-items: center; }
.feature:nth-child(even) .feature__media { order: 2; }
.feature__media { position: relative; }
.feature__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md); aspect-ratio: 5 / 4; object-fit: cover; }
.feature:nth-child(2) .feature__media img,
.feature:nth-child(3) .feature__media img { aspect-ratio: 4 / 4.2; }
.feature__body h3 { display: flex; align-items: center; gap: 0.6rem; font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.05rem); margin-bottom: 0.9rem; }
.feature__body h3 svg { width: 1.15em; height: 1.15em; color: var(--brand); flex: none; }
.feature__body > p { font-size: 1.1rem; color: var(--ink-soft); max-width: 42ch; margin-bottom: 1.3rem; }

.ticks { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.ticks li { position: relative; padding-left: 2rem; color: var(--ink); line-height: 1.5; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.05em; width: 1.4rem; height: 1.4rem;
  background: color-mix(in oklch, var(--brand) 12%, transparent);
  border-radius: 6px;
}
.ticks li::after {
  content: ""; position: absolute; left: 0; top: 0.05em; width: 1.4rem; height: 1.4rem;
  background: var(--brand);
  -webkit-mask: no-repeat center / 0.82rem url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 12.5 5 5L20 6.5'/%3E%3C/svg%3E");
  mask: no-repeat center / 0.82rem url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 12.5 5 5L20 6.5'/%3E%3C/svg%3E");
}

/* =========================================================================
   PROCESS
   ========================================================================= */
.process { background: var(--navy-900); color: var(--on-dark); position: relative; overflow: hidden; }
.process::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% -10%, oklch(0.4 0.12 266 / 0.35), transparent 70%); pointer-events: none; }
.process .section__head h2 { color: #fff; font-size: var(--fs-h2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.5rem); position: relative; }
.step { position: relative; padding: 2.2rem 1.8rem; background: oklch(1 0 0 / 0.04); border: 1px solid oklch(1 0 0 / 0.1); border-radius: var(--r-lg); }
.step__no { position: absolute; top: -0.9rem; left: 1.8rem; width: 2.6rem; height: 2.6rem; display: grid; place-items: center; background: var(--brass); color: var(--navy-900); font-family: var(--sans); font-weight: 800; font-size: 1.2rem; border-radius: 50%; box-shadow: var(--shadow-md); }
.step__icon { width: 34px; height: 34px; color: var(--brass); margin: 0.8rem 0 1.2rem; }
.step h3 { color: #fff; font-size: 1.32rem; margin-bottom: 0.6rem; }
.step p { color: var(--on-dark-soft); }

/* =========================================================================
   SERVICE AREA
   ========================================================================= */
.area { background: var(--stone); }
.area__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.area__col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.area__col h3 { font-size: 1.2rem; margin-bottom: 1.1rem; color: var(--brand); }
.area__list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1rem; }
.area__list li { position: relative; padding-left: 1.1rem; font-size: 0.98rem; color: var(--ink-soft); }
.area__list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; border-radius: 50%; background: var(--brass-deep); }
.area__col--note { background: var(--navy-900); border-color: transparent; color: var(--on-dark); }
.area__col--note svg { width: 34px; height: 34px; color: var(--brass); margin-bottom: 0.9rem; }
.area__col--note h3 { color: #fff; }
.area__col--note p { color: var(--on-dark-soft); margin-bottom: 1.2rem; }
.area__col--note .link-arrow { color: var(--brass); }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact { background: var(--navy-900); color: var(--on-dark); position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 85% 20%, oklch(0.4 0.13 266 / 0.4), transparent 65%); pointer-events: none; }
.contact__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact__intro h2 { color: #fff; font-size: var(--fs-h2); margin-bottom: 1.1rem; }
.contact__intro .lead { color: var(--on-dark-soft); }
.contact__direct { list-style: none; padding: 0; margin-top: 2.4rem; display: flex; flex-direction: column; gap: 1.3rem; }
.contact__direct li { display: flex; align-items: center; gap: 1rem; }
.contact__direct svg { width: 22px; height: 22px; color: var(--brass); flex: none; }
.contact__direct span { display: block; font-family: var(--sans); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 0.1rem; }
.contact__direct a, .contact__direct div > p { font-family: var(--sans); font-weight: 700; font-size: 1.12rem; color: #fff; }
.contact__direct a:hover { color: var(--brass); }

.contact__card { background: var(--surface); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); color: var(--ink); }
.form { display: flex; flex-direction: column; gap: 1.05rem; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field > span { font-family: var(--sans); font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.field em { font-style: normal; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--serif); font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 0.72em 0.85em;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 3.4rem; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2354607a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; background-size: 1.1rem; padding-right: 2.6rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: var(--surface); box-shadow: 0 0 0 3px oklch(0.38 0.17 266 / 0.14); }
.field[data-invalid] > span { color: oklch(0.5 0.2 25); }
.field[data-invalid] input, .field[data-invalid] select, .field[data-invalid] textarea { border-color: oklch(0.6 0.22 25); }
.field__error { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; color: oklch(0.5 0.2 25); }
.form__fine { font-size: 0.86rem; color: var(--muted); text-align: center; }
.form__fine a { color: var(--brand); font-weight: 600; }

.form[hidden] { display: none; }
.form__success { text-align: center; padding: 2rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; animation: fadeUp var(--t-slow) var(--ease) both; }
.form__success[hidden] { display: none; }
.form__success-icon { width: 58px; height: 58px; padding: 12px; color: #fff; background: var(--brand); border-radius: 50%; box-shadow: 0 8px 22px oklch(0.38 0.17 266 / 0.3); }
.form__success h3 { font-size: 1.6rem; margin-top: 0.4rem; }
.form__success p { color: var(--ink-soft); max-width: 34ch; }
.form__success a { color: var(--brand); font-weight: 600; font-family: var(--sans); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--navy-900); color: var(--on-dark-soft); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.3fr 2fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 2.6rem; border-bottom: 1px solid oklch(1 0 0 / 0.1); }
.brand--footer { display: block; }
.footer__logo { width: clamp(200px, 42vw, 250px); height: auto; filter: brightness(0) invert(1); }
.footer__tag { margin-top: 1.1rem; max-width: 34ch; color: var(--on-dark-soft); font-size: 0.98rem; }
.footer__creds { margin-top: 1rem; font-family: var(--sans); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.footer__nav h4 { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer__nav a, .footer__nav span { display: block; font-size: 0.96rem; padding: 0.28rem 0; color: var(--on-dark-soft); transition: color var(--t-fast) var(--ease); }
.footer__nav a:hover { color: var(--brass); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; padding-top: 1.6rem; font-size: 0.86rem; color: oklch(0.7 0.02 258); }

/* =========================================================================
   REVEAL ANIMATIONS
   ========================================================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); will-change: opacity, transform; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* Hero stagger */
.js .hero__copy .reveal, .js .hero__seal { transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__scroll span { animation: none; }
  .form__success { animation: none; }
  .btn:hover, .btn:active { transform: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .nav { gap: 1.1rem; }
  .header__cta .btn--phone span { display: none; }
  .btn--phone { padding: 0.7em; }
  .difference__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .difference__media { max-width: 30rem; }
}

@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: block; border-color: oklch(1 0 0 / 0.5); }
  .site-header:not([data-scrolled]) { background: linear-gradient(to bottom, oklch(0.14 0.04 264 / 0.62), oklch(0.14 0.04 264 / 0)); }
  .creds__row { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.2rem; }
  .cred + .cred::before { display: none; }
  .cred:nth-child(5) { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step__no { top: -0.9rem; }
  .footer__top { grid-template-columns: 1fr; gap: 2.4rem; }
}

@media (max-width: 760px) {
  .hero { min-height: 0; padding-block: 7rem 3.5rem; }
  .hero__media img { object-position: center 55%; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__seal { display: none; }
  .hero__scroll { display: none; }
  .feature { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature:nth-child(even) .feature__media { order: 0; }
  .feature__media img, .difference__media img,
  .feature:nth-child(2) .feature__media img, .feature:nth-child(3) .feature__media img { aspect-ratio: 16 / 11; object-position: center 40%; }
  .difference__media { max-width: none; }
  .difference__badge { left: 0.8rem; bottom: 0.8rem; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 460px) {
  .area__cols { grid-template-columns: 1fr; }
  .form__row--2 { grid-template-columns: 1fr; }
  .area__list { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}
