/*
Theme Name: Solon Law
Theme URI: https://solonlaw.com
Author: Custom
Description: Solon Law custom theme
Version: 7.0.0
Text Domain: solon-law
*/

/* ── FONTS ── */
@font-face {
  font-family: 'Caslon';
  src: url('assets/fonts/ACaslonPro-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Clother';
  src: url('assets/fonts/Clother.woff2') format('woff2'),
       url('assets/fonts/Clother.woff')  format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ── TOKENS ── */
:root {
  --navy:        #0b0052;
  --hero-bg:     #100142;
  --header-bg:   #efecff;
  --about-bg:    #e3f4fb;
  --clients-bg:  #0c0052;
  --contact-bg:  #eeecfe;
  --footer-bg:   #efecff;
  --teal:        #29abe2;
  --white:       #ffffff;
  --text:        #413f56;
  --border:      #d0dde6;
  --muted:       #78719a;
  --f-caslon:    'Caslon', 'Big Caslon', Georgia, serif;
  --f-clothe:    'Clother', 'Helvetica Neue', Arial, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-clothe);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 52px; }

/* ── ADMIN BAR ── */
.admin-bar #site-header  { top: 32px; }
.admin-bar #hero         { margin-top: calc(35px + 32px); }
.admin-bar .page-hero    { margin-top: calc(68px + 32px); }

/* ─────────────────────────────────────────
   HEADER
   bg: #efecff lavender
   logo: from wp-content/uploads (hardcoded by client)
   nav: Clother 16px bold #264756
───────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--header-bg);
  padding: 14px 0;
  border-bottom: 1px solid rgba(16,0,71,.07);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 14px rgba(16,0,71,.13); }
#site-header .wrap { display: flex; align-items: center; justify-content: space-between; }

.site-logo { display: block; line-height: 0; }
.site-logo img { height: 50px; width: auto; }

#primary-nav ul { display: flex; gap: 40px; }
#primary-nav a {
  font-family: var(--f-clothe);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #264756;
  position: relative; padding-bottom: 3px;
}
#primary-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--teal); transition: width .25s;
}
#primary-nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all .3s; }

/* ─────────────────────────────────────────
   HERO
   bg: #100142 deep navy, full width
   sailboat PNG right side
   H1: Caslon 50px, aligned with logo via shared .wrap
───────────────────────────────────────── */
#hero {
  position: relative;
  height: 490px;
  background: var(--hero-bg);
  overflow: hidden;
  margin-top: 35px;
  display: flex;
  align-items: center;
}
.hero-img {
  position: absolute;
  top: 0; right: 0;
  height: 100%; width: auto;
}
#hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 420px; }

.hero-content h1 {
  font-family: var(--f-caslon);
  font-weight: 400;
  font-size: 50px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 28px;
}

/* Buttons — rounded per client adjustment */
.btn-outline {
  display: inline-block; padding: 11px 28px;
  font-family: var(--f-clothe);
  font-size: 14px; font-weight: bold;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 30px;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-navy {
  display: inline-block; padding: 11px 28px;
  font-family: var(--f-clothe);
  font-size: 14px; font-weight: bold;
  letter-spacing: .2em; text-transform: uppercase;
  background: var(--navy); color: var(--white);
  border-radius: 30px;
  transition: opacity .2s;
}
.btn-navy:hover { opacity: .82; }

/* ─────────────────────────────────────────
   SECTION LABELS  "WORD1  WORD2"
   — whole label has bottom border in teal
   — w1 navy, w2 teal, no individual borders
   — 16px bold, centered by default
   — .left = left-aligned (about section)
───────────────────────────────────────── */
.s-label {
  display: inline-block;         /* so border-bottom only spans the text */
  font-family: var(--f-clothe);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--teal);
  margin-bottom: 40px;
}
/* Centered: wrap in a div with text-align:center, or use flex on parent */
p.s-label { display: inline-block; }  /* <p> tags behave correctly */

.s-label .w1 { color: var(--navy); }
.s-label .w2 { color: var(--teal); }

/* No individual word underlines — only the label container has the border */
span.w1, span.w2 { border-bottom: none !important; }

