/* ==========================================================
   Richbae Group — design tokens
   Palette derived from the firm's own Company Profile: a deep
   navy canvas, gold accent, and the five division colours used
   for each service card (navy / teal / steel / violet / azure)
   treated here as a single "governance spectrum".
   ========================================================== */
:root{
  --navy-950: #070B18;
  --navy-900: #0B1330;
  --navy-800: #0D1B4B;
  --navy-700: #16295E;
  --gold: #C9A84C;
  --gold-bright: #E7C674;
  --teal: #12876F;
  --steel: #1E6091;
  --violet: #5B3487;
  --azure: #2F4B99;
  --paper: #F7F8FC;
  --ink: #10131F;
  --ink-soft: #565C74;
  --off-white: #F5F6FA;
  --line: rgba(255,255,255,0.10);
  --line-soft: rgba(15,18,34,0.10);
  --glass: rgba(255,255,255,0.055);
  --glass-strong: rgba(255,255,255,0.09);
  --glass-border: rgba(255,255,255,0.14);

  --font-display: "Bricolage Grotesque", ui-sans-serif, Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
}

/* ---------- reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body{
  margin: 0;
  background: var(--navy-950);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img, svg{ display: block; max-width: 100%; }
a{ color: inherit; }
h1,h2,h3,h4{ margin: 0; font-family: var(--font-display); font-weight: 700; }
p{ margin: 0; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; }
input, select, textarea{ font: inherit; color: inherit; }

.sr-only{
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link{
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--navy-950); padding: 10px 16px;
  font-family: var(--font-mono); font-size: 13px;
}
.skip-link:focus{ left: 12px; top: 12px; }

:focus-visible{ outline: 2px solid var(--gold-bright); outline-offset: 3px; }

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

/* ---------- ambient gradient mesh (fixed, behind everything) ---------- */
.mesh{
  position: fixed; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.blob{
  position: absolute;
  width: 52vw; height: 52vw;
  max-width: 720px; max-height: 720px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.24;
  mix-blend-mode: screen;
  animation: drift 34s ease-in-out infinite;
}
.blob-gold{ background: var(--gold); top: -14%; left: -8%; animation-delay: 0s; }
.blob-teal{ background: var(--teal); top: 18%; right: -14%; animation-delay: -11s; }
.blob-violet{ background: var(--violet); bottom: -18%; left: 22%; animation-delay: -22s; }
@keyframes drift{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  33%{ transform: translate(4%, 6%) scale(1.08); }
  66%{ transform: translate(-5%, -3%) scale(0.96); }
}
@media (prefers-reduced-motion: reduce){
  .blob{ animation: none; }
}

/* ---------- shared type utilities ---------- */
.eyebrow, .section-label{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.section-label{
  margin-bottom: 12px;
  color: var(--gold);
}
.seal-label-light{ color: var(--gold-bright); }

.section-title{
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.7rem);
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
  line-height: 1.12;
}
.section-title.light{ color: var(--off-white); }
.section-intro{
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 46px;
}
.section-intro.light{ color: var(--off-white); opacity: 0.78; }

.section{ position: relative; z-index: 1; padding: 100px 0; background: var(--paper); color: var(--ink); }
.section:nth-of-type(odd){ background: var(--off-white); }
.section.governance, .section.track-record{ background: transparent; color: var(--off-white); }
@media (max-width: 720px){ .section{ padding: 68px 0; } }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-gold{
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 10px 30px -8px rgba(201,168,76,0.55);
}
.btn-gold:hover{ box-shadow: 0 14px 36px -8px rgba(201,168,76,0.7); }
.btn-ghost{
  background: var(--glass);
  backdrop-filter: blur(10px);
  color: var(--off-white);
  border-color: var(--glass-border);
}
.btn-ghost:hover{ border-color: var(--gold-bright); background: var(--glass-strong); }
.btn-wide{ width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,11,24,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand{ display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark{
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--teal) 55%, var(--violet));
  color: var(--navy-950);
}
.brand-text{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.brand-text em{ font-style: normal; color: var(--gold-bright); font-weight: 500; margin-left: 3px; }

.main-nav{ display: flex; align-items: center; gap: 28px; }
.main-nav a{
  color: var(--off-white);
  opacity: 0.78;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: opacity 0.15s ease;
}
.main-nav a:hover{ opacity: 1; color: var(--gold-bright); }
.main-nav a.nav-cta{
  opacity: 1;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-950);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.main-nav a.nav-cta:hover{ box-shadow: 0 8px 22px -6px rgba(201,168,76,0.6); }

.nav-toggle{
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 8px; cursor: pointer;
}
.nav-toggle span{ width: 22px; height: 2px; background: var(--gold-bright); display: block; border-radius: 2px; }

.mobile-nav{
  display: none;
  flex-direction: column;
  background: var(--navy-900);
  border-top: 1px solid var(--line);
}
.mobile-nav a{
  padding: 16px 24px;
  color: var(--off-white);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.mobile-nav a.nav-cta{ color: var(--gold-bright); font-weight: 700; }

@media (max-width: 880px){
  .main-nav{ display: none; }
  .nav-toggle{ display: flex; }
  .mobile-nav.is-open{ display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative; z-index: 1;
  padding: 108px 0 84px;
}
.hero-inner{ max-width: 760px; }
.hero .eyebrow{ display: block; margin-bottom: 24px; }
.hero-title{
  font-size: clamp(2.7rem, 2rem + 3.4vw, 4.4rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
  color: var(--off-white);
}
.hero-lead{
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--off-white);
  opacity: 0.82;
  max-width: 54ch;
  margin-bottom: 38px;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.spectrum-bar{
  height: 6px;
  width: 220px;
  border-radius: 999px;
  margin-bottom: 46px;
  background: linear-gradient(90deg, var(--navy-700), var(--teal), var(--steel), var(--violet), var(--azure), var(--gold-bright));
  box-shadow: 0 0 24px -4px rgba(201,168,76,0.5);
}

.stat-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.stat-card{
  background: var(--glass);
  padding: 22px 18px;
}
.stat-num{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label{
  font-size: 0.82rem;
  color: var(--off-white);
  opacity: 0.72;
  line-height: 1.35;
}
@media (max-width: 700px){
  .stat-strip{ grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee{
  position: relative; z-index: 1;
  background: var(--glass);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track{
  display: flex; gap: 16px; align-items: center; white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.85;
  animation: scrollMarquee 30s linear infinite;
  width: max-content;
}
.marquee-track .dot{ color: var(--gold); font-size: 6px; opacity: 0.8; }
@keyframes scrollMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; flex-wrap: wrap; }
}

/* ============================================================
   ABOUT / VISION-MISSION
   ============================================================ */
.about{ background: var(--paper); }
.vm-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 44px;
}
.vm-card{
  border-radius: var(--radius);
  padding: 32px 30px;
  color: var(--off-white);
}
.vm-vision{ background: linear-gradient(150deg, var(--navy-800), var(--navy-700)); }
.vm-mission{ background: linear-gradient(150deg, var(--teal), #0B5E4F); }
.vm-kicker{
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.vm-text{ font-size: 1.08rem; line-height: 1.55; }

.values-row{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.values-row li{
  padding: 18px 4px 0;
  border-top: 2px solid var(--gold);
}
.value-name{
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.value-desc{ display: block; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 900px){
  .vm-grid{ grid-template-columns: 1fr; }
  .values-row{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .values-row{ grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES / DIVISIONS
   ============================================================ */
.services{ background: var(--off-white); }
.division-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.division-card{
  border-radius: var(--radius);
  padding: 30px 26px;
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.reveal-init .division-card{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.division-card.is-visible{ opacity: 1; transform: none; }

.div-1{ background: linear-gradient(150deg, var(--navy-700), var(--navy-800)); }
.div-2{ background: linear-gradient(150deg, var(--teal), #0B5E4F); }
.div-3{ background: linear-gradient(150deg, var(--steel), #163F5F); }
.div-4{ background: linear-gradient(150deg, var(--violet), #3D2260); }
.div-5{ background: linear-gradient(150deg, var(--azure), #1E3168); }

.division-icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  color: var(--off-white);
  margin-bottom: 20px;
}
.division-icon svg{ width: 22px; height: 22px; }
.division-card h3{ font-size: 1.28rem; margin-bottom: 10px; }
.division-desc{ opacity: 0.85; font-size: 0.96rem; margin-bottom: 18px; line-height: 1.5; }
.division-card ul{ display: flex; flex-direction: column; gap: 9px; }
.division-card li{
  font-size: 0.88rem;
  opacity: 0.88;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.division-card li::before{
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright);
}
@media (max-width: 980px){ .division-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .division-grid{ grid-template-columns: 1fr; } }

.subhead{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy-800);
  margin-bottom: 24px;
}
.extra-label{ margin-top: 64px; }

.extra-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.extra-card{
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  border: 1px solid rgba(201,168,76,0.35);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 26px;
  color: var(--off-white);
  display: flex;
  flex-direction: column;
}
.extra-card h3{ font-size: 1.16rem; margin-bottom: 12px; color: var(--off-white); }
.extra-desc{ font-size: 0.92rem; line-height: 1.55; opacity: 0.82; margin-bottom: 16px; }
.extra-for{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-bright);
  opacity: 0.85;
  margin-bottom: 22px;
  line-height: 1.5;
}
.extra-for span{
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-right: 6px;
}
.extra-card .btn{ margin-top: auto; align-self: flex-start; }

.btn-gold-outline{
  padding: 11px 22px;
  font-size: 0.88rem;
  background: transparent;
  color: var(--gold-bright);
  border-color: var(--gold);
}
.btn-gold-outline:hover{
  background: var(--gold);
  color: var(--navy-950);
}
@media (max-width: 980px){ .extra-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .extra-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   TRACK RECORD
   ============================================================ */
.case-panel{
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.case-stats{ display: flex; flex-direction: column; gap: 26px; }
.case-num{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}
.case-label{ font-size: 0.92rem; color: var(--off-white); opacity: 0.75; max-width: 30ch; }
.case-meetings-label{
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.tag-list{ display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li{
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border);
  color: var(--off-white);
}
@media (max-width: 820px){
  .case-panel{ grid-template-columns: 1fr; padding: 30px 26px; }
}

/* ============================================================
   TEAM
   ============================================================ */
.team{ background: var(--paper); }
.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card{
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover{ transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(13,27,75,0.3); }
.team-avatar{
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--off-white);
  margin-bottom: 18px;
}
.av-1{ background: linear-gradient(135deg, var(--navy-700), var(--navy-800)); }
.av-2{ background: linear-gradient(135deg, var(--teal), #0B5E4F); }
.av-3{ background: linear-gradient(135deg, var(--steel), #163F5F); }
.av-4{ background: linear-gradient(135deg, var(--violet), #3D2260); }
.team-card h3{ font-size: 1.08rem; color: var(--navy-800); margin-bottom: 4px; }
.team-role{
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 14px;
}
.team-bio{ font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 980px){ .team-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .team-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why{ background: var(--off-white); }
.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card{
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.why-card:hover{ border-color: var(--gold); transform: translateY(-3px); }
.why-card h3{ font-size: 1.05rem; color: var(--navy-800); margin-bottom: 10px; }
.why-card p{ font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 900px){ .why-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .why-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   GOVERNANCE / COMPLIANCE
   ============================================================ */
.governance-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.badge-list{ display: flex; flex-direction: column; gap: 14px; }
.badge-list li{
  display: flex; align-items: center; gap: 12px;
  font-size: 0.98rem;
  color: var(--off-white);
  padding: 14px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.badge-check{
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-950);
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}
.quality-list{ display: flex; flex-direction: column; gap: 18px; }
.quality-list li{
  font-size: 0.96rem;
  color: var(--off-white);
  opacity: 0.85;
  line-height: 1.5;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.quality-list li:last-child{ border-bottom: none; }
.quality-list strong{ color: var(--gold-bright); font-weight: 700; }
@media (max-width: 860px){ .governance-grid{ grid-template-columns: 1fr; gap: 44px; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{ background: var(--paper); }
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card{
  margin: 0;
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.testimonial-service{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 16px;
}
.testimonial-card blockquote{
  margin: 0 0 22px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
  flex-grow: 1;
}
.testimonial-name{ font-weight: 700; color: var(--navy-800); font-size: 0.95rem; }
.testimonial-title{ font-size: 0.84rem; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 900px){ .testimonial-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; gap: 44px; } }

.contact-facts{ margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.contact-facts div{
  display: flex; justify-content: space-between; gap: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.contact-facts dt{ font-family: var(--font-mono); color: var(--navy-800); opacity: 0.6; text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.06em; align-self: center; }
.contact-facts dd{ margin: 0; color: var(--ink); font-weight: 600; text-align: right; }

.proposal-form{
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  gap: 18px;
}
.field{ display: flex; flex-direction: column; gap: 7px; }
.field label{
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-800);
  opacity: 0.7;
}
.field input, .field select, .field textarea{
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--gold);
}
.field textarea{ resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  position: relative; z-index: 1;
  background: var(--navy-950);
  color: var(--off-white);
  padding: 50px 0;
  border-top: 1px solid var(--line);
}
.footer-inner{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 22px;
}
.footer-brand p{ font-size: 0.85rem; color: var(--off-white); opacity: 0.6; margin-top: 6px; max-width: 40ch; }
.footer-trust{
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  opacity: 0.8;
}
.footer-copy{ font-size: 0.82rem; color: var(--off-white); opacity: 0.5; width: 100%; }
@media (min-width: 761px){ .footer-copy{ width: auto; } }

/* ============================================================
   WHATSAPP
   ============================================================ */
.whatsapp-fab{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.whatsapp-fab:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px -8px rgba(0,0,0,0.55);
}
.whatsapp-fab svg{
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media (max-width: 620px){
  .whatsapp-fab{ right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg{ width: 27px; height: 27px; }
}

.whatsapp-link{
  color: #1DA851;
  font-weight: 700;
  text-decoration: none;
}
.whatsapp-link:hover{ text-decoration: underline; }
