/*
Theme Name: Crossroads Neutral
Theme URI: https://crossroadsneutral.com/
Author: Crossroads Neutral, LLC
Author URI: https://crossroadsneutral.com/
Description: Private divorce mediation landing theme for Crossroads Neutral, LLC. Built on Bootstrap 5 with an editorial, parchment-and-forest palette.
Version: 2.2.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crossroads-neutral
*/

:root {
  /* Warm parchment base — slightly deepened for an authentic, premium feel */
  --white:         #fcfcf7;
  --off-white:     #f4f1e8;
  --paper:         #ede9de;

  /* Forest — richened a touch for more depth */
  --forest:        #173022;
  --forest-mid:    #234b38;
  --forest-light:  #2d6047;

  /* Neutral inks */
  --platinum:      #333330;
  --platinum-lt:   #b5b5aa;
  --platinum-pale: rgba(142,142,130,0.13);
  --ink:           #131313;
  --ink-soft:      #2a2a2a;
  --body-text:     #333330;

  /* Muted brass accent — used sparingly for an authentic, hand-crafted touch */
  --brass:         #9a7b3f;
  --brass-soft:    #b79a5e;

  --rule:          rgba(142,142,130,0.25);
  --rule-strong:   rgba(23,48,34,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* Offset anchored sections so they clear the fixed 70px navbar. */
#home, #services, #benefits, #process, #aboutus, #contact {
  scroll-margin-top: 90px;
}

body {
  font-family: 'Mulish', sans-serif;
  font-weight: 300;
  color: var(--body-text);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════ TYPE HELPERS ═══════════ */
.t-label {
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.t-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.t-label-muted { color: var(--platinum); }

.section-h2 {
  font-family: 'Bodoni Moda', serif;
  font-optical-sizing: auto;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section-h2 em { font-style: italic; color: var(--forest); }

.section-body {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--body-text);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(252,252,247,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--rule);
  transition: all 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(252,252,247,0.97);
  box-shadow: 0 1px 20px rgba(23,48,34,0.06);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand img {
  height: 46px;
  filter: saturate(0.7) contrast(1.1);
}
.nav-brand-vr {
  width: 1px; height: 24px;
  background: var(--rule);
}
.nav-brand-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.2;
}
.nav-brand-sub {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--platinum);
}

.nav-menu {
  display: flex; align-items: center; gap: 0; list-style: none;
}
.nav-menu a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--platinum);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--ink); }

.nav-btn-consult {
  font-family: 'Mulish', sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  padding: 0.62rem 1.5rem;
  border-radius: 0;
  text-decoration: none;
  margin-left: 1.25rem;
  transition: all 0.25s;
  flex-shrink: 0;
  white-space: nowrap; align-self: center;
}
.nav-btn-consult:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  color: var(--white);
}

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--ink); padding: 0.5rem; margin-right: 0.25rem;
}

/* ═══════════════════════════════════════════════════
   HERO — Split canvas, image right
═══════════════════════════════════════════════════ */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 7vw 100px;
  background-color: var(--paper);
  gap: 5vw;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-content {
  flex: 1.2;
  max-width: 650px;
}

.hero-tag {
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: 0.8rem;
  opacity: 0;
  animation: up 0.7s ease forwards 0.15s;
}
.hero-tag::before {
  content: ''; width: 24px; height: 1px;
  background: var(--brass);
}

.hero h1 {
  font-family: 'Bodoni Moda', serif;
  font-optical-sizing: auto;
  font-size: clamp(2.3rem, 3.6vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: up 0.8s ease forwards 0.3s;
}
.hero h1 em { font-style: italic; color: var(--forest); }

.hero-lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: #333330;
  max-width: 430px;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: up 0.8s ease forwards 0.45s;
}

.hero-btns {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  opacity: 0;
  animation: up 0.8s ease forwards 0.6s;
}

.btn-cta {
  font-family: 'Mulish', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--forest);
  color: var(--white);
  border: 1px solid var(--forest);
  padding: 0.95rem 2.25rem;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.28s;
}
.btn-cta:hover { background: var(--forest-light); border-color: var(--forest-light); color: var(--white); }

.btn-text-link {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--platinum);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.55rem;
  transition: color 0.2s;
}
.btn-text-link::after { content: '\2192'; transition: transform 0.2s; }
.btn-text-link:hover { color: var(--ink); }
.btn-text-link:hover::after { transform: translateX(4px); }

