/* =========================================================
   BrilhoTec — Design System
   Paleta: navy #1A2A3F · dourado #B8794A · creme #E8DCC4
   ========================================================= */

:root {
  --navy-950: #08111E;
  --navy-900: #0C1828;
  --navy-800: #112138;
  --navy: #14253D;
  --navy-700: #1E3354;
  --navy-600: #2A4368;

  --gold: #B8794A;
  --gold-dark: #9B6238;
  --gold-light: #D89E6F;

  --cream: #E8DCC4;
  --cream-light: #F5EEDC;
  --paper: #FBF7EE;
  --bg: #F8F6F1;
  --surface: #FFFFFF;

  --ink: #14253D;
  --ink-dim: #2D3A52;
  --muted: #5C6678;
  --line: #E4DFD2;
  --line-dark: rgba(232,220,196,.14);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 3px rgba(8,17,30,.06), 0 2px 8px rgba(8,17,30,.04);
  --shadow: 0 8px 28px rgba(8,17,30,.10);
  --shadow-lg: 0 24px 60px rgba(8,17,30,.22);

  --container: 1200px;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-logo: 'Space Grotesk', 'Manrope', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--navy-900);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt";
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .4em;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -.01em; }
h4 { font-size: .82rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
p { margin: 0 0 1em; color: var(--muted); }

.section-dark { background: var(--navy); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(232,220,196,.78); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.accent { color: var(--gold); font-style: italic; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(12,24,40,.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: rgba(232,220,196,.10);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.logo-mark {
  width: 188px;
  height: auto;
  flex-shrink: 0;
  max-width: none;
  object-fit: contain;
}
.logo .logo-text { display: none; }
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}
.logo-wordmark {
  display: inline-flex;
  align-items: center;
  gap: .22em;
  font-family: var(--font-logo);
  font-weight: 700;
  line-height: .92;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-wordmark span {
  display: block;
  letter-spacing: .16em;
}
.logo-wordmark span:first-child {
  color: #fff;
}
.logo-wordmark span:last-child {
  color: var(--gold);
}
.logo-text .logo-wordmark {
  font-size: 1.04rem;
}
.logo-text small {
  font-size: .56rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(232,220,196,.72);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.primary-nav a:not(.btn-pill)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.primary-nav a:not(.btn-pill):hover { color: #fff; }
.primary-nav a:not(.btn-pill):hover::after { transform: scaleX(1); }

.btn-pill {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem !important;
  transition: background .2s, transform .2s;
}
.btn-pill:hover { background: var(--gold-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  margin: 5px auto;
  transition: transform .25s, opacity .2s;
}
.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); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: .02em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 20px rgba(184,121,74,.30);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,121,74,.42); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.section-light .btn-ghost { color: var(--navy); border-color: rgba(20,37,61,.3); }
.section-light .btn-ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-full { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 110px;
  background: var(--navy);
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 600px at 92% 18%, rgba(184,121,74,.22), transparent 55%),
    radial-gradient(800px 500px at 5% 90%, rgba(184,121,74,.10), transparent 60%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(232,220,196,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232,220,196,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 90%);
  opacity: .7;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 28px;
  color: #fff;
}
.hero-copy .lead {
  font-size: 1.18rem;
  color: rgba(232,220,196,.82);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero-trust {
  display: flex;
  gap: 48px;
  list-style: none;
  padding: 28px 0 0;
  margin: 0;
  border-top: 1px solid rgba(232,220,196,.14);
  flex-wrap: wrap;
}
.hero-trust li {
  display: flex;
  flex-direction: column;
  font-variant-numeric: tabular-nums;
}
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
}
.hero-trust span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold-light);
  margin-top: 10px;
}

.hero-photo {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 2px 0 rgba(184,121,74,.25);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(232,220,196,.08);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-photo::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(20,37,61,.5), transparent);
  z-index: 1;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,17,30,.75) 100%);
  pointer-events: none;
}
.hero-photo-mark {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  background: rgba(8,17,30,.56);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid rgba(232,220,196,.14);
  box-shadow: 0 18px 34px rgba(8,17,30,.24);
  z-index: 1;
}
.hero-mark-logo {
  width: 30px;
  height: auto;
}

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
main > section[id] { scroll-margin-top: 92px; }
.section-light { background: var(--bg); color: var(--ink); }
.section-dark { background: var(--navy); color: var(--cream); }
.section-dark.section-darker { background: var(--navy-900); }
.section-head { max-width: 720px; margin-bottom: 72px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.08rem; line-height: 1.65; }

