/* ── Page hero (interior) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  padding: 3rem 0 2.5rem;
  color: #fff;
}
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: #fff; text-decoration: none; }
.breadcrumb span { margin: 0 .4rem; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }

/* ── Interior two-column layout ──────────────────────────── */
.interior-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.interior-main h2 { margin: 0 0 1rem; }
.interior-main p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.75; }
.interior-main ul, .interior-main ol { margin-bottom: 1.5rem; margin-top: .25rem; }
.interior-main li { margin-bottom: .25rem; }

.content-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.content-list li {
  padding: .5rem 0 .5rem 1.25rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--text-light);
  font-size: .97rem;
}
.content-list li:last-child { border-bottom: none; }
.content-list li::before { content: '›'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.content-list a { color: var(--accent); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.check-list li {
  padding: .5rem 0 .5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--text-light);
  font-size: .97rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.callout-box {
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.callout-box p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: .5rem !important;
}
.callout-box cite { font-size: .85rem; color: var(--text-muted); font-style: normal; }

/* ── Sidebar ─────────────────────────────────────────────── */
.interior-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-cta {
  background: var(--primary-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: #fff;
}
.sidebar-cta h3 { color: #fff; font-size: 1.2rem; margin-bottom: .5rem; }
.sidebar-cta p { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 1.25rem; }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
  display: block;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; text-decoration: none; }

.sidebar-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-info h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .75rem;
  font-family: inherit;
}
.sidebar-info p { font-size: .9rem; color: var(--text-light); margin-bottom: .25rem; }
.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { display: block; padding: .5rem 0; font-size: .9rem; color: var(--accent); }
.sidebar-links a:hover { text-decoration: none; color: var(--primary); }

@media (min-width: 900px) {
  .interior-grid { grid-template-columns: 1fr 300px; }
}

/* ── Sidebar — call + practice areas (production style) ──── */
.sidebar-call {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-call-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .35rem;
}
.sidebar-call-label a {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.sidebar-call-label a:hover { text-decoration: none; color: #0a5fa3; }
.sidebar-call-sub {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.sidebar-call-sub a { color: var(--text-muted); text-decoration: underline; }
.sidebar-call-sub a:hover { color: var(--accent); }
.sidebar-consult-btn {
  display: block;
  width: 100%;
  background: var(--accent-light);
  color: var(--white);
  text-align: center;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: background .2s;
  text-decoration: none;
}
.sidebar-consult-btn:hover { background: var(--accent); color: var(--white); text-decoration: none; }

.sidebar-pa {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sidebar-pa-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  padding: .9rem 1.25rem .75rem;
  border-bottom: 1px solid var(--border);
  font-family: inherit;
  margin: 0;
}
.sidebar-pa-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-pa-list li { border-bottom: 1px solid var(--border); }
.sidebar-pa-list li:last-child { border-bottom: none; }
.sidebar-pa-list a {
  display: block;
  padding: .7rem 1.25rem;
  background: var(--primary);
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 600;
  transition: background .18s, color .18s;
  text-decoration: none;
}
.sidebar-pa-list a:hover {
  background: var(--primary-mid);
  color: #fff;
  text-decoration: none;
}

/* ── Google Reviews section ──────────────────────────────── */
.gr-section {
  background: #3c3c3c;
  padding: 2rem 0 1.5rem;
}
.gr-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}
.gr-summary {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.gr-store-icon { margin-bottom: .25rem; }
.gr-firm-name { font-weight: 700; font-size: 1rem; color: var(--text); margin: 0; }
.gr-score-row { display: flex; align-items: center; gap: .4rem; }
.gr-score { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.gr-stars { color: #f4b800; font-size: 1.1rem; }
.gr-count { font-size: .8rem; color: var(--text-muted); margin: 0; }
.gr-powered { font-size: .75rem; color: var(--text-muted); margin: .25rem 0 0; }
.gr-google { font-weight: 700; }
.gr-review-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #1a73e8;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .45rem .9rem;
  border-radius: 20px;
  margin-top: .5rem;
  text-decoration: none;
  transition: background .2s;
}
.gr-review-btn:hover { background: #1558b0; color: #fff; text-decoration: none; }
.gr-g-badge {
  background: #fff;
  color: #4285F4;
  font-weight: 900;
  font-size: .9rem;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.gr-carousel-area {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: 1;
  min-width: 0;
}
.gr-arrow {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gr-arrow:hover { background: rgba(255,255,255,.3); }
.gr-track-wrap { flex: 1; overflow: hidden; min-width: 0; }
.gr-track {
  display: flex;
  gap: .75rem;
  transition: transform .35s ease;
}
.gr-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  flex: 0 0 calc(100% - 0px);
  min-width: 0;
}
.gr-card-top {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .5rem;
}
.gr-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gr-reviewer { font-weight: 700; font-size: .88rem; color: var(--text); margin: 0; }
.gr-when { font-size: .75rem; color: var(--text-muted); margin: 0; }
.gr-g-logo { margin-left: auto; }
.gr-card-stars { color: #f4b800; font-size: .95rem; margin-bottom: .4rem; }
.gr-text { font-size: .82rem; color: var(--text-light); line-height: 1.55; margin: 0; font-style: italic; }

.gr-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}
.gr-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.gr-dot.active { background: #f4b800; }

@media (min-width: 900px) {
  .gr-wrap { flex-direction: row; align-items: flex-start; }
  .gr-summary { min-width: 200px; max-width: 220px; }
  .gr-card { flex: 0 0 calc((100% - 1.5rem) / 3); }
}

/* ── Mega footer ─────────────────────────────────────────── */
.footer-mega {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-mega-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-mega-list li { margin-bottom: .5rem; }
.footer-mega-list a { color: var(--accent); font-size: .95rem; }
.footer-mega-list a:hover { text-decoration: underline; }
@media (min-width: 768px) {
  .footer-mega-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Practice Areas hub ──────────────────────────────────── */
.pa-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.pa-hub-group { }
.pa-hub-heading {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--accent);
}
.pa-hub-list { list-style: none; padding: 0; margin: 0; }
.pa-hub-list li { border-bottom: 1px solid var(--border); }
.pa-hub-list li:last-child { border-bottom: none; }
.pa-hub-list a {
  display: block;
  padding: .5rem 0 .5rem .75rem;
  color: var(--accent);
  font-size: .95rem;
  position: relative;
}
.pa-hub-list a::before { content: '›'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.pa-hub-list a:hover { color: var(--primary); text-decoration: none; }
@media (min-width: 640px) { .pa-hub-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .pa-hub-grid { grid-template-columns: repeat(4, 1fr); } }

/* contact-left / contact-right for interior contact sections */
.contact-left input,
.contact-left textarea,
.contact-left select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  margin-bottom: .75rem;
  transition: border-color .2s;
}
.contact-left input:focus,
.contact-left textarea:focus { border-color: var(--accent); outline: none; }
.contact-left textarea { height: 130px; resize: vertical; }
.contact-right h3 { margin-bottom: 1rem; }
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
