/* ============================================================
   Solicitors Bromley — Main Stylesheet
   Refined, professional UK legal aesthetic
   ============================================================ */

:root {
  /* Brand palette */
  --navy: #0a2540;
  --navy-deep: #061a30;
  --navy-soft: #173659;
  --brass: #b8924c;
  --brass-light: #d4ae6c;
  --brass-dark: #8f7038;
  --cream: #faf7f2;
  --cream-warm: #f3ede1;
  --ink: #1a1a1a;
  --ink-soft: #2d2d2d;
  --stone: #6b6b6b;
  --stone-light: #9a9a9a;
  --border: #e8e3d8;
  --border-soft: #f1ece1;
  --white: #ffffff;
  --success: #2e7d4a;
  --danger: #b3261e;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06);
  --shadow: 0 4px 12px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 37, 64, 0.12);
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(184, 146, 76, 0.4);
  text-underline-offset: 3px;
  transition: var(--transition);
}
a:hover { color: var(--brass-dark); text-decoration-color: var(--brass); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; font-size: 0.85rem; color: var(--brass-dark); }

p { margin: 0 0 1em; }

.lead { font-size: 1.15rem; line-height: 1.6; color: var(--ink-soft); }

/* ============================================================
   Layout
   ============================================================ */

.container {
  width: 100%;
  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(48px, 8vw, 88px) 0; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-block;
}

/* ============================================================
   Phone Bar — sticky top
   ============================================================ */

.phone-bar {
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 0.9rem;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(184, 146, 76, 0.2);
}
.phone-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.phone-bar__hours { color: rgba(250, 247, 242, 0.7); font-size: 0.85rem; }
.phone-bar__cta {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.phone-bar__cta:hover { color: var(--brass-light); }
.phone-bar__cta svg { width: 16px; height: 16px; }

@media (max-width: 600px) {
  .phone-bar__hours { display: none; }
  .phone-bar__inner { justify-content: center; }
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 41px;
  z-index: 99;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.logo:hover { color: var(--navy); }
.logo__mark {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--brass-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  border-radius: 2px;
}
.logo__sub { font-size: 0.7rem; color: var(--stone); letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-top: 2px; font-family: var(--font-body); }
.logo__text { line-height: 1; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav a:hover { color: var(--brass-dark); }
.nav__cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav__cta:hover { background: var(--brass-dark); color: var(--cream) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
  .nav__cta { text-align: center; margin-top: 8px; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(184, 146, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}
.hero__title {
  margin-top: 16px;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
}
.hero__title em {
  font-style: italic;
  color: var(--brass-dark);
  font-weight: 500;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.hero__trust-item svg { width: 18px; height: 18px; color: var(--brass-dark); flex-shrink: 0; }
.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.01em;
  line-height: 1;
}
.btn--primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--brass-dark);
  border-color: var(--brass-dark);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--secondary:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn--block { width: 100%; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* ============================================================
   Lead Form
   ============================================================ */

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}
.lead-form__badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--brass);
  color: var(--white);
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
}
.lead-form__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 6px 0 6px;
}
.lead-form__intro {
  font-size: 0.92rem;
  color: var(--stone);
  margin-bottom: 22px;
}
.form-row { margin-bottom: 16px; }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  transition: var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 146, 76, 0.15);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-consent {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--stone);
  margin: 18px 0 20px;
  line-height: 1.5;
}
.form-consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--brass); }
.form-consent a { color: var(--navy); }
.form-note {
  font-size: 0.78rem;
  color: var(--stone-light);
  margin-top: 14px;
  text-align: center;
}

@media (max-width: 500px) {
  .lead-form { padding: 24px 20px; }
  .form-row--split { grid-template-columns: 1fr; }
}

/* ============================================================
   Service Grid
   ============================================================ */

.section-head { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head--left { text-align: left; margin-left: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}
.service-card:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: var(--ink);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--cream-warm);
  color: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--navy);
}
.service-card p { font-size: 0.92rem; color: var(--stone); margin: 0; }
.service-card__more {
  font-size: 0.85rem;
  color: var(--brass-dark);
  font-weight: 600;
  margin-top: auto;
  padding-top: 8px;
  letter-spacing: 0.02em;
}

/* ============================================================
   Why Choose / Feature blocks
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--brass);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.feature h3 { font-size: 1.15rem; margin: 0 0 6px; }
.feature p { font-size: 0.95rem; color: var(--stone); margin: 0; }

/* ============================================================
   Alternating Sections
   ============================================================ */

.section--navy {
  background: var(--navy-deep);
  color: var(--cream);
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--cream); }
.section--navy .section-eyebrow { color: var(--brass-light); }
.section--navy a { color: var(--brass-light); }

