/* ==========================================================
   SteadyFlow Solutions Group, Brand stylesheet
   Navy #162d3d primary, gold #c9a84c accent, blue #3899ec link
   ========================================================== */

:root {
  --navy: #162d3d;
  --navy-deep: #0e1e29;
  --navy-mid: #1e3d52;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: #f5ecd1;
  --blue: #3899ec;
  --blue-deep: #116dff;
  --red: #df3131;
  --bg: #f6f8fa;
  --paper: #ffffff;
  --warm: #f0eee9;
  --ink: #0f1e29;
  --ink-mid: #2e4555;
  --ink-mute: #607080;
  --rule: #dde3e8;
  --rule-soft: #eaeef2;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--blue-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(17,109,255,0.3); }
a:hover { color: var(--blue); text-decoration-color: var(--blue); }
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
p { margin: 0 0 16px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 36px; }

/* ---- HEADER ---- */
header.site {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}
.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 36px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { height: 36px; width: auto; display: block; object-fit: contain; }
.brand-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.3;
  border-left: 1px solid var(--rule);
  padding-left: 14px;
}
.brand-text b { display: block; color: var(--navy); font-weight: 600; font-size: 14px; margin-bottom: 1px; }
nav.primary {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
nav.primary a {
  color: var(--ink-mid);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
nav.primary a:hover, nav.primary a.active { color: var(--navy); border-bottom-color: var(--gold); }
nav.primary .nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  transition: background 0.2s;
}
nav.primary .nav-cta:hover { background: var(--gold); color: var(--navy); border: none; }
nav.primary .nav-cta.active { background: var(--navy); color: #fff; border-bottom: none; }
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  cursor: pointer;
  color: var(--ink);
  border-radius: 4px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(14,30,41,0.92) 0%, rgba(14,30,41,0.72) 55%, rgba(14,30,41,0.3) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 36px 84px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04;
  margin-bottom: 28px;
  max-width: 20ch;
  color: #ffffff;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin: 0 0 36px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid var(--gold);
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.btn:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.btn .arrow { display: inline-block; transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Inverted ghost (on light bg) */
.why .btn-ghost, .areas-strip .btn-ghost {
  color: var(--navy);
  border-color: var(--rule);
}
.why .btn-ghost:hover, .areas-strip .btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.hero-meta {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-meta div span {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 144;
}
.hero-meta div small {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ---- SECTION EYEBROW ---- */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- SERVICES TILES ---- */
.tiles {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.tiles-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}
.tiles-head h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  max-width: 24ch;
}
.tiles-head p {
  color: var(--ink-mute);
  max-width: 40ch;
  margin: 0;
  font-size: 16px;
}
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.tile {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  padding: 36px 32px;
  transition: background 0.2s;
}
.tile:hover { background: var(--bg); }
.tile-cta { background: var(--navy); }
.tile-cta:hover { background: var(--navy-mid); }
.tile-cta .tile-cat { color: var(--gold); }
.tile-cta h3 { color: #fff; }
.tile-cta p { color: rgba(255,255,255,0.72); }
.tile-cta .read { color: var(--gold); border-bottom-color: var(--gold); }
.tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}
.tile-cta .tile-icon {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}
.tile-cat {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}
.tile h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.tile p {
  font-size: 15px;
  color: var(--ink-mid);
  margin: 0 0 20px;
  line-height: 1.6;
  flex-grow: 1;
}
.tile .read {
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 1px;
  font-family: 'Inter', sans-serif;
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 100px 0;
  background: var(--bg);
}
.how-head {
  margin-bottom: 56px;
}
.how-head h2 {
  font-size: clamp(28px, 3.5vw, 46px);
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.step {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 40px 36px;
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 144;
  opacity: 0.9;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.step p { font-size: 15px; color: var(--ink-mid); margin: 0; }
.step-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
}

/* ---- MISSION ---- */
.mission {
  background: var(--navy);
  padding: 96px 0;
}
.mission-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 36px;
  text-align: center;
}
.mission-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 700;
}
.mission blockquote {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.38;
  color: #ffffff;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.mission cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- WHY STEADYFLOW ---- */
.why {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  margin-bottom: 22px;
}
.why-text p { font-size: 16.5px; color: var(--ink-mid); }
.why-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.why-list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.why-image { position: relative; }
.why-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--rule);
}
.why-image-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--navy);
  color: #fff;
  padding: 16px 24px;
  font-size: 14px;
}
.why-image-tag strong { display: block; font-family: 'Fraunces', serif; font-size: 18px; color: var(--gold-light); margin-bottom: 3px; }
.why-image-tag span { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ---- AREAS STRIP ---- */
.areas-strip {
  padding: 80px 0;
  background: var(--bg);
}
.areas-strip h2 { font-size: clamp(26px, 3vw, 40px); }
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.chip {
  display: inline-block;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

/* ---- CONTACT CTA (reused across pages) ---- */
.contact-cta-section {
  background: var(--gold-pale);
  padding: 96px 0;
  border-top: 1px solid #e8ddbf;
  border-bottom: 1px solid #e8ddbf;
}
.contact-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 36px;
  text-align: center;
}
.contact-inner h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 18px;
  line-height: 1.08;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.contact-inner .lead {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 50ch;
  margin: 0 auto 36px;
}
.contact-card {
  background: var(--paper);
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px;
  display: inline-flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.contact-card .field {
  padding: 18px 28px;
  text-align: left;
  border-right: 1px solid var(--rule);
  min-width: 200px;
}
.contact-card .field:last-of-type { border-right: none; }
.contact-card .k {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-card .v {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy);
  font-variation-settings: "opsz" 96;
}
.contact-card .v a { color: var(--navy); text-decoration: none; }
.contact-card .v a:hover { color: var(--blue-deep); }
.contact-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-actions .btn { color: var(--navy); }
.contact-actions .btn-ghost {
  color: var(--navy);
  border-color: var(--rule);
  background: transparent;
}
.contact-actions .btn-ghost:hover {
  border-color: var(--navy);
  background: transparent;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  border-bottom: 3px solid var(--gold);
}
.page-hero .section-eyebrow { color: var(--gold); }
.page-hero .section-eyebrow::before { background: var(--gold); }
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 58px);
  color: #ffffff;
  max-width: 22ch;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.page-hero .lead {
  font-size: 17.5px;
  color: rgba(255,255,255,0.75);
  max-width: 54ch;
  margin: 0;
  line-height: 1.6;
}
.page-hero a { color: var(--gold-light); }

/* ---- SERVICE DETAIL ---- */
.service-detail {
  padding: 80px 0 96px;
  background: var(--paper);
}
.service-two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.service-main h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 20px;
  color: var(--navy);
}
.service-main h3 {
  font-size: 22px;
  margin-bottom: 12px;
  margin-top: 36px;
  color: var(--navy);
}
.service-main p { font-size: 16px; color: var(--ink-mid); }
.doc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.doc-item {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.service-list {
  padding-left: 0;
  list-style: none;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.service-list li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.service-note {
  margin-top: 32px;
  background: var(--bg);
  border-left: 3px solid var(--navy);
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--ink-mute);
  line-height: 1.55;
}
.sidebar-card {
  background: var(--navy);
  padding: 32px;
  color: #fff;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.sidebar-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
}
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-contact {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-contact a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.sidebar-contact a:hover { color: #fff; }
.sidebar-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}
.sidebar-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-links ul li a {
  display: block;
  font-size: 14.5px;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-weight: 500;
}
.sidebar-links ul li a:hover { color: var(--navy); }

/* ---- ABOUT (page) ---- */
.about-detail {
  padding: 80px 0 96px;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-photo-wrap {
  margin-bottom: 24px;
  overflow: hidden;
}
.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border: 1px solid var(--rule);
}
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credential-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
}
.credential-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.credential-item span {
  font-size: 13.5px;
  color: var(--ink-mute);
  text-align: right;
}
.about-text-col .section-eyebrow { margin-bottom: 18px; }
.about-text-col h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 22px;
}
.about-text-col p { font-size: 16.5px; color: var(--ink-mid); }
.about-signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--navy);
}