/* Metrics */
.hero-metrics {
  display: flex; gap: 0;
  margin-top: 3.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: up 0.8s ease forwards 0.75s;
}
.metric { flex: 1; }
.metric + .metric {
  padding-left: 2rem;
  border-left: 1px solid var(--rule);
}
.metric-n {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.metric-n sup { font-size: 1rem; vertical-align: super; }
.metric-l {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--platinum);
}

.hero-avail {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--platinum);
  opacity: 0;
  animation: up 0.8s ease forwards 0.7s;
}
.hero-avail a {
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 1px;
}
.hero-avail a:hover { color: var(--brass); }

/* Hero image panel */
.hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%; height: auto;
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  filter: saturate(0.72) contrast(1.04); display: block;
}

.hero-image::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(23,48,34,0.22) 0%, transparent 55%);
}

/* Floating info card on image */
.hero-card {
  position: absolute; bottom: 3rem; left: 2.75rem; z-index: 2;
  background: rgba(252,252,247,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--brass);
  padding: 1.25rem 1.75rem;
  min-width: 230px;
}
.hero-card-lbl {
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.3rem;
}
.hero-card-val {
  font-family: 'Bodoni Moda', serif;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.35;
}

@keyframes up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   SERVICES — Editorial numbered list
═══════════════════════════════════════════════════ */
.services-section {
  padding: 7rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.sec-header {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 3rem; flex-wrap: wrap;
  margin-bottom: 4rem;
}

.service-row {
  display: grid;
  grid-template-columns: 72px 1fr 1.8fr;
  gap: 0 2.5rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.22s;
}
.service-row:first-of-type { border-top: 1px solid var(--rule); }
.service-row:hover { background: rgba(23,48,34,0.025); }

.svc-n {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.78rem;
  color: var(--brass);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.svc-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.svc-desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--body-text);
}
.svc-learn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.svc-learn::after { content: '\2192'; transition: transform 0.2s; }
.svc-learn:hover { color: var(--forest); }
.svc-learn:hover::after { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   SERVICE DETAIL PAGE
═══════════════════════════════════════════════════ */
.svc-hero {
  padding: 150px 0 5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.svc-hero-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 1rem;
}
.svc-hero h1 {
  font-family: 'Bodoni Moda', serif;
  font-optical-sizing: auto;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.svc-hero-tagline {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--forest);
  max-width: 640px;
  line-height: 1.5;
}
.svc-crumb {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.svc-crumb a { color: var(--platinum); text-decoration: none; }
.svc-crumb a:hover { color: var(--forest); }
.svc-crumb span { color: var(--brass); }

.svc-detail { padding: 6rem 0; background: var(--white); }
.svc-detail p { margin-bottom: 1.4rem; }
.svc-detail-h {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.svc-include-card {
  background: var(--off-white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--brass);
  padding: 2.25rem 2rem;
}
.svc-include-card .t-label { margin-bottom: 1.5rem; }

.svc-approach { margin-top: 1.5rem; }
.svc-approach .step-title { font-size: 1.1rem; margin-bottom: 0.4rem; }
.svc-approach .step-text { margin-bottom: 0; }

.svc-closing {
  border-left: 2px solid var(--brass);
  padding: 1.75rem 2.25rem;
  background: var(--off-white);
  margin-top: 2.5rem;
}
.svc-closing p {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* Metro "How we help" — South Asian service cards */
.metro-services {
  padding: 6rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--rule);
}
.metro-svc {
  padding: 1.75rem 0 1.5rem;
  border-top: 1px solid var(--rule);
  height: 100%;
}
.metro-svc-name {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.metro-svc-name:hover { color: var(--forest); }
.metro-svc-name .svc-n { color: var(--brass); }
.metro-svc-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 0.9rem;
}

/* Language switcher */
.cn-langs { display: inline-flex; gap: 0.85rem; margin-bottom: 0.75rem; }
.cn-langs .cn-lang {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.cn-langs .cn-lang:hover { color: rgba(255,255,255,0.9); }
.cn-langs .cn-lang.is-current { color: var(--brass-soft); }
html[dir="rtl"] body { direction: rtl; text-align: right; }

/* Nav variant of the switcher (light background) */
.cn-langs-nav { gap: 0.6rem; margin: 0 0.75rem 0 0.5rem; }
.cn-langs-nav .cn-lang { font-size: 0.82rem; color: var(--platinum); }
.cn-langs-nav .cn-lang:hover { color: var(--ink); }
.cn-langs-nav .cn-lang.is-current { color: var(--forest); font-weight: 600; }
@media (max-width: 991px) { .cn-langs-nav { display: none; } }

/* FAQ */
.faq-section {
  padding: 6rem 0;
  background: var(--white);
}
.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}
.faq-a {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--body-text);
  max-width: 760px;
  margin-bottom: 0;
}

/* Metro "About your mediator" */
.metro-mediator {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--rule);
}

/* Metro "cities we serve" internal-link block */
.svc-cities {
  padding: 4.5rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--rule);
}
.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  margin-top: 1.5rem;
}
.cities-list a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.cities-list a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--brass);
  transition: right 0.22s ease;
}
.cities-list a:hover { color: var(--forest); }
.cities-list a:hover::after { right: 0; }

