/* =========================================================
   THE MARIN NOTARY · themarinnotary.com
   Brand-locked stylesheet · Built per Brand Identity Guidelines
   Marin Navy · Heritage Cream · Burnished Gold
   ========================================================= */

/* ----- DESIGN TOKENS ----- */
:root {
  /* Brand colors — exact hex from guidelines */
  --navy:          #0E2240;  /* Marin Navy — primary */
  --cream:         #F5EFE0;  /* Heritage Cream — premium sections */
  --gold:          #B8956A;  /* Burnished Gold — accents only, max 5% */
  --ink:           #1A1A1A;  /* Ink Black — body copy */
  --soft-white:    #FAFAF8;  /* Soft White — default background */
  --stone:         #6E6960;  /* Stone Gray — captions, footers */

  /* Derived tints (for hover states, borders) */
  --navy-soft:     #1B2F50;
  --navy-tint:     #E8EBF1;
  --gold-soft:     #A88556;
  --cream-deep:    #ECE3CE;
  --border:        #E5DDC6;

  /* Type */
  --font-serif:    'Cormorant Garamond', Garamond, 'Times New Roman', serif;
  --font-sans:     'Lato', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container:     1180px;
  --container-narrow: 880px;
  --radius:        4px;
  --radius-lg:     8px;

  /* Shadow */
  --shadow-sm:     0 1px 2px rgba(14, 34, 64, 0.06);
  --shadow:        0 4px 18px rgba(14, 34, 64, 0.08);
  --shadow-lg:     0 12px 32px rgba(14, 34, 64, 0.14);

  /* Motion */
  --t-fast:        160ms ease;
  --t-base:        260ms ease;
}

/* ----- RESET / BASE ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--soft-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--gold); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.005em;
}

h1 {
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h2 {
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.25;
}
h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  letter-spacing: 0;
  line-height: 1.3;
  color: var(--navy);
}
h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--stone);
  line-height: 1.3;
}

p { color: var(--ink); }
p + p { margin-top: 1rem; }
strong { font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ----- GOLD DETAIL LINES (sparingly, max 5%) ----- */
.gold-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto;
  border: none;
}
.gold-rule-left { margin-left: 0; }

/* ----- LAYOUT ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-header p { color: var(--stone); font-size: 1.05rem; margin-top: 0.75rem; }
.section-header .gold-rule { margin-bottom: 1.25rem; margin-top: 1.25rem; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all var(--t-base);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  min-height: 48px; /* touch target */
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--navy-soft);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
/* When btn-gold sits on a navy background, switch text to cream */
.bg-navy .btn-gold,
.cta-strip .btn-gold {
  color: var(--cream);
  border-color: var(--gold);
}
.bg-navy .btn-gold:hover,
.cta-strip .btn-gold:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-cream {
  background: var(--cream);
  color: var(--navy);
}
.btn-cream:hover {
  background: var(--cream-deep);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-block { width: 100%; }

/* ----- HEADER / NAV ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  line-height: 1.1;
}
.brand:hover { color: var(--navy); }
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-tag {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  gap: 2.25rem;
  flex: 1;
  justify-content: center;
}
.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.98rem;
  font-weight: 700;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  transition: all var(--t-base);
  min-height: 44px;
  white-space: nowrap;
}
.header-call:hover {
  background: var(--navy-soft);
  color: var(--cream);
  transform: translateY(-1px);
}
.header-call svg { color: var(--gold); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all var(--t-base);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 24px 1.5rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  padding: 1rem 0;
  font-size: 1.1rem;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile-call {
  margin-top: 0.5rem !important;
  background: var(--navy);
  color: var(--cream) !important;
  padding: 1rem 1.25rem !important;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700 !important;
  border: none !important;
}

/* ----- HERO ----- */
.hero {
  position: relative;
  background-color: var(--cream);
  overflow: hidden;
}
/* Hero photo (Mt Tam) — only on home page. To add: drop hero-mt-tam.jpg into assets/img/ */
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-mt-tam.jpg');
  background-size: cover;
  background-position: center 65%;
  opacity: 0.42;
  filter: saturate(0.92) brightness(1.04);
  pointer-events: none;
  z-index: 0;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(245, 239, 224, 0.55) 0%,
      rgba(245, 239, 224, 0.25) 35%,
      rgba(245, 239, 224, 0.78) 100%);
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.10) 0%, transparent 70%);
}
.hero::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(14, 34, 64, 0.05) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.hero h1 {
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: var(--stone);
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust {
  font-size: 0.82rem;
  color: var(--stone);
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
  line-height: 1.7;
}
.hero-trust span { white-space: nowrap; }
.hero-trust .sep {
  color: var(--gold);
  margin: 0 0.5rem;
  display: inline-block;
}

/* ----- SECTIONS ----- */
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--cream); }
.bg-navy p { color: var(--cream); opacity: 0.92; }
.bg-navy .eyebrow { color: var(--gold); }
.bg-navy .gold-rule { background: var(--gold); }
.bg-soft { background: var(--soft-white); }

