:root {
  --orange: #c45a20;
  --orange-dark: #8b3a1a;
  --orange-hover: #a84a18;
  --tan: #d4b896;
  --cream: #f5f0e8;
  --red-cta: #c0392b;
  --green-cta: #2e8b3a;
  --link: #0066cc;
  --text: #333;
  --text-muted: #555;
  --white: #fff;
  --max: 72rem;
  --header-h: auto;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

body {
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); }
a:hover { color: var(--orange); }

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--orange-dark);
  color: var(--white);
}

/* Header */
.site-header {
  border-bottom: 3px solid var(--orange);
}

.header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.logo-link:hover { color: inherit; }

.logo-link img {
  width: 120px;
  height: auto;
}

.firm-name {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.offices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  font-size: 0.9rem;
}

.office-label {
  font-weight: 700;
  color: var(--text);
  display: block;
}

.office-phone {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
.office-phone:hover { color: var(--orange-hover); }

/* Navigation */
.site-nav {
  background: var(--orange-dark);
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 0.5rem;
}

.site-nav a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.15s;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--tan);
  color: var(--text);
}

/* Main content */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.hero-headline {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.bilingual-block {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.bilingual-block strong,
.bilingual-block .contact-link {
  color: var(--link);
  font-weight: 700;
}

.section-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.75rem;
  color: var(--orange-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--tan);
}

.subsection-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
  color: var(--orange);
  margin: 2rem 0 0.75rem;
}

/* Video embed */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Book promo */
.book-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
  padding: 2rem;
  background: var(--cream);
  border-radius: 4px;
}

.book-promo-text {
  text-align: center;
}

.book-promo-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.book-promo-text .author {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.book-promo img {
  max-width: 280px;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.btn:hover { transform: translateY(-1px); }

.btn-red {
  background: var(--red-cta);
  color: var(--white);
}
.btn-red:hover { background: #a93226; color: var(--white); }

.btn-green {
  background: var(--green-cta);
  color: var(--white);
}
.btn-green:hover { background: #247030; color: var(--white); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: var(--orange-hover); color: var(--white); }

/* Floating study guide CTA */
.study-guide-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Testimonials */
.testimonial-card {
  background: var(--cream);
  border-left: 4px solid var(--orange);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  border-radius: 0 4px 4px 0;
}

.testimonial-card h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--orange-dark);
  margin-bottom: 0.5rem;
}

.testimonial-card .meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.testimonial-card .story,
.testimonial-card .result {
  margin-bottom: 0.5rem;
}

.testimonial-card .result {
  font-weight: 600;
  color: var(--green-cta);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.testimonial-grid .testimonial-card {
  margin-bottom: 0;
}

/* Services */
.service-block {
  margin-bottom: 2.5rem;
}

.service-block p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.service-block ul {
  margin: 0.75rem 0 0.75rem 1.5rem;
  color: var(--text-muted);
}

.service-block li { margin-bottom: 0.35rem; }

.consult-rate {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-weight: 700;
  margin: 0.75rem 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin: 1.5rem 0;
}

.about-grid img {
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin: 2rem 0;
}

.badge-row img {
  max-height: 100px;
  width: auto;
}

.google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  border: 1px solid var(--tan);
}
.google-reviews:hover { border-color: var(--orange); color: var(--orange); }

.stars { color: #f4b400; letter-spacing: 2px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.contact-card {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 4px;
  border-top: 4px solid var(--orange);
}

.contact-card h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--orange-dark);
  margin-bottom: 0.75rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 480px;
  padding: 0.65rem 0.85rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--orange);
  border-color: var(--orange);
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Social embeds */
.embed-section {
  margin: 2rem 0;
}

.embed-section iframe,
.embed-section blockquote {
  max-width: 100%;
}

.juicer-wrap {
  min-height: 400px;
  margin: 2rem 0;
}

/* Footer */
.site-footer {
  background: var(--orange-dark);
  color: var(--white);
  padding: 2rem 1.25rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-inner a {
  color: var(--tan);
  text-decoration: none;
}
.footer-inner a:hover { color: var(--white); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-disclaimer {
  max-width: var(--max);
  margin: 0 auto 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-disclaimer-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
  color: var(--tan);
}

.footer-disclaimer-lang {
  margin-bottom: 1.25rem;
}

.footer-disclaimer-lang:last-child {
  margin-bottom: 0;
}

.footer-disclaimer-lang h3 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--tan);
  margin-bottom: 0.65rem;
}

.footer-disclaimer-lang p {
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 0.65rem;
  opacity: 0.92;
}

/* Disclaimer page */
.legal-content h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.25rem;
  color: var(--orange-dark);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .header-top { justify-content: center; text-align: center; }
  .logo-link { flex-direction: column; }
  .offices { justify-content: center; }
  .site-nav ul { justify-content: center; }
  .book-promo,
  .about-grid { grid-template-columns: 1fr; }
  .study-guide-float {
    bottom: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    text-align: center;
  }
  .study-guide-float .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
