:root {
  --teal-950: #082d34;
  --teal-900: #0b3942;
  --teal-800: #104a54;
  --gold: #e4bd6e;
  --gold-dark: #b98d3f;
  --paper: #f7f3ea;
  --paper-2: #eee7d9;
  --white: #ffffff;
  --text: #17333a;
  --muted: #61757a;
  --shadow: 0 20px 50px rgba(8, 45, 52, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(11, 57, 66, 0.96);
  border-bottom: 1px solid rgba(228, 189, 110, 0.26);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 170px;
  height: auto;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  background: var(--gold);
  color: #142e34;
  box-shadow: 0 14px 28px rgba(228, 189, 110, 0.2);
}

.header-cta:hover,
.btn-primary:hover {
  background: #efc97c;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(228, 189, 110, 0.62);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(228, 189, 110, 0.1);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(228, 189, 110, 0.38);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
}

.section,
.hero,
.confidence,
.lawyer,
.final-cta {
  padding: clamp(72px, 8vw, 120px) clamp(18px, 5vw, 72px);
}

.section-dark {
  background: var(--teal-900);
  color: var(--white);
}

.section-light {
  background: var(--paper);
}

.section-muted {
  background: var(--paper-2);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--teal-900) url("assets/hero-legal-bg.svg") center right / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 57, 66, 0.62) 0%,
      rgba(11, 57, 66, 0.48) 45%,
      rgba(11, 57, 66, 0.32) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 920px;
  min-width: 0;
  width: 100%;
}

.hero h1,
.hero p,
.hero .eyebrow {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 950px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 4.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
}

.mobile-title {
  display: none;
}

.desktop-title,
.mobile-title {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: rgba(11, 57, 66, 0.72);
  border-radius: 8px;
  padding: 0.02em 0.12em;
}

h2 {
  color: var(--teal-900);
  font-size: clamp(2rem, 3.7vw, 3.8rem);
}

h3 {
  font-size: 1.16rem;
}

.hero__text {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
}

.section-heading--dark h2 {
  color: var(--white);
}

.areas-section {
  padding: clamp(34px, 5vw, 44px) clamp(18px, 5vw, 72px) clamp(56px, 7vw, 78px);
  background: var(--paper);
}

.areas-section .section-heading {
  max-width: 850px;
  margin-bottom: 10px;
  padding: 0;
}

.areas-section .section-heading::after {
  display: block;
  width: 168px;
  height: 2px;
  margin: 20px auto 12px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold-dark), transparent);
  content: "";
}

.areas-section .section-heading::before {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto -27px;
  background: var(--gold-dark);
  content: "";
  transform: rotate(45deg);
}

.areas-section .section-heading h2 {
  color: var(--teal-900);
  font-size: clamp(2.1rem, 3.6vw, 3.25rem);
  line-height: 1.1;
}

.practice-block {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 26px;
  padding: 0 clamp(22px, 4vw, 36px) 26px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(11, 57, 66, 0.08);
  box-shadow: 0 22px 55px rgba(8, 45, 52, 0.12);
}

.practice-block::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.practice-block--consumer {
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(246, 238, 220, 0.92)),
    #f7f1e3;
}

.practice-block--consumer::before {
  background:
    radial-gradient(circle at 86% 18%, rgba(228, 189, 110, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(228, 189, 110, 0.08), transparent 42%);
}

.practice-block--labor {
  background:
    linear-gradient(180deg, rgba(247, 250, 250, 0.98), rgba(230, 238, 240, 0.92)),
    #edf3f4;
}

.practice-block--labor::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(11, 57, 66, 0.11), transparent 30%),
    linear-gradient(135deg, rgba(228, 189, 110, 0.08), transparent 46%);
}

.practice-heading,
.issue-grid,
.practice-cta {
  position: relative;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.practice-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin: 0 calc(clamp(22px, 4vw, 36px) * -1) 28px;
  padding: 24px clamp(22px, 4vw, 38px);
  background:
    radial-gradient(circle at 88% 42%, rgba(228, 189, 110, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 32%),
    #0b3942;
  text-align: left;
}

.practice-heading h3 {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  transform: translateY(2px);
}

.practice-block--labor .practice-heading h3 {
  color: var(--gold);
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal-900);
  color: var(--gold);
  font-weight: 800;
}

.practice-heading .section-number {
  width: 64px;
  height: 64px;
  background: var(--teal-900);
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  border: 1px solid rgba(228, 189, 110, 0.48);
  box-shadow: inset 0 0 0 6px rgba(228, 189, 110, 0.08), 0 14px 28px rgba(0, 0, 0, 0.24);
}

.practice-block--labor .practice-heading .section-number {
  background: var(--teal-900);
  color: var(--gold);
}

.practice-heading .section-number svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.7;
}

.practice-kicker {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.heading-divider {
  width: 2px;
  height: 42px;
  background: var(--gold);
  opacity: 0.72;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.issue-card {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  min-height: 340px;
  padding: 30px 26px 26px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 42%),
    #fbf7ed;
  border: 1px solid rgba(185, 141, 63, 0.22);
  box-shadow: 0 16px 36px rgba(8, 45, 52, 0.1);
  color: var(--teal-900);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
}

.practice-block--labor .issue-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0) 42%),
    #f2f6f7;
  border-color: rgba(11, 57, 66, 0.13);
}