/* ----- SERVICES PREVIEW (3 columns home) ----- */
.services-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.service-col h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.service-col h3::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.75rem;
}
.service-col p { color: var(--stone); font-size: 0.97rem; line-height: 1.65; }

/* ----- WHY US (Navy with icons) ----- */
.why-rows {
  display: grid;
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
}
.why-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.why-row h3 {
  color: var(--cream);
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}
.why-row p {
  color: var(--cream);
  opacity: 0.85;
  font-size: 0.97rem;
  line-height: 1.6;
}

/* ----- SPECIALTIES (2x2 grid) ----- */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.specialty-card {
  background: var(--soft-white);
  border: 1px solid var(--border);
  padding: 2.25rem 2rem;
  border-radius: var(--radius);
  transition: all var(--t-base);
}
.specialty-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.specialty-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.specialty-card h3::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.6rem;
}
.specialty-card p { color: var(--stone); font-size: 0.97rem; line-height: 1.65; }

/* ----- TESTIMONIAL PLACEHOLDER ----- */
.testimonial-placeholder {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.testimonial-placeholder p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

/* ----- CTA STRIP ----- */
.cta-strip { text-align: center; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta-strip h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-strip p { color: var(--cream); opacity: 0.92; max-width: 540px; margin: 0 auto 2rem; }
.cta-strip-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.cta-strip-email {
  color: var(--cream);
  font-size: 0.98rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.cta-strip-email:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ----- SERVICES PAGE (categories) ----- */
.service-category {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.service-category:last-of-type { border-bottom: none; }
.service-category h2 {
  margin-bottom: 1.5rem;
}
.service-category h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-top: 1rem;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  margin-top: 1rem;
}
.service-list li {
  font-size: 1rem;
  color: var(--ink);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.compliance-note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.75rem 2rem;
  margin: 3rem 0;
}
.compliance-note h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.compliance-note p {
  font-size: 0.97rem;
  color: var(--stone);
  line-height: 1.65;
}

.pricing-note {
  text-align: center;
  background: var(--cream);
  padding: 2rem 2rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  border: 1px solid var(--border);
}
.pricing-note p { color: var(--navy); font-size: 1rem; line-height: 1.65; }

/* ----- SERVICE AREAS PAGE ----- */
.map-embed {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 3rem;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--stone);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.city-card {
  background: var(--soft-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--t-base);
}
.city-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.city-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.city-card h3::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.4rem;
}
.city-card p { color: var(--stone); font-size: 0.95rem; line-height: 1.65; }

/* ----- ABOUT PAGE ----- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  background: var(--navy);
  border-radius: var(--radius);
  position: relative;
  display: grid;
  place-items: center;
  color: var(--cream);
  overflow: hidden;
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}
.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 1;
}
.about-portrait-mark { width: 70%; opacity: 0.95; }
.about-portrait-note {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.about-text h1 { margin-bottom: 0.5rem; }
.about-text .subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--stone);
  margin-bottom: 2rem;
  font-weight: 400;
}
.about-body { font-size: 1.05rem; line-height: 1.75; }
.about-body p { margin-bottom: 1.25rem; color: var(--ink); }

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.credentials-col h4 {
  margin-bottom: 1rem;
  color: var(--gold);
}
.credentials-col ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--ink);
}
.credentials-col ul li:last-child { border-bottom: none; }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.philosophy-col {
  text-align: center;
}
.philosophy-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.philosophy-col h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.philosophy-col p { color: var(--stone); font-size: 0.98rem; line-height: 1.65; }

/* ----- CONTACT PAGE ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.contact-methods h2 { margin-bottom: 1.5rem; }
.contact-method {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:last-of-type { border-bottom: none; }
.contact-method h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}
.contact-method .primary {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.contact-method .primary:hover { color: var(--gold); }
.contact-method .note {
  font-size: 0.93rem;
  color: var(--stone);
  line-height: 1.55;
}

.contact-form {
  background: var(--cream);
  padding: 2.5rem 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-form > p {
  color: var(--stone);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.form-row label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-row .optional {
  font-weight: 400;
  color: var(--stone);
  text-transform: none;
  letter-spacing: 0;
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--soft-white);
  color: var(--ink);
  transition: border-color var(--t-fast);
  min-height: 48px; /* touch target */
}
.form-row textarea {
  resize: vertical;
  min-height: 110px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--cream);
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-success {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--soft-white);
  border-left: 3px solid var(--gold);
  border-radius: 0;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.6;
}
.form-success strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