/* On dark bg (clients section) */
.s-label.on-dark         { border-color: rgba(255,255,255,.4); }
.s-label.on-dark .w1     { color: #29abe2; }
.s-label.on-dark .w2     { color: rgba(255,255,255,.9); }

/* ─────────────────────────────────────────
   ABOUT
   bg: #e3f4fb light blue
───────────────────────────────────────── */
#about { background: var(--about-bg); padding: 68px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text p {
  font-size: 16px; line-height: 1.82;
  color: var(--text); margin-bottom: 12px;
}
.about-text p:last-of-type { margin-bottom: 24px; }
.about-photo img { width: 100%; height: 270px; object-fit: cover; object-position: center; }

/* ─────────────────────────────────────────
   SERVICES
   bg: white, centered, cards with teal border
───────────────────────────────────────── */
#services { background: var(--white); padding: 68px 0; }
section#services .wrap { text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 28px; }
.svc-card {
  border: 2px solid var(--teal);
  overflow: hidden; transition: box-shadow .2s, transform .2s;
  text-align: left;
}
.svc-card:hover { box-shadow: 0 6px 22px rgba(16,0,71,.1); transform: translateY(-3px); }
.svc-card-title {
  padding: 14px 12px;
  font-family: var(--f-clothe);
  font-size: 22.5px;
  color: var(--navy);
  text-align: center;
  border-bottom: 1px solid var(--border);
  line-height: 1.4; min-height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.svc-card img { width: 100%; height: 148px; object-fit: cover; display: block; }
.ctr { text-align: center; }

/* ─────────────────────────────────────────
   WHY US
   bg: solid #0485b2 + water image at bottom
   h2: Caslon 50px white, underlined teal
   checkmark: 60px, mix-blend-mode:screen
   text: 22.5px white
───────────────────────────────────────── */
#why-us {
  background: #0485b2;
  background-image: url(https://solonlaw.mystagingwebsite.com/wp-content/uploads/2026/05/water-pic.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  padding: 60px 0 100px;
  overflow: hidden;
}
section#why-us .wrap { text-align: center; }

#why-us h2 {
  font-family: var(--f-caslon);
  font-weight: 400;
  font-size: 50px;
  color: var(--white);
  text-align: center;
  display: inline-block;
  border-bottom: 1px solid var(--teal);
  margin-bottom: 48px;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; text-align: center; padding-bottom: 0;
}
.why-item .chk {
  width: 60px; height: 60px;
  margin: 0 auto 14px; display: block;
  mix-blend-mode: screen;
}
.why-item p {
  font-size: 22.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.95);
  max-width: 100%;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   CLIENTS
   bg: #0c0052 deep navy, 100px padding
   logos centered, margin-top 40px
───────────────────────────────────────── */
#clients { background: var(--clients-bg); padding: 100px 0; }
section#clients .wrap { text-align: center; }
.clients-row {
  display: flex; align-items: center;
  justify-content: center; gap: 68px;
  flex-wrap: wrap; margin-top: 40px;
}
.clients-row img { height: 32px; width: auto; object-fit: contain; opacity: .85; transition: opacity .2s; }
.clients-row img:hover { opacity: 1; }

/* ─────────────────────────────────────────
   CONTACT
   bg: #eeecfe lavender
   text: #0b0052 navy, 16px
   WPForms: rounded submit button
───────────────────────────────────────── */
#contact { background: var(--contact-bg); padding: 68px 0; }
.contact-grid { display: grid; grid-template-columns: 185px 1fr; gap: 68px; align-items: start; }
.contact-side p, .contact-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 20px;
}

/* WPForms */
.wpforms-container .wpforms-form .wpforms-field-label {
  font-family: var(--f-clothe) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--navy) !important;
  margin-bottom: 4px !important;
}
.wpforms-container .wpforms-form input[type=text],
.wpforms-container .wpforms-form input[type=email],
.wpforms-container .wpforms-form input[type=tel],
.wpforms-container .wpforms-form textarea {
  font-family: var(--f-clothe) !important;
  font-size: 16px !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 8px 10px !important;
  color: var(--navy) !important;
  background: var(--white) !important;
  width: 100% !important;
}
.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form textarea:focus {
  border-color: var(--teal) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(41,171,226,.1) !important;
}
.wpforms-field-name .wpforms-field-row {
  display: flex !important;
  gap: 0 !important;
}
.wpforms-container .wpforms-form .wpforms-submit {
  font-family: var(--f-clothe) !important;
  font-size: 16px !important;
  font-weight: bold !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 11px 28px !important;
  cursor: pointer !important;
  transition: opacity .2s !important;
}
.wpforms-container .wpforms-form .wpforms-submit:hover { opacity: .83 !important; }