.section--cream-warm { background: var(--cream-warm); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-grid--reverse > :first-child { order: 2; }
@media (max-width: 860px) {
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-grid--reverse > :first-child { order: 0; }
}

.local-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.local-card dl { margin: 0; display: grid; grid-template-columns: 130px 1fr; gap: 14px 20px; font-size: 0.95rem; }
.local-card dt { color: var(--stone); font-weight: 500; }
.local-card dd { margin: 0; color: var(--ink); font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */

.faq-list { max-width: 820px; margin: 0 auto; }
.faq {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--brass);
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.faq[open] summary::after { content: '−'; }
.faq__body {
  padding-top: 14px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.faq__body p:last-child { margin-bottom: 0; }

/* ============================================================
   Testimonials
   ============================================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 16px;
}
.testimonial__quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--brass);
  font-family: var(--font-display);
  line-height: 0;
  position: relative;
  top: 18px;
  margin-right: 4px;
}
.testimonial__meta {
  font-size: 0.85rem;
  color: var(--stone);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.testimonial__name { color: var(--navy); font-weight: 600; }
.testimonial__stars { color: var(--brass); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; }

/* ============================================================
   CTA strip
   ============================================================ */

.cta-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 56px 0;
  text-align: center;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184, 146, 76, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(184, 146, 76, 0.1) 0%, transparent 50%);
}
.cta-strip h2 { color: var(--cream); margin-bottom: 12px; }
.cta-strip p { color: rgba(250, 247, 242, 0.85); margin-bottom: 28px; }
.cta-strip__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-strip .btn--secondary { color: var(--cream); border-color: var(--cream); }
.cta-strip .btn--secondary:hover { background: var(--cream); color: var(--navy); }
.cta-strip .btn--primary { background: var(--brass); border-color: var(--brass); color: var(--navy-deep); }
.cta-strip .btn--primary:hover { background: var(--brass-light); border-color: var(--brass-light); color: var(--navy-deep); }

/* ============================================================
   Page Hero (interior pages)
   ============================================================ */

.page-hero {
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  padding: clamp(40px, 6vw, 64px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero__lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 720px; }

.breadcrumbs { font-size: 0.85rem; color: var(--stone); margin-bottom: 18px; }
.breadcrumbs a { color: var(--stone); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brass-dark); text-decoration: underline; }
.breadcrumbs span { margin: 0 8px; color: var(--stone-light); }

/* ============================================================
   Content typography (article pages)
   ============================================================ */

.prose { max-width: var(--container-narrow); }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 1em; }
.prose li { margin-bottom: 0.4em; }
.prose blockquote {
  border-left: 3px solid var(--brass);
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
}

/* Two column layout for service pages */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.service-layout__aside .lead-form { padding: 24px; }
.service-layout__aside .lead-form__title { font-size: 1.3rem; }
@media (max-width: 920px) {
  .service-layout { grid-template-columns: 1fr; }
}
.service-layout__aside-sticky {
  position: sticky;
  top: 120px;
}
@media (max-width: 920px) {
  .service-layout__aside-sticky { position: static; }
}

/* Tag list */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.tag {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-decoration: none;
}
.tag:hover { background: var(--brass); color: var(--white); border-color: var(--brass); }

/* Related links cards */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.related-card:hover {
  border-color: var(--brass);
  background: var(--cream-warm);
  color: var(--navy);
}
.related-card::after { content: '\2192'; color: var(--brass); }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 247, 242, 0.8);
  padding: 64px 0 24px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer h4 {
  color: var(--brass-light);
  font-size: 0.8rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  font-weight: 700;
}
.site-footer a {
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
}
.site-footer a:hover { color: var(--brass-light); }
.footer-brand p { color: rgba(250, 247, 242, 0.65); font-size: 0.88rem; max-width: 320px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.8);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--brass-light); flex-shrink: 0; margin-top: 4px; }
.footer-contact-item a { display: inline; padding: 0; }
.footer-bottom {
  border-top: 1px solid rgba(184, 146, 76, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.55);
}
.footer-bottom a { display: inline; padding: 0; font-size: 0.82rem; }
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.5);
  max-width: 920px;
  line-height: 1.6;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(184, 146, 76, 0.15);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Utility
   ============================================================ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
.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;
}

/* Form success/error states */
.form-message {
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-size: 0.92rem;
  display: none;
}
.form-message.is-visible { display: block; }
.form-message--success { background: rgba(46, 125, 74, 0.1); border: 1px solid rgba(46, 125, 74, 0.3); color: var(--success); }
.form-message--error { background: rgba(179, 38, 30, 0.08); border: 1px solid rgba(179, 38, 30, 0.25); color: var(--danger); }

/* Print */
@media print {
  .phone-bar, .site-header, .site-footer, .lead-form, .cta-strip, .nav-toggle { display: none; }
  body { background: white; color: black; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