/* VALUES GRID ---- */
.values-grid-section {
  padding: 80px 0;
  background: var(--bg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  padding: 32px 28px;
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 18px;
}
.value-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.value-card p { font-size: 15px; color: var(--ink-mid); margin: 0; }

/* ---- AREAS DETAIL ---- */
.areas-detail {
  padding: 80px 0 96px;
  background: var(--paper);
}
.areas-counties {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.county-block { }
.county-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.county-block-ron {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--navy);
  padding: 28px 32px;
}
.county-block-ron p { font-size: 15.5px; color: var(--ink-mid); margin: 0; }
.areas-note {
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  font-size: 15px;
  color: var(--ink-mid);
}
.areas-note strong { color: var(--navy); }

/* ---- FAQ ---- */
.faq-section {
  padding: 80px 0 96px;
  background: var(--paper);
}
.faq-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq-group { }
.faq-group-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q:hover { color: var(--blue-deep); }
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-a p {
  font-size: 15.5px;
  color: var(--ink-mid);
  padding-bottom: 24px;
  margin: 0;
  line-height: 1.65;
}

/* ---- CONTACT PAGE ---- */
.contact-page {
  padding: 80px 0 100px;
  background: var(--paper);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
}
.contact-form-col h2 {
  font-size: 30px;
  margin-bottom: 28px;
}
.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
input, select, textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  background: var(--paper);
}
textarea { resize: vertical; min-height: 100px; }
.form-submit { align-self: flex-start; margin-top: 6px; }
.form-submit:hover { color: var(--navy); }
.form-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 32px;
  border: 1px solid var(--rule);
  background: var(--bg);
}
.form-success svg { color: var(--gold); margin-bottom: 20px; }
.form-success h3 { font-size: 28px; color: var(--navy); margin-bottom: 12px; }
.form-success p { font-size: 16px; color: var(--ink-mid); }
.contact-info-card {
  background: var(--navy);
  padding: 36px 32px;
  margin-bottom: 24px;
}
.contact-info-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.contact-info-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}
.ci-value {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}
a.ci-value:hover { color: var(--gold-light); }
.contact-service-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-service-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.contact-service-links ul li a {
  display: block;
  font-size: 14.5px;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-weight: 500;
}
.contact-service-links ul li a:hover { color: var(--navy); }
.trust-mini {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-mini-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
}
.trust-mini-item svg { color: var(--gold); flex-shrink: 0; }

