/* ============================================
   M BROXSON NOTARY - SHARED STYLES
   ============================================ */

:root {
  --maroon: #7A1F2B;
  --maroon-dark: #5C1620;
  --cream: #F8F4ED;
  --cream-dark: #EFE7D8;
  --charcoal: #1F1F1F;
  --taupe: #6B5D52;
  --gold: #C9A961;
  --gold-dark: #A8893F;
  --border: #E8DFD2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

.display { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: -0.02em; }
.italic-accent { font-family: 'Crimson Pro', serif; font-style: italic; }

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--charcoal);
  color: var(--cream);
  padding: 8px 24px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.04em;
}
.top-bar a { color: var(--gold); text-decoration: none; }
.top-bar .left { display: flex; gap: 24px; }
.top-bar .right { display: flex; gap: 20px; }
@media (max-width: 768px) {
  .top-bar { font-size: 11px; padding: 6px 16px; }
  .top-bar .left { gap: 12px; }
  .top-bar .right { gap: 12px; }
}

/* ===== NAV ===== */
nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(248, 244, 237, 0.96);
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--charcoal);
}
.logo-mark {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.4;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; letter-spacing: 0.02em; }
.logo-tag { font-size: 10px; letter-spacing: 0.25em; color: var(--taupe); text-transform: uppercase; margin-top: 2px; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--maroon); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 1px; background: var(--maroon);
}

.nav-cta {
  background: var(--maroon);
  color: var(--cream) !important;
  padding: 12px 24px;
  border-radius: 0;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--maroon-dark); }

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 24px; height: 1.5px; background: var(--charcoal); }

@media (max-width: 968px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .logo-name { font-size: 18px; }
  .logo-tag { font-size: 9px; }
  .logo-mark { width: 38px; height: 38px; font-size: 18px; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--maroon);
  color: var(--cream);
  padding: 18px 36px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  border: 1.5px solid var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-primary:hover { background: var(--maroon-dark); border-color: var(--maroon-dark); }
.btn-primary::after { content: '→'; transition: transform 0.3s; }
.btn-primary:hover::after { transform: translateX(4px); }

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  padding: 18px 36px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--charcoal);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}
.btn-secondary:hover { background: var(--charcoal); color: var(--cream); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 48px 120px;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-eyebrow {
  color: var(--maroon);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero h1 .accent {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--maroon);
}
.hero p.lead {
  font-size: 19px;
  color: var(--taupe);
  line-height: 1.55;
  margin-bottom: 44px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
  height: 600px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 30px 30px 60px rgba(122, 31, 43, 0.15);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo .placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 244, 237, 0.4);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  text-align: center;
  padding: 40px;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  pointer-events: none;
  z-index: 2;
}
.hero-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--cream);
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  max-width: 280px;
  z-index: 3;
}
.hero-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 42px; color: var(--maroon); line-height: 1; font-weight: 600; }
.hero-badge-label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe); margin-top: 8px; }

@media (max-width: 968px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding: 60px 24px 100px; min-height: auto; }
  .hero-visual { height: 400px; }
  .hero-badge { bottom: -20px; left: -10px; padding: 18px 22px; max-width: 240px; }
  .hero-badge-num { font-size: 32px; }
}

/* ===== INNER PAGE HERO (smaller) ===== */
.page-hero {
  padding: 80px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.page-hero h1 .accent {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--maroon);
}
.page-hero p.lead {
  font-size: 18px;
  color: var(--taupe);
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 520px;
}
.page-hero-image {
  position: relative;
  height: 480px;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  overflow: hidden;
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  pointer-events: none;
}
.page-hero-image .placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 244, 237, 0.4);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  text-align: center;
  padding: 40px;
}
@media (max-width: 968px) {
  .page-hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 80px; }
  .page-hero-image { height: 320px; }
}