/* ----- FAQ ACCORDION ----- */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  letter-spacing: 0;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  color: var(--gold);
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.faq-toggle::before { /* horizontal */
  top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%);
}
.faq-toggle::after { /* vertical */
  top: 0; left: 50%; width: 1px; height: 100%; transform: translateX(-50%);
  transition: transform var(--t-base);
}
.faq-item.is-open .faq-toggle::after { transform: translateX(-50%) scaleY(0); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base);
}
.faq-answer-inner {
  overflow: hidden;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer-inner { padding-bottom: 1.5rem; }

/* ----- FOOTER ----- */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-block .brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand-block .gold-rule { margin: 0.5rem 0; background: var(--gold); }
.footer-tag {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.85;
  font-style: italic;
  margin-top: 0.75rem;
}
.site-footer h4 {
  font-family: var(--font-sans);
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.footer-links li,
.footer-contact-list li,
.footer-creds li {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  color: var(--cream);
  opacity: 0.88;
}
.footer-links a,
.footer-contact-list a {
  color: var(--cream);
  opacity: 1;
  font-weight: 400;
}
.footer-links a:hover,
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 149, 106, 0.3);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--cream);
  opacity: 0.7;
  letter-spacing: 0.04em;
}
.footer-bottom .gold-rule { display: inline-block; vertical-align: middle; margin: 0 1rem; width: 24px; }

/* ----- STICKY MOBILE CALL BUTTON ----- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--navy);
  color: var(--cream);
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 24px rgba(14, 34, 64, 0.35);
  z-index: 40;
  transition: all var(--t-base);
  border: 1px solid var(--gold);
  font-size: 0.95rem;
}
.sticky-call svg { color: var(--gold); }
.sticky-call:hover {
  background: var(--navy-soft);
  color: var(--cream);
  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }

  .services-3 { grid-template-columns: 1fr; gap: 2rem; }

  .specialties-grid { grid-template-columns: 1fr; }

  .about-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; max-width: 580px; margin: 0 auto; }
  .about-portrait { max-width: 360px; margin: 0 auto; }

  .credentials-grid { grid-template-columns: 1fr; gap: 2rem; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 480px; margin: 2rem auto 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* =========================================================
   RESPONSIVE — MOBILE (<640px)
   ========================================================= */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container, .container-narrow { padding: 0 20px; }
  .header-inner { padding: 0.7rem 20px; gap: 0.75rem; }

  .brand-name { font-size: 1.15rem; }
  .brand-tag { display: none; }
  .brand-mark { width: 32px; height: 32px; }
  .header-call span { display: none; }
  .header-call { padding: 0.65rem 0.85rem; }

  .nav-mobile.is-open { display: flex; }

  .hero-cta { flex-direction: column; gap: 0.75rem; }
  .hero-cta .btn { width: 100%; }
  .hero-trust span { display: block; line-height: 2; }
  .hero-trust .sep { display: none; }

  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  .service-list { grid-template-columns: 1fr; gap: 0.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-brand-block .gold-rule { margin-left: auto; margin-right: auto; }

  .sticky-call { display: inline-flex; }

  .specialty-card,
  .city-card,
  .contact-form { padding: 1.75rem 1.5rem; }

  .why-row { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .compliance-note { padding: 1.5rem 1.5rem; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .specialty-card,
  .city-card,
  .service-col,
  .why-row,
  .philosophy-col {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}