/* ---- FOOTER ---- */
footer.site {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 0;
}
.foot-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  display: block;
  object-fit: contain;
}
.foot-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.6;
  margin: 0 0 12px;
}
.foot-brand .small { font-size: 12px; color: rgba(255,255,255,0.35); }
footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 14px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 2;
}
footer ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
footer ul a:hover { color: #fff; }
footer ul li { color: rgba(255,255,255,0.55); }
.foot-meta {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1040px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-two-col { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step-divider { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-counties { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .head-row { padding: 14px 20px; flex-wrap: wrap; }
  nav.primary { display: none; flex-direction: column; gap: 14px; align-items: flex-end; width: 100%; }
  nav.primary.open { display: flex; }
  .menu-btn { display: inline-block; }
  .brand-text { display: none; }
  .hero-inner { padding: 72px 20px 56px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tiles-head { flex-direction: column; align-items: flex-start; }
  .tile-grid { grid-template-columns: 1fr; gap: 0; }
  .doc-list { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; }
  .contact-card .field { border-right: none; border-bottom: 1px solid var(--rule); width: 100%; }
  .contact-card .field:last-child { border-bottom: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar-inner { gap: 10px 20px; }
  section { }
  .how { padding: 64px 0; }
  .why { padding: 64px 0; }
  .mission { padding: 64px 0; }
  .tiles { padding: 64px 0; }
  .areas-strip { padding: 56px 0; }
  .contact-cta-section { padding: 64px 0; }
  .page-hero { padding: 56px 0 48px; }
  .service-detail { padding: 56px 0 72px; }
  .about-detail { padding: 56px 0 72px; }
  .faq-section { padding: 56px 0 72px; }
  .contact-page { padding: 56px 0 72px; }
  .areas-detail { padding: 56px 0 72px; }
  .values-grid-section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .hero-meta div span { font-size: 30px; }
  .foot-meta { flex-direction: column; }
}