/* ===== CREDENTIAL STRIP ===== */
.credentials {
  background: var(--charcoal);
  padding: 32px 48px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cred-item {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cred-item::before { content: '◆'; color: var(--gold); font-size: 10px; }
@media (max-width: 768px) {
  .credentials { padding: 24px; gap: 16px; }
  .cred-item { font-size: 10px; letter-spacing: 0.15em; }
}

/* ===== SECTION DEFAULTS ===== */
section { padding: 120px 48px; }
.section-eyebrow {
  color: var(--maroon);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section-title .italic { font-family: 'Crimson Pro', serif; font-style: italic; font-weight: 400; color: var(--maroon); }
.section-intro {
  font-size: 18px;
  color: var(--taupe);
  line-height: 1.55;
  max-width: 600px;
}
@media (max-width: 768px) {
  section { padding: 80px 24px; }
}

/* ===== SERVICES GRID (homepage) ===== */
.services-section {
  background: var(--cream);
  position: relative;
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.service-card {
  background: var(--cream);
  padding: 56px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { background: var(--cream-dark); }
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  font-style: italic;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.service-desc {
  color: var(--taupe);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.service-link {
  color: var(--maroon);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 18px; }
.service-link::after { content: '→'; }

@media (max-width: 968px) {
  .services-header { grid-template-columns: 1fr; gap: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 28px; }
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  background: var(--charcoal);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  min-height: 600px;
}
.about-image-side {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.about-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-side .placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 244, 237, 0.3);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  text-align: center;
  padding: 40px;
}
.about-image-side::after {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  pointer-events: none;
}
.about-content-side {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content-side .section-eyebrow { color: var(--gold); }
.about-content-side .section-title { color: var(--cream); }
.about-content-side .section-intro { color: rgba(248, 244, 237, 0.75); }
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(248, 244, 237, 0.9);
  margin: 32px 0 40px;
  padding-left: 32px;
  border-left: 2px solid var(--gold);
}
.about-content-side .btn-secondary {
  border-color: var(--cream);
  color: var(--cream);
  align-self: flex-start;
}
.about-content-side .btn-secondary:hover { background: var(--cream); color: var(--charcoal); }

@media (max-width: 968px) {
  .about-preview { grid-template-columns: 1fr; }
  .about-content-side { padding: 60px 28px; }
  .about-image-side { min-height: 300px; }
}

/* ===== WHY CHOOSE ===== */
.why-choose { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}
.why-item { text-align: left; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 500;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-desc {
  color: var(--taupe);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== SERVICE AREA ===== */
.service-area {
  background: var(--cream-dark);
  position: relative;
}
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.area-list {
  margin-top: 40px;
  columns: 2;
  column-gap: 40px;
}
.area-list li {
  list-style: none;
  padding: 12px 0;
  font-size: 15px;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(122, 31, 43, 0.1);
  break-inside: avoid;
}
.area-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
  margin-right: 12px;
}
.map-placeholder {
  background: var(--cream);
  height: 480px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122, 31, 43, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 31, 43, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-label { position: relative; z-index: 2; text-align: center; color: var(--taupe); }
.map-pin {
  width: 50px;
  height: 50px;
  background: var(--maroon);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 16px;
  position: relative;
}
.map-pin::after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--cream);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.map-label-text { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--charcoal); }
.map-label-sub { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-top: 4px; }
@media (max-width: 968px) {
  .service-area-grid { grid-template-columns: 1fr; gap: 40px; }
  .area-list { columns: 1; }
  .map-placeholder { height: 320px; }
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonials {
  background: var(--cream);
  text-align: center;
}
.testimonial-card {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 60px;
  background: var(--cream-dark);
  position: relative;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: var(--gold);
  line-height: 0.5;
  position: absolute;
  top: 50px;
  left: 50px;
  opacity: 0.4;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  font-weight: 500;
}
.testimonial-author {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 600;
}
.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-note {
  margin-top: 60px;
  color: var(--taupe);
  font-size: 14px;
  font-style: italic;
}
@media (max-width: 768px) {
  .testimonial-card { padding: 40px 28px; }
  .testimonial-text { font-size: 20px; }
  .quote-mark { font-size: 80px; top: 20px; left: 20px; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--maroon);
  color: var(--cream);
  text-align: center;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-eyebrow { color: var(--gold); }
.cta-banner .section-title { color: var(--cream); }
.cta-banner .italic { color: var(--gold); }
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.cta-banner .btn-primary {
  background: var(--cream);
  color: var(--maroon);
  border-color: var(--cream);
}
.cta-banner .btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.cta-banner .btn-secondary {
  border-color: var(--cream);
  color: var(--cream);
}
.cta-banner .btn-secondary:hover {
  background: var(--cream);
  color: var(--maroon);
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(248, 244, 237, 0.1);
}
.footer-brand .logo { color: var(--cream); }
.footer-brand .logo-mark { border-color: var(--gold); color: var(--gold); }
.footer-brand .logo-tag { color: rgba(248, 244, 237, 0.5); }
.footer-tag {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(248, 244, 237, 0.7);
  line-height: 1.5;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(248, 244, 237, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { font-size: 14px; color: rgba(248, 244, 237, 0.75); margin-bottom: 12px; line-height: 1.5; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(248, 244, 237, 0.5);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(248, 244, 237, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
@media (max-width: 968px) {
  footer { padding: 60px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 20px; }
}

/* ===== SERVICE PAGE - PROCESS STEPS ===== */
.process-section {
  background: var(--cream);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
}
.process-step {
  position: relative;
}
.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  opacity: 0.5;
}
.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
.process-step p {
  color: var(--taupe);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 968px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 568px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ===== SERVICE PAGE - DOCS LIST ===== */
.docs-section { background: var(--cream-dark); }
.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.docs-list { columns: 2; column-gap: 40px; }
.docs-list li {
  list-style: none;
  padding: 14px 0;
  font-size: 15px;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(122, 31, 43, 0.1);
  break-inside: avoid;
}
.docs-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
  margin-right: 12px;
}
@media (max-width: 968px) {
  .docs-grid { grid-template-columns: 1fr; gap: 40px; }
  .docs-list { columns: 1; }
}

/* ===== PRICING SECTION ===== */
.pricing-section { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.pricing-card {
  background: var(--cream-dark);
  padding: 48px 36px;
  position: relative;
  border-top: 3px solid var(--gold);
}
.pricing-card.featured {
  background: var(--charcoal);
  color: var(--cream);
  border-top-color: var(--gold);
  transform: translateY(-20px);
}
.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-amount { color: var(--cream); }
.pricing-card.featured .pricing-list li { color: rgba(248, 244, 237, 0.85); border-color: rgba(248, 244, 237, 0.1); }
.pricing-card.featured .pricing-perfect { color: var(--gold); }
.pricing-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.pricing-card.featured .pricing-tag { color: var(--gold); }
.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-amount-note { font-size: 12px; color: var(--taupe); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 32px; }
.pricing-card.featured .pricing-amount-note { color: rgba(248, 244, 237, 0.5); }
.pricing-list {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(122, 31, 43, 0.1);
  font-size: 14px;
  color: var(--charcoal);
}
.pricing-list li::before {
  content: '✓';
  color: var(--gold-dark);
  margin-right: 10px;
  font-weight: bold;
}
.pricing-perfect {
  font-style: italic;
  font-size: 14px;
  color: var(--maroon);
  margin-top: 16px;
}
@media (max-width: 968px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card.featured { transform: none; }
}

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--cream-dark); }
.faq-list { max-width: 800px; margin: 60px auto 0; }
.faq-item {
  background: var(--cream);
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
  overflow: hidden;
}
.faq-question {
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
}
.faq-question::after {
  content: '+';
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  color: var(--maroon);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  color: var(--taupe);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 32px 24px;
}

/* ===== HIGHLIGHTED CALLOUT BOX ===== */
.callout {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--cream);
  padding: 60px;
  margin: 80px auto 0;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  pointer-events: none;
}
.callout .section-eyebrow { color: var(--gold); justify-content: flex-start; }
.callout h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--cream);
  position: relative;
}
.callout p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(248, 244, 237, 0.85);
  position: relative;
  max-width: 700px;
}
@media (max-width: 768px) {
  .callout { padding: 40px 28px; }
  .callout h3 { font-size: 24px; }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease-out forwards; opacity: 0; }

/* ===== LOGO IMAGE (using actual logo file) ===== */
.logo-image {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-image img {
  height: 64px;
  width: auto;
  display: block;
}
@media (max-width: 968px) {
  .logo-image img { height: 52px; }
}
@media (max-width: 568px) {
  .logo-image img { height: 44px; }
}

/* Footer logo larger */
.footer-brand .logo-image img {
  height: 90px;
  filter: brightness(1.1);
}

/* ===== TAGLINE BANNER SECTION ===== */
.tagline-banner {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.tagline-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== HERO with full body photo ===== */
.hero-photo-full {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-photo-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}


/* ===== REVIEWS GRID ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--cream-dark);
  padding: 40px 32px;
  border-left: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-card .stars {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--gold);
  letter-spacing: 3px;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}
.review-author {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 8px;
}
.review-service {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--maroon);
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 24px; }
  .review-card { padding: 32px 24px; }
  .review-text { font-size: 16px; }
}

/* ===== M BROXSON LEGAL - TEXT LOGO TREATMENT ===== */
.logo-text-only {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1.1;
}
.logo-text-only .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--maroon);
}
.logo-text-only .brand-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}
@media (max-width: 968px) {
  .logo-text-only .brand-name { font-size: 22px; }
  .logo-text-only .brand-tag { font-size: 9px; letter-spacing: 0.4em; }
}

/* Mobile responsive grids for Legal site sections */
@media (max-width: 968px) {
  /* Practice areas grid */
  section [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr 1fr !important;
  }
  /* Tools grid */
  section [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
  /* Onboarding 5-step */
  section [style*="grid-template-columns: repeat(5"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 568px) {
  section [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  section [style*="grid-template-columns: repeat(2"] { grid-template-columns: 1fr !important; }
  section [style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr 1fr !important; }
  section [style*="grid-template-columns: repeat(5"] { grid-template-columns: 1fr !important; }
}