/* ---------- Services (light) ---------- */
.services { background: var(--bg); color: var(--ink); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.service-card {
  background: var(--surface);
  padding: 44px 36px;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(20,37,61,.08);
  box-shadow: 0 18px 50px rgba(8,17,30,.08);
}
.service-card:hover {
  background: #fefcf7;
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(8,17,30,.12);
}
.service-card.highlight {
  background: var(--navy);
  color: var(--cream);
  border-color: rgba(232,220,196,.12);
  box-shadow: 0 28px 64px rgba(8,17,30,.18);
}
.service-card.highlight h3 { color: #fff; }
.service-card.highlight p,
.service-card.highlight ul li { color: rgba(232,220,196,.78); }
.service-card.highlight ul li::before { background: var(--gold-light); }
.service-card.highlight:hover { background: var(--navy-800); }

.service-media {
  margin: -44px -36px 28px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d8d3c8;
  border-bottom: 1px solid rgba(20,37,61,.08);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.service-card:hover .service-media img {
  transform: scale(1.04);
}
.service-card.highlight .service-media {
  border-bottom-color: rgba(232,220,196,.12);
}
.service-card h3 { margin-bottom: 12px; color: var(--navy); font-size: 1.34rem; }
.service-card > p { font-size: .96rem; line-height: 1.6; }

.service-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.service-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 1px;
  background: var(--gold);
}

.service-cta {
  background: linear-gradient(135deg, var(--paper) 0%, var(--cream-light) 100%);
  justify-content: center;
  overflow: visible;
  border-color: rgba(184,121,74,.14);
}
.service-cta h3 { color: var(--navy); }
.service-cta .btn { margin-top: 20px; align-self: flex-start; }

/* ---------- About (dark) ---------- */
.about { background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
.about::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184,121,74,.10), transparent 70%);
  top: -100px;
  left: -150px;
  pointer-events: none;
}
.about h2, .about h3 { color: #fff; }
.about p { color: rgba(232,220,196,.78); }
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 88px;
  align-items: start;
  position: relative;
}
.about-copy p { font-size: 1.04rem; line-height: 1.72; }
.about-copy p strong { color: #fff; font-weight: 600; }
.about-pillars {
  display: grid;
  gap: 1px;
  background: rgba(232,220,196,.10);
  border: 1px solid rgba(232,220,196,.10);
}
.pillar {
  background: var(--navy);
  padding: 32px 28px;
  position: relative;
  transition: background .25s ease;
}
.pillar:hover { background: var(--navy-700); }
.pillar::before {
  content: '';
  position: absolute;
  left: 0; top: 32px; bottom: 32px;
  width: 2px;
  background: var(--gold);
}
.pillar h3 {
  font-family: var(--font-sans);
  font-size: .82rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #fff;
  padding-left: 16px;
}
.pillar p {
  margin: 0;
  font-size: .94rem;
  padding-left: 16px;
  line-height: 1.6;
}

/* ---------- Gallery (light) ---------- */
.gallery {
  background: linear-gradient(180deg, var(--surface) 0%, #fcfaf4 100%);
  color: var(--ink);
}
.gallery .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(8,17,30,.12);
  transition: transform .4s ease, box-shadow .4s ease;
  aspect-ratio: 4 / 5;
  background: var(--navy);
  border: 1px solid rgba(20,37,61,.08);
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 68px rgba(8,17,30,.18);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 24%);
  pointer-events: none;
  z-index: 1;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(15,26,42,.22) 56%, rgba(15,26,42,.92) 100%);
  pointer-events: none;
}
.gallery-item figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gc-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(15,26,42,.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232,220,196,.24);
}
.gallery-item figcaption strong {
  font-family: var(--font-display);
  font-size: 1.52rem;
  font-weight: 700;
  line-height: 1.15;
}
.gallery-item figcaption small {
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(232,220,196,.84);
  max-width: 28ch;
}