/* ─────────────────────────────────────────
   FOOTER
   bg: #efecff lavender
───────────────────────────────────────── */
#site-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(16,0,71,.08);
  padding: 20px 0;
}
.footer-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11px; color: var(--muted); }
.footer-links { display: flex; align-items: center; gap: 6px; font-size: 11px; }
.footer-links a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.footer-links a:hover { color: var(--navy); }
.footer-links .sep { color: var(--muted); }
.footer-logo img { height: 40px; width: auto; }

/* ─────────────────────────────────────────
   INNER PAGES  (Services, About, etc.)
   page-hero: same navy bg as main hero
───────────────────────────────────────── */
.page-hero {
  background: var(--hero-bg);
  padding: 96px 0 52px;
  margin-top: 68px;
  text-align: center;
}
.admin-bar .page-hero { margin-top: calc(68px + 32px); }
.page-hero h1 {
  font-family: var(--f-caslon);
  font-weight: 400; font-size: 50px;
  color: var(--white);
}

/* Page content area */
.page-content { padding: 68px 0; }
.page-content .wrap { max-width: 860px; }
.page-content p { font-size: 16px; line-height: 1.82; color: var(--text); margin-bottom: 16px; }
.page-content h2 { font-family: var(--f-caslon); font-size: 32px; color: var(--navy); margin-bottom: 16px; margin-top: 32px; }
.page-content h3 { font-family: var(--f-clothe); font-size: 20px; font-weight: bold; color: var(--navy); margin-bottom: 12px; margin-top: 24px; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  #hero { height: auto; min-height: 420px; }
  .hero-img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
  .hero-content h1 { font-size: 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-row { gap: 28px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  #primary-nav {
    display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 998;
    background: var(--header-bg); padding: 18px; border-bottom: 1px solid var(--border);
  }
  .admin-bar #primary-nav { top: calc(68px + 32px); }
  #primary-nav.open { display: block; }
  #primary-nav ul { flex-direction: column; gap: 14px; }
  .menu-toggle { display: flex; }
}

/* ─────────────────────────────────────────
   LEGAL PAGES  (Privacy Policy, Terms)
───────────────────────────────────────── */
.legal-hero {
  background: var(--hero-bg);
  padding: 80px 0 56px;
  margin-top: 35px;
}
.admin-bar .legal-hero { margin-top: calc(35px + 32px); }

.legal-eyebrow {
  font-family: var(--f-clothe);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.legal-hero h1 {
  font-family: var(--f-caslon);
  font-weight: 400;
  font-size: 48px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.legal-date {
  font-family: var(--f-clothe);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-style: italic;
}
.legal-body { background: var(--white); padding: 72px 0 96px; }
.legal-content { max-width: 780px; }

.legal-overview {
  background: var(--about-bg);
  border-left: 3px solid var(--teal);
  padding: 28px 32px;
  margin-bottom: 52px;
}
.legal-overview p, .legal-overview li {
  font-family: var(--f-clothe); font-size: 15px;
  line-height: 1.8; color: var(--navy);
}
.legal-overview ul { list-style: disc; padding-left: 20px; margin: 14px 0; }
.legal-overview ul li { margin-bottom: 6px; }
.legal-overview a { color: var(--teal); text-decoration: underline; }

.legal-section { margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.legal-section:last-of-type { border-bottom: none; }
.legal-section h2 {
  font-family: var(--f-caslon); font-weight: 400;
  font-size: 26px; color: var(--navy);
  margin-bottom: 18px; line-height: 1.25;
}
.legal-section p {
  font-family: var(--f-clothe); font-size: 15px;
  line-height: 1.82; color: var(--text); margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: disc; padding-left: 22px; margin: 14px 0 18px; }
.legal-section ul li {
  font-family: var(--f-clothe); font-size: 15px;
  line-height: 1.75; color: var(--text); margin-bottom: 8px;
}
.legal-section a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: var(--navy); }

.legal-contact {
  margin-top: 52px; padding: 36px 40px;
  background: var(--header-bg); border-radius: 4px;
}
.legal-contact h2 {
  font-family: var(--f-caslon); font-weight: 400;
  font-size: 26px; color: var(--navy); margin-bottom: 14px;
}
.legal-contact > p {
  font-family: var(--f-clothe); font-size: 15px;
  color: var(--text); margin-bottom: 20px; line-height: 1.7;
}
.legal-contact-block { border-left: 3px solid var(--teal); padding-left: 20px; }
.legal-contact-block p {
  font-family: var(--f-clothe); font-size: 15px;
  line-height: 1.7; color: var(--navy); margin-bottom: 4px;
}
.legal-contact-block a { color: var(--teal); text-decoration: underline; }
.legal-contact-block a:hover { color: var(--navy); }

@media (max-width: 600px) {
  .legal-hero h1 { font-size: 32px; }
  .legal-hero { padding: 60px 0 40px; }
  .legal-contact { padding: 24px 20px; }
  .legal-overview { padding: 20px; }
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */

/* ORIGIN — navy, no hero, starts right after header */
#about-origin {
  background: var(--clients-bg);
  padding: 72px 0 80px;
  margin-top: 35px;
}
.admin-bar #about-origin { margin-top: calc(35px + 32px); }

.about-label-wrap {
  text-align: center;
  margin-bottom: 52px;
}
#about-origin .s-label,
#about-team .s-label {
  display: inline-block;
  justify-content: unset;
}
#about-origin .s-label         { border-color: var(--teal); }
#about-origin .s-label .w1     { color: var(--white); }
#about-origin .s-label .w2     { color: #29abe2; }

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.origin-text p {
  font-family: var(--f-clothe);
  font-size: 15px;
  line-height: 1.82;
  color: rgba(255,255,255,.88);
  margin-bottom: 16px;
}
.origin-text p:last-child { margin-bottom: 0; }
.origin-text strong { color: var(--white); }
.origin-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* TEAM — light blue */
#about-team {
  background: var(--about-bg);
  padding: 72px 0 80px;
}
.team-member {
  margin-bottom: 64px;
}
.team-member:last-child { margin-bottom: 0; }

/* Top row: fixed-width photo + right col with name/title/bio */
.team-top {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.team-photo img {
  width: 200px;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.team-name {
  font-family: var(--f-clothe);
  font-weight: bold;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-title {
  font-family: var(--f-clothe);
  font-weight: 400;
  font-size: 22px;
  color: #29abe2;
  font-style: italic;
  margin-bottom: 16px;
}
p.team-title em {
  color: #29abe2 !important;
  font-size: 28px;
  font-weight: 400 !important;
  line-height: 28px;
}
.team-bio-right p {
  font-family: var(--f-clothe);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}
.team-bio-right p:last-child { margin-bottom: 0; }

/* Full-width continuation below top grid */
.team-full {
  margin-top: 20px;
}
.team-full p {
  font-family: var(--f-clothe);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 14px;
}

/* Education / Admissions — 2 cols, NO border */
.team-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.cred-label {
  font-family: var(--f-clothe);
  font-size: 13px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 8px;
}
.team-credentials ul { list-style: none; padding: 0; }
.team-credentials ul li {
  font-family: var(--f-clothe);
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
}
.team-credentials ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* REG A — white */
#about-rega {
  background: var(--white);
  padding: 72px 0 80px;
}
.rega-heading {
  font-family: var(--f-clothe);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  color: #0485b2 !important;
  margin-bottom: 24px;
}
#about-rega > .wrap > p {
  font-family: var(--f-clothe);
  font-size: 15px;
  line-height: 1.82;
  color: var(--text);
  margin-bottom: 18px;
}
#about-rega > .wrap > p:last-child { margin-bottom: 0; }

/* Industries box — narrower than content, teal border */
.rega-box {
  border: 1.5px solid var(--teal);
  padding: 28px 36px;
  margin: 0 auto 28px;
  max-width: 580px;
}
.rega-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.rega-cols ul { list-style: none; padding: 0; }
.rega-cols ul li {
  font-family: var(--f-clothe);
  font-size: 14px;
  font-weight: bold;
  color: #0b0052;
  line-height: 1.65;
  padding-left: 14px;
  position: relative;
  margin-bottom: 10px;
}
.rega-cols ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* BOTTOM IMAGE — pic.png has gradient baked in
   700px, background-position bottom = gradient shows at top
   NO ::before overlay */
#about-bottom-image {
  width: 100%;
  height: 700px;
  background-image: url(https://solonlaw.mystagingwebsite.com/wp-content/uploads/2026/05/pic.png);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

/* ABOUT RESPONSIVE */
@media (max-width: 900px) {
  .origin-grid        { grid-template-columns: 1fr; gap: 32px; }
  .origin-image img   { height: 260px; }
  .team-top           { grid-template-columns: 160px 1fr; gap: 24px; }
  .team-credentials   { grid-template-columns: 1fr; }
  .rega-box           { max-width: 100%; }
  .rega-cols          { grid-template-columns: 1fr; }
  .rega-heading       { font-size: 22px; }
  #about-bottom-image { height: 400px; }
}
@media (max-width: 600px) {
  .team-top           { grid-template-columns: 1fr; }
  .team-photo img     { width: 160px; }
  #about-origin       { padding: 56px 0 60px; }
  #about-bottom-image { height: 280px; }
}


/* ── LEGAL PAGES ── */
/* ─────────────────────────────────────────
   LEGAL PAGES  (Privacy Policy, Terms)
───────────────────────────────────────── */
.legal-hero {
  background: var(--hero-bg);
  padding: 80px 0 56px;
  margin-top: 35px;
}
.admin-bar .legal-hero { margin-top: calc(35px + 32px); }

.legal-eyebrow {
  font-family: var(--f-clothe);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.legal-hero h1 {
  font-family: var(--f-caslon);
  font-weight: 400;
  font-size: 48px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.legal-date {
  font-family: var(--f-clothe);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-style: italic;
}
.legal-body { background: var(--white); padding: 72px 0 96px; }
.legal-content { max-width: 780px; }

.legal-overview {
  background: var(--about-bg);
  border-left: 3px solid var(--teal);
  padding: 28px 32px;
  margin-bottom: 52px;
}
.legal-overview p, .legal-overview li {
  font-family: var(--f-clothe); font-size: 15px;
  line-height: 1.8; color: var(--navy);
}
.legal-overview ul { list-style: disc; padding-left: 20px; margin: 14px 0; }
.legal-overview ul li { margin-bottom: 6px; }
.legal-overview a { color: var(--teal); text-decoration: underline; }

.legal-section { margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.legal-section:last-of-type { border-bottom: none; }
.legal-section h2 {
  font-family: var(--f-caslon); font-weight: 400;
  font-size: 26px; color: var(--navy);
  margin-bottom: 18px; line-height: 1.25;
}
.legal-section p {
  font-family: var(--f-clothe); font-size: 15px;
  line-height: 1.82; color: var(--text); margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: disc; padding-left: 22px; margin: 14px 0 18px; }
.legal-section ul li {
  font-family: var(--f-clothe); font-size: 15px;
  line-height: 1.75; color: var(--text); margin-bottom: 8px;
}
.legal-section a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: var(--navy); }

.legal-contact {
  margin-top: 52px; padding: 36px 40px;
  background: var(--header-bg); border-radius: 4px;
}
.legal-contact h2 {
  font-family: var(--f-caslon); font-weight: 400;
  font-size: 26px; color: var(--navy); margin-bottom: 14px;
}
.legal-contact > p {
  font-family: var(--f-clothe); font-size: 15px;
  color: var(--text); margin-bottom: 20px; line-height: 1.7;
}
.legal-contact-block { border-left: 3px solid var(--teal); padding-left: 20px; }
.legal-contact-block p {
  font-family: var(--f-clothe); font-size: 15px;
  line-height: 1.7; color: var(--navy); margin-bottom: 4px;
}
.legal-contact-block a { color: var(--teal); text-decoration: underline; }
.legal-contact-block a:hover { color: var(--navy); }

@media (max-width: 600px) {
  .legal-hero h1 { font-size: 32px; }
  .legal-hero { padding: 60px 0 40px; }
  .legal-contact { padding: 24px 20px; }
  .legal-overview { padding: 20px; }
}
/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */

#services-page {
  background: var(--white);
  padding-top: 35px;
  padding-bottom: 0;
}
.admin-bar #services-page { padding-top: calc(35px + 32px); }

/* Label centered — OUR teal, SERVICES navy */
.svc-label-wrap {
  text-align: center;
  padding-top: 64px;
  margin-bottom: 44px;
}
#services-page .s-label {
  display: inline-block;
  justify-content: unset;
}
/* OUR = teal, SERVICES = navy — opposite of dark-bg sections */
#services-page .s-label .w1 { color: var(--teal); }
#services-page .s-label .w2 { color: var(--navy); }
#services-page .s-label      { border-color: var(--navy); }

/* Tagline — Caslon, teal #3984a1, centered, large */
.svc-tagline {
  font-family: var(--f-caslon);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  color: #3984a1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

/* 3 Cards — white bg, above city image */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Card — border #6498b0 (medium blue from mockup), white bg */
.svc-card-full {
  border: 1.5px solid #6498b0;
  padding: 32px 28px 40px;
  background: var(--white);
}

/* Card title — Caslon, navy #0e0345, centered, NO separator line */
.svc-card-full h2 {
  font-family: var(--f-caslon);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.25;
  color: #0e0345;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 0;
  border-bottom: none;
}

/* List */
.svc-card-full ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-card-full ul li {
  font-family: var(--f-clothe);
  font-size: 15px;
  color: #0e0345;
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
  margin-bottom: 14px;
}
.svc-card-full ul li:last-child { margin-bottom: 0; }
.svc-card-full ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #55a5c8;   /* teal bullet from mockup */
  font-size: 16px;
}

/* City image — full-width, overlaps bottom half of cards
   Cards end ~54% of page height, image starts ~55% */
.svc-city-image {
  width: 100%;
  height: 520px;
  background-image: url(https://solonlaw.mystagingwebsite.com/wp-content/uploads/2026/05/Layer-2-1.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  margin-top: -160px;   /* pulls up so image overlaps bottom of cards */
  position: relative;
  z-index: 1;
}

/* SERVICES PAGE RESPONSIVE */
@media (max-width: 900px) {
  .svc-cards      { grid-template-columns: 1fr; gap: 20px; }
  .svc-tagline    { font-size: 24px; }
  .svc-city-image { margin-top: 40px; height: 360px; }
}
@media (max-width: 600px) {
  .svc-tagline    { font-size: 20px; }
  .svc-city-image { height: 260px; }
  .svc-card-full  { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════
   DROPDOWN NAVIGATION
═══════════════════════════════════════════ */

#primary-nav li.has-dropdown { position: relative; }

/* Arrow — más grande */
.nav-arrow {
  font-size: 14px;
  margin-left: 6px;
  display: inline-block;
  transition: transform .2s;
  vertical-align: middle;
}
#primary-nav li.has-dropdown:hover .nav-arrow,
#primary-nav li.has-dropdown.open  .nav-arrow { transform: rotate(180deg); }

/* Dropdown panel — top:100% sin gap */
#primary-nav ul.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: var(--header-bg);
  border-top: 2px solid var(--teal);
  box-shadow: 0 8px 24px rgba(16,0,71,.12);
  padding-top: 14px;
  padding-bottom: 8px;
  z-index: 1000;
  list-style: none;
}

/* Puente invisible — cubre el espacio entre link y panel */
#primary-nav li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 14px;
}

#primary-nav li.has-dropdown:hover > ul.dropdown { display: block; }

#primary-nav ul.dropdown li { display: block; }
#primary-nav ul.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--f-clothe);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
#primary-nav ul.dropdown li a:hover { background: rgba(41,171,226,.08); color: var(--teal); }
#primary-nav ul.dropdown li a::after { display: none; }

@media (max-width: 600px) {
  #primary-nav ul.dropdown {
    position: static; transform: none; box-shadow: none; border-top: none;
    border-left: 2px solid var(--teal); background: transparent;
    padding: 4px 0 4px 12px; margin-top: 6px; display: none;
  }
  #primary-nav li.has-dropdown.open > ul.dropdown { display: block; }
  #primary-nav ul.dropdown li a { font-size: 11px; padding: 7px 8px; }
}