.svc-other { padding: 5rem 0; background: var(--paper); border-top: 1px solid var(--rule); }
.svc-other-link {
  display: flex; align-items: baseline; gap: 1.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: padding-left 0.2s;
}
.svc-other-link:first-of-type { border-top: 1px solid var(--rule); }
.svc-other-link:hover { padding-left: 0.5rem; background: rgba(23,48,34,0.02); }
.svc-other-link .svc-n { color: var(--brass); }
.svc-other-link .svc-name { color: var(--ink-soft); }
.svc-other-link:hover .svc-name { color: var(--forest); }

/* ═══════════════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════════════ */
.benefits-section {
  padding: 7rem 0;
  background: var(--white);
}

.benefit-list { list-style: none; margin-top: 2rem; }
.benefit-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.5;
}
.benefit-list li:last-child { border-bottom: none; }

.chk {
  width: 17px; height: 17px; border-radius: 50%;
  border: 1px solid var(--forest-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.chk svg {
  width: 7px; height: 7px;
  stroke: var(--forest); fill: none; stroke-width: 2.5;
}

.pullquote {
  border-left: 2px solid var(--brass);
  padding: 2rem 2.5rem;
  background: var(--off-white);
  margin-bottom: 2rem;
}
.pullquote p {
  font-family: 'Bodoni Moda', serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.pullquote cite {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════
   FOREST BANNER
═══════════════════════════════════════════════════ */
.forest-banner {
  background: var(--forest);
  padding: 4.5rem 0;
  position: relative; overflow: hidden;
}
.forest-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 119px,
    rgba(255,255,255,0.02) 120px
  );
}
.forest-banner::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,154,94,0.4), transparent);
}

.banner-tag {
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.banner-tag::before { content:''; width:18px; height:1px; background:rgba(183,154,94,0.5); }

.forest-banner h3 {
  font-family: 'Bodoni Moda', serif;
  font-optical-sizing: auto;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.forest-banner p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8; max-width: 480px;
}

.btn-banner-outline {
  font-family: 'Mulish', sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(255,255,255,0.92);
  border: 1px solid transparent;
  padding: 0.85rem 1.85rem;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: all 0.28s;
}
.btn-banner-outline:hover {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}

/* ═══════════════════════════════════════════════════
   PROCESS — Vertical stepped
═══════════════════════════════════════════════════ */
.process-section {
  padding: 7rem 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.steps {
  position: relative;
  margin-top: 4rem;
  padding-left: 0;
}
.steps::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--forest-light), var(--platinum-pale));
}

.step {
  display: flex; gap: 2.75rem;
  padding-bottom: 3.25rem;
  position: relative;
}
.step:last-child { padding-bottom: 0; }

.step-dot {
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--rule-strong);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  transition: all 0.28s;
}
.step:hover .step-dot {
  background: var(--forest);
  border-color: var(--forest);
}
.step-dot-n {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--forest);
  transition: color 0.28s;
}
.step:hover .step-dot-n { color: rgba(255,255,255,0.9); }

.step-body { padding-top: 0.75rem; }
.step-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.step-text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--body-text);
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about-section {
  padding: 7rem 0;
  background: var(--white);
}

.portrait-wrap { position: relative; display: inline-block; }
.portrait-wrap img {
  width: 100%; max-width: 300px; display: block;
  border-radius: 0;
  filter: saturate(0.8) contrast(1.04);
}
.portrait-wrap::before {
  content: '';
  position: absolute; top: -12px; right: -12px;
  width: 50%; height: 50%;
  border-top: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
  opacity: 0.4;
}
.portrait-wrap::after {
  content: '';
  position: absolute; bottom: -12px; left: -12px;
  width: 50%; height: 50%;
  border-bottom: 1px solid var(--platinum-lt);
  border-left: 1px solid var(--platinum-lt);
  opacity: 0.35;
}