/* ---------- Why (dark) ---------- */
.why {
  background:
    radial-gradient(circle at top right, rgba(184,121,74,.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(42,67,104,.22), transparent 32%),
    var(--navy-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(232,220,196,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232,220,196,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 90%);
}
.why .container { position: relative; }
.why .section-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.why h2, .why h3 { color: #fff; }
.why p { color: rgba(232,220,196,.72); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.why-item {
  padding: 36px 30px 30px;
  background: linear-gradient(180deg, rgba(232,220,196,.05), rgba(232,220,196,.02));
  border: 1px solid rgba(232,220,196,.08);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.why-item::before {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--gold), rgba(216,158,111,0));
  opacity: .95;
}
.why-item:hover {
  background: linear-gradient(180deg, rgba(232,220,196,.08), rgba(232,220,196,.03));
  border-color: rgba(184,121,74,.4);
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0,0,0,.18);
}
.why-item:nth-child(2),
.why-item:nth-child(4) { margin-top: 28px; }
.why-num {
  font-family: var(--font-sans);
  font-size: .86rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 10px 14px;
  margin-bottom: 18px;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  border-radius: 999px;
  background: rgba(184,121,74,.12);
  border: 1px solid rgba(184,121,74,.24);
  font-weight: 600;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -.015em;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}
.why-item p {
  font-size: .94rem;
  margin: 0;
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact { background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,121,74,.18), transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.contact h2 { color: #fff; }
.contact .eyebrow { color: var(--gold-light); }
.contact .eyebrow::before { background: var(--gold-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  position: relative;
  align-items: start;
}
.contact-copy p {
  color: rgba(232,220,196,.78);
  max-width: 520px;
  font-size: 1.06rem;
  line-height: 1.68;
}
.contact-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 38px;
}
.contact-highlights li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232,220,196,.12);
  background: rgba(232,220,196,.05);
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(232,220,196,.12);
  border-radius: 22px;
  background: rgba(232,220,196,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.ci-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-light);
  font-weight: 600;
}
.contact-list a, .contact-list span:not(.ci-label) {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -.005em;
}
.contact-list a { transition: color .2s; }
.contact-list a:hover { color: var(--gold-light); }

.contact-form {
  background: #fff;
  border-radius: 30px;
  padding: 36px 34px 30px;
  color: var(--ink);
  box-shadow: 0 32px 82px rgba(0,0,0,.30);
  border: 1px solid rgba(20,37,61,.08);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.contact-form-head {
  margin-bottom: 26px;
  position: relative;
}
.contact-form-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(184,121,74,.10);
  color: var(--gold-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.contact-form h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.46rem;
  color: var(--navy);
}
.contact-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-size: .74rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.field input, .field select, .field textarea {
  font: inherit;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fcfaf4;
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184,121,74,.10);
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--muted);
  margin: 8px 0 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fcfaf4;
  border: 1px solid var(--line);
  cursor: pointer;
}
.checkbox input { margin-top: 3px; accent-color: var(--gold); }
.contact-form .btn {
  min-height: 58px;
  border-radius: 16px;
  font-size: 1rem;
}
.form-note {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  margin: 14px 0 0;
}

@media (min-width: 721px) {
  .contact-form {
    width: min(100%, 700px);
    justify-self: end;
    padding: 30px 28px 24px;
    border-radius: 26px;
  }
  .contact-form-head {
    margin-bottom: 22px;
  }
  .contact-form-kicker {
    padding: 7px 11px;
    margin-bottom: 12px;
  }
  .contact-form h3 {
    font-size: 1.34rem;
    margin-bottom: 8px;
  }
  .contact-form-head p {
    font-size: .9rem;
  }
  .field {
    margin-bottom: 15px;
  }
  .field-row {
    gap: 14px;
  }
  .field label {
    margin-bottom: 8px;
    font-size: .7rem;
  }
  .field input,
  .field select,
  .field textarea {
    padding: 13px 16px;
    border-radius: 14px;
  }
  .field textarea {
    min-height: 72px;
  }
  .checkbox {
    margin: 6px 0 16px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: .84rem;
  }
  .contact-form .btn {
    min-height: 54px;
    font-size: .96rem;
  }
  .form-note {
    margin-top: 12px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(232,220,196,.7);
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(232,220,196,.12);
}
.footer-brand p { margin-top: 16px; max-width: 320px; font-size: .94rem; }
.logo-light .logo-text small { color: rgba(232,220,196,.6); }

.footer-col h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: .82rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: .94rem;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col ul.plain li { color: rgba(232,220,196,.85); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .82rem;
  color: rgba(232,220,196,.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- WhatsApp floating ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  z-index: 99;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-card { max-width: 420px; margin: 0 auto; }
  .hero-photo { order: -1; aspect-ratio: 4 / 3; }
  .hero-copy { order: 1; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .gallery-item.gi-2 { grid-row: span 1; }
  .gallery-item.gi-4 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 72px 0; }
  .hero { padding: 100px 0 72px; }
  .why-item:nth-child(2),
  .why-item:nth-child(4) { margin-top: 18px; }
  .contact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header.menu-open {
    background: rgba(12,24,40,.94);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom-color: rgba(232,220,196,.10);
  }
  body.nav-open { overflow: hidden; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(8,17,30,.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(232,220,196,.10);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .primary-nav.open {
    max-height: calc(100svh - 74px);
    overflow-y: auto;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 24px;
    align-items: stretch;
  }
  .primary-nav li { border-bottom: 1px solid rgba(232,220,196,.08); }
  .primary-nav li:last-child { border-bottom: 0; padding-top: 16px; }
  .primary-nav a { padding: 16px 0; display: block; }
  .primary-nav a.btn-pill { text-align: center; }

  .services-grid, .why-grid, .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { gap: 18px; }
  .service-card {
    padding: 28px 24px;
    border-radius: 22px;
  }
  .service-media {
    margin: -28px -24px 22px;
    aspect-ratio: 16 / 9;
  }
  .gallery-grid { gap: 18px; grid-auto-rows: 220px; }
  .gallery-item {
    border-radius: 24px;
    aspect-ratio: 16 / 11;
  }
  .gallery-item figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .gallery-item figcaption strong { font-size: 1.28rem; }
  .gallery-item figcaption small { font-size: .84rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-list { grid-template-columns: 1fr; }
  .contact-form {
    padding: 30px 24px 24px;
    border-radius: 24px;
  }
  .contact-highlights { margin-bottom: 30px; }
  .why-item {
    padding: 28px 22px 24px;
    border-radius: 22px;
  }
  .why-item::before {
    left: 22px;
    right: 22px;
  }
  .why-item:nth-child(2),
  .why-item:nth-child(4) { margin-top: 0; }
  .hero-trust { gap: 24px; }
  .hero-trust strong { font-size: 1.8rem; }
  .hero-photo-mark {
    top: 16px;
    left: 16px;
    width: 64px;
    height: 64px;
  }
  .hero-mark-logo { width: 24px; }
  .wa-float {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
    box-shadow: 0 10px 24px rgba(37,211,102,.32);
  }
  .wa-float svg { width: 28px; height: 28px; }
  h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav { height: 74px; }
  .logo { gap: 10px; }
  .logo-mark { width: 168px; }
  .logo-text .logo-wordmark { font-size: .88rem; }
  .logo-text small {
    font-size: .48rem;
    letter-spacing: .24em;
  }

  .hero {
    padding: 94px 0 64px;
  }
  .eyebrow {
    gap: 10px;
    font-size: .68rem;
    letter-spacing: .18em;
  }
  .eyebrow::before { width: 22px; }
  .hero-copy .lead {
    font-size: 1rem;
    margin-bottom: 34px;
  }
  .cta-row {
    gap: 12px;
    margin-bottom: 44px;
  }
  .cta-row .btn {
    width: 100%;
  }
  .btn {
    min-height: 54px;
    border-radius: 14px;
  }
  .hero-trust {
    gap: 22px 18px;
    padding-top: 24px;
  }
  .hero-trust li {
    min-width: calc(50% - 10px);
  }
  .hero-trust strong { font-size: 1.7rem; }
  .hero-trust span {
    font-size: .65rem;
    letter-spacing: .14em;
  }

  .section-head {
    margin-bottom: 46px;
  }
  .section {
    padding: 64px 0;
  }
  .section-head p {
    font-size: 1rem;
  }
  .about-grid,
  .contact-grid {
    gap: 28px;
  }
  .about-copy p {
    font-size: .98rem;
    line-height: 1.68;
  }
  .about-pillars {
    border-radius: 18px;
    overflow: hidden;
  }
  .pillar {
    padding: 24px 20px;
  }
  .pillar::before {
    top: 24px;
    bottom: 24px;
  }
  .pillar h3,
  .pillar p {
    padding-left: 14px;
  }
  .services-grid,
  .gallery-grid,
  .why-grid {
    gap: 16px;
  }
  .service-card,
  .why-item {
    border-radius: 20px;
  }
  .gallery-item {
    border-radius: 22px;
  }
  .gallery-item figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 8px;
  }
  .gallery-item figcaption strong {
    font-size: 1.16rem;
  }
  .gallery-item figcaption small {
    font-size: .8rem;
    line-height: 1.45;
  }
  .why-item {
    padding: 24px 20px 20px;
  }
  .why-item::before {
    left: 20px;
    right: 20px;
  }
  .why-num {
    min-width: 50px;
    padding: 9px 12px;
    margin-bottom: 14px;
    font-size: .78rem;
  }
  .why-item h3 {
    font-size: 1.08rem;
  }
  .why-item p {
    font-size: .9rem;
    line-height: 1.62;
  }
  .contact-copy p,
  .contact-form-head p {
    font-size: .98rem;
  }
  .contact-highlights {
    gap: 10px;
  }
  .contact-highlights li {
    font-size: .7rem;
    letter-spacing: .13em;
  }
  .contact-list li {
    padding: 18px 18px 16px;
    border-radius: 18px;
  }
  .contact-list a,
  .contact-list span:not(.ci-label) {
    font-size: 1rem;
  }
  .contact-form {
    padding: 28px 22px 22px;
    border-radius: 22px;
  }
  .contact-form h3 {
    font-size: 1.28rem;
  }
  .field {
    margin-bottom: 16px;
  }
  .field label {
    margin-bottom: 8px;
    font-size: .7rem;
  }
  .field input,
  .field select,
  .field textarea {
    padding: 15px 16px;
    border-radius: 14px;
  }
  .checkbox {
    padding: 12px 14px;
    border-radius: 16px;
    font-size: .84rem;
  }
  .footer-grid {
    gap: 28px;
    padding-bottom: 36px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .container { padding: 0 18px; }
  html { scroll-padding-top: 88px; }
  main > section[id] { scroll-margin-top: 88px; }
  .logo-mark { width: 150px; }
  .logo-text .logo-wordmark { font-size: .82rem; }
  .logo-text small {
    font-size: .44rem;
    letter-spacing: .2em;
  }
  .hero {
    padding: 90px 0 56px;
  }
  .section {
    padding: 56px 0;
  }
  .service-card {
    padding: 24px 20px;
  }
  .service-media {
    margin: -24px -20px 18px;
  }
  .contact-form {
    padding: 24px 18px 20px;
  }
  .field textarea {
    min-height: 96px;
  }
  .wa-float {
    width: 44px;
    height: 44px;
    right: 10px;
    bottom: 10px;
  }
  .wa-float svg { width: 24px; height: 24px; }
}