.issue-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(228, 189, 110, 0.13);
  color: var(--teal-900);
  line-height: 1;
}

.issue-icon svg {
  width: 54px;
  height: 54px;
  stroke: var(--teal-900);
  stroke-width: 1.55;
}

.practice-block--consumer .issue-icon svg {
  filter: drop-shadow(1px 1px 0 rgba(228, 189, 110, 0.7));
}

.practice-block--labor .issue-icon svg {
  filter: drop-shadow(1px 1px 0 rgba(228, 189, 110, 0.58));
}

.practice-block--labor .issue-icon {
  background: rgba(11, 57, 66, 0.07);
}

.issue-card h4 {
  margin: 0;
  color: var(--teal-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.08;
  text-align: center;
}

.issue-card h4::after {
  display: block;
  width: 54px;
  height: 1px;
  margin: 14px auto 18px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  content: "";
}

.issue-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.issue-card li {
  position: relative;
  padding-left: 24px;
  color: #24454c;
  font-size: 0.96rem;
  line-height: 1.35;
}

.issue-card li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--gold-dark);
  content: "✓";
  font-weight: 900;
}

.practice-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  min-width: 560px;
  padding: 15px 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #18c75b, #09a744);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-cta:hover {
  background: linear-gradient(180deg, #2ee070, #10b74e);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.center-cta--compact {
  margin-top: 18px;
}

.feature-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card,
.step-card {
  padding: 30px 26px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-card {
  border: 1px solid rgba(228, 189, 110, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.feature-card h3,
.feature-card p {
  color: var(--white);
}

.feature-card h3,
.step-card h3 {
  margin-top: 18px;
}

.feature-card p,
.step-card p,
.confidence p,
.lawyer p,
.final-cta p {
  color: inherit;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.icon-card {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: rgba(228, 189, 110, 0.14);
  color: var(--gold);
}

.card-icon svg {
  width: 52px;
  height: 52px;
  stroke: currentColor;
  stroke-width: 1.65;
}

.step-card .card-icon {
  background: rgba(228, 189, 110, 0.17);
  color: var(--teal-900);
}

.feature-card .card-icon {
  border: 1px solid rgba(228, 189, 110, 0.32);
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  background: var(--white);
}

.step-card p {
  color: var(--muted);
}

.confidence {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.confidence__text p {
  max-width: 520px;
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(11, 57, 66, 0.08);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 19px;
  left: 18px;
  color: var(--gold-dark);
  content: "✓";
  font-weight: 900;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

details {
  border-bottom: 1px solid rgba(11, 57, 66, 0.16);
  background: rgba(255, 255, 255, 0.42);
}

details:first-child {
  border-top: 1px solid rgba(11, 57, 66, 0.16);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  color: var(--teal-900);
  font-size: 1.05rem;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--gold-dark);
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
}

.lawyer {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.lawyer__photo {
  padding: 12px;
  border: 1px solid rgba(228, 189, 110, 0.5);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.lawyer__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.lawyer__content h2 {
  color: var(--white);
}

.lawyer__content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.lawyer__content .oab {
  margin: 14px 0 24px;
  color: var(--gold);
  font-weight: 800;
}

.lawyer__content .btn {
  margin-top: 12px;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  max-width: 680px;
  margin: 18px auto 30px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(180px, 0.7fr) minmax(260px, 1.2fr);
  gap: 34px;
  padding: 46px clamp(18px, 5vw, 72px);
  background: var(--teal-950);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer img {
  width: 190px;
  margin-bottom: 16px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer a {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25d366;
  color: #073d1a;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
  font-weight: 900;
}

.floating-whatsapp::before {
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 50%;
  background: #073d1a;
  content: "";
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--teal-950);
    border-bottom: 1px solid rgba(228, 189, 110, 0.28);
  }

  body.menu-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .confidence,
  .lawyer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .issue-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .issue-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 78px;
    padding: 12px 16px;
  }

  .brand img {
    width: 138px;
  }

  .nav-menu {
    top: 78px;
  }

  .section,
  .hero,
  .confidence,
  .lawyer,
  .final-cta {
    padding: 58px 18px;
  }

  .section-heading {
    max-width: 100%;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .areas-section .section-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.15;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }

  .hero__actions,
  .center-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

    .issue-grid,
    .feature-grid,
    .steps,
  .check-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .areas-section {
    padding: 46px 18px 58px;
  }

  .practice-block {
    padding: 0 16px 22px;
    border-radius: 14px;
  }

  .practice-heading {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin: 0 -16px 24px;
    padding: 26px 18px;
    text-align: center;
  }

  .heading-divider {
    width: 72px;
    height: 2px;
  }

  .issue-card {
    flex-basis: 100%;
    min-height: auto;
    padding: 28px 22px;
  }

  .whatsapp-cta {
    min-width: 0;
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 3.4rem);
    line-height: 1.08;
  }

  h2 {
    font-size: 1.78rem;
  }

}