.mediator-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 1.5rem; margin-bottom: 0.15rem;
}
.mediator-role {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

.creds { margin-top: 1.5rem; }
.cred-line {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.855rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.cred-line:last-child { border-bottom: none; }
.cred-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0; margin-top: 8px;
}

/* ═══════════════════════════════════════════════════
   CONTACT — Dark canvas
═══════════════════════════════════════════════════ */
.contact-section {
  background: var(--ink);
  padding: 7rem 0;
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.015) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.015) 80px);
}

.contact-h2 {
  font-family: 'Bodoni Moda', serif;
  font-optical-sizing: auto;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}
.contact-h2 em { font-style: italic; color: var(--brass-soft); }

.contact-lead {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}

.contact-info-item { padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.055); }
.contact-info-item:last-child { border-bottom: none; }
.ci-label {
  font-size: 0.57rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brass-soft); margin-bottom: 0.3rem;
}
.ci-value {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.90);
}

/* Form */
.form-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--brass);
  padding: 3rem;
}

.f-label {
  display: block;
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0.5rem;
}
.f-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 0;
  color: rgba(255,255,255,0.82);
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.f-input:focus {
  border-color: rgba(183,154,94,0.65);
  background: rgba(255,255,255,0.055);
}
.f-input::placeholder { color: rgba(255,255,255,0.16); }
.f-field { margin-bottom: 1.5rem; }

.btn-form-submit {
  width: 100%;
  font-family: 'Mulish', sans-serif;
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--forest-light);
  color: rgba(255,255,255,0.9);
  border: 1px solid var(--forest-light);
  padding: 1rem; border-radius: 0;
  cursor: pointer;
  transition: all 0.28s;
}
.btn-form-submit:hover {
  background: transparent;
  color: var(--brass-soft);
  border-color: var(--brass-soft);
}

.form-privacy {
  font-size: 0.63rem; font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.6; margin-top: 1.25rem;
  text-align: center;
}

/* Side-by-side fields */
.f-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0;
}
.f-row .f-field { flex: 1; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: #0d0d0d;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-brand {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
.footer-copy {
  font-size: 0.67rem;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
}
.footer-avail {
  margin-top: 0.4rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-avail a {
  color: var(--brass-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(183,154,94,0.4);
  padding-bottom: 1px;
}
.footer-avail a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-content { padding: 5rem 3rem 4rem 4rem; }
}

@media (max-width: 991px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }
  .hero-content {
    padding: 4.5rem 2rem 3rem;
    width: 100%;
  }
  .hero-content::after { display: none; }

  .hero-image {
    display: block !important;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .hero-image img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .nav-menu, .nav-btn-consult { display: none; }
  .nav-toggle { display: block; }

  /* Mobile nav */
  .nav-open .nav-menu {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(252,252,247,0.98);
    border-bottom: 1px solid var(--rule);
    padding: 1.25rem 2rem 1.5rem;
    gap: 0.25rem; z-index: 799;
  }
  .nav-open .nav-btn-consult {
    display: block;
    position: fixed; left: 0; right: 0;
    margin: 0; text-align: center;
    padding: 1rem; z-index: 798;
    top: auto; bottom: 0;
  }

  .service-row { grid-template-columns: 52px 1fr; }
  .svc-desc { grid-column: 2; margin-top: 0.5rem; }
  .form-panel { padding: 2rem; }
  .sec-header { flex-direction: column; }
}

@media (max-width: 576px) {
  .hero h1 { font-size: 2.1rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hero-metrics { flex-direction: column; gap: 1.5rem; }
  .metric + .metric { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 1.5rem; }
  .steps::before { left: 18px; }
  .step-dot { width: 36px; height: 36px; }
  .step { gap: 1rem; }
  .step-body { min-width: 0; overflow: hidden; }
  .step-text { max-width: 100%; }
  .service-row { display: block; padding: 1.5rem 0; }
  .svc-n { display: block; margin-bottom: 0.4rem; }
  .svc-name { display: block; margin-bottom: 0.5rem; }
}

@media (max-width: 768px) {
  .f-row {
    flex-direction: column;
    gap: 0;
  }
}
