:root {
  --green-900: #07173a;
  --green-800: #0d285a;
  --green-100: #edf2fa;
  --wine-700: #9b6b16;
  --gold-600: #c99a3d;
  --gold-300: #ecd08a;
  --ink: #14213d;
  --muted: #647087;
  --line: #dce3ef;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --shadow: 0 18px 50px rgba(7, 23, 58, 0.13);
  --max-width: 1200px;
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

@media (max-width: 760px) {
  .article-audio {
    align-items: stretch;
    flex-direction: column;
  }

  .article-audio-controls {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
  }

  .article-audio-button {
    width: 100%;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--green-900);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(7, 23, 58, 0.08);
}

.nav-shell {
  width: min(100% - 32px, var(--max-width));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: block;
  min-width: 260px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #31405c;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--green-100);
  color: var(--green-900);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--green-900);
  cursor: pointer;
}

.icon-button svg,
.button svg,
.text-link svg,
.proof-item svg,
.card-icon svg,
.office-top svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 16px 30px rgba(7, 23, 58, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-800);
}

.button-secondary {
  background: #fff;
  color: var(--green-900);
  border-color: rgba(18, 55, 42, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold-600);
  box-shadow: 0 12px 26px rgba(29, 37, 35, 0.1);
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.header-action {
  margin-left: 2px;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 76px));
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(201, 154, 61, 0.1), transparent 28%),
    linear-gradient(120deg, #f8f9fc 0%, #eef2f8 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 62px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #9b6b16;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 5.7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: #45516a;
  font-size: 1.18rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.hero-proof span {
  position: relative;
  padding-left: 17px;
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-600);
  transform: translateY(-50%);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-photo-frame {
  position: absolute;
  inset: 0 30px 34px 0;
  overflow: hidden;
  border-radius: 2px 72px 2px 2px;
  box-shadow: 24px 28px 60px rgba(7, 23, 58, 0.18);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 52%;
  height: 56%;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(201, 154, 61, 0.72);
  border-radius: 2px;
}

.hero-visual-note {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 230px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 19px;
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 18px 38px rgba(7, 23, 58, 0.22);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-visual-note svg {
  width: 20px;
  color: var(--gold-300);
}

.section {
  padding: 88px 0;
}

.section-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.section-intro {
  padding: 34px 0 42px;
  background: var(--green-900);
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 2fr;
  gap: 36px;
  align-items: start;
}

.section-intro .section-kicker {
  color: #d7bd7a;
}

.section-intro h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-intro p:not(.section-kicker) {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
  line-height: 1.65;
}

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

.section-heading h2,
.method-copy h2,
.guide-heading h2,
.team-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.method-copy p:not(.section-kicker),
.guide-heading p,
.team-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.practice-card,
.step-card,
.office-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(29, 37, 35, 0.06);
}

.practice-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--green-100);
  color: var(--green-900);
}

.practice-card h3,
.step-card h3,
.office-card h3 {
  margin: 22px 0 12px;
  color: var(--green-900);
  font-size: 1.25rem;
  line-height: 1.22;
}

.practice-card p,
.step-card p,
.office-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--wine-700);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green-900);
}

.section-method {
  background: var(--surface-alt);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 42px;
  align-items: start;
}

.method-copy {
  position: sticky;
  top: 110px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  min-height: 210px;
  padding: 24px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  border-radius: 6px;
  background: var(--wine-700);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
}

.guide-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 44px;
}

.guide-heading {
  max-width: none;
  margin-bottom: 0;
}

.guide-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--green-900);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

summary svg {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
  transition: transform 180ms ease;
}

details[open] summary svg {
  transform: rotate(180deg);
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.68;
}

.section-team {
  padding: 76px 0;
  background: linear-gradient(135deg, var(--green-900), #225640);
  color: #fff;
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.team-copy h2 {
  color: #fff;
}

.section-team .section-kicker {
  color: #d7bd7a;
}

.team-panel {
  border-left: 3px solid var(--gold-600);
  padding: 24px 0 24px 28px;
}

.team-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.office-story {
  padding: 96px 0;
  overflow: hidden;
  background: var(--green-900);
  color: #fff;
}

.office-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.65fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}

.office-story-copy .section-kicker {
  color: var(--gold-300);
}

.office-story-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.office-story-copy > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.office-story-copy .text-link {
  color: var(--gold-300);
}

.office-gallery {
  height: 590px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.office-gallery figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #0d285a;
}

.office-gallery .gallery-main {
  grid-row: 1 / span 2;
  border-radius: 58px 2px 2px 2px;
}

.office-gallery figure:nth-child(2) {
  border-radius: 2px 48px 2px 2px;
}

.office-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.office-gallery figure:hover img {
  transform: scale(1.025);
}

.team-section {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(201, 154, 61, 0.12) 50%, transparent 50.1%),
    #fff;
}

.team-heading {
  max-width: 820px;
}

.professional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.professional-card {
  min-height: 520px;
  display: grid;
  grid-template-columns: 158px 1fr;
  gap: 26px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(7, 23, 58, 0.08);
}

.professional-photo {
  width: 158px;
  height: 220px;
  overflow: hidden;
  border-radius: 2px 40px 2px 2px;
  background: var(--green-900);
  box-shadow: 0 12px 28px rgba(7, 23, 58, 0.14);
}

.professional-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.professional-photo-rodrigo img {
  object-position: right center;
}

.professional-photo-marcus img {
  object-position: left center;
}

.professional-role {
  margin: 0 0 12px;
  color: #9b6b16;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.professional-copy h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  line-height: 1.08;
}

.professional-oab {
  margin: 8px 0 0;
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.professional-bio {
  margin-top: 18px;
}

.professional-bio p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.professional-bio p + p {
  margin-top: 13px;
}

.editorial-section {
  background: var(--surface-alt);
}

.editorial-header {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 52px;
  align-items: end;
}

.editorial-header .section-heading {
  margin-bottom: 0;
}

.editorial-header > p {
  margin: 0 0 3px;
  color: var(--muted);
  line-height: 1.7;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.article-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 154, 61, 0.52);
  box-shadow: 0 20px 48px rgba(7, 23, 58, 0.1);
}

.article-card-featured {
  background: var(--green-900);
  color: #fff;
  border-color: var(--green-900);
}

.article-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.article-card-top > svg {
  width: 22px;
  color: var(--gold-600);
}

.article-category {
  display: inline-flex;
  margin: 0;
  color: #9b6b16;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-card-featured .article-category,
.article-card-featured .article-card-top > svg,
.article-card-featured .text-link {
  color: var(--gold-300);
}

.article-card h3 {
  margin: 38px 0 16px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.12;
}

.article-card-featured h3 {
  color: #fff;
}

.article-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.article-card .article-date {
  margin: 28px 0 -24px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.article-card-featured .article-date {
  color: rgba(255, 255, 255, 0.62);
}

.article-card-featured > p {
  color: rgba(255, 255, 255, 0.72);
}

.all-articles-row {
  display: flex;
  justify-content: center;
  margin: 28px 0 10px;
}

.article-list-hero {
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 80% 10%, rgba(201, 154, 61, 0.13), transparent 30%),
    linear-gradient(120deg, #f8f9fc 0%, #eef2f8 100%);
}

.article-list-hero h1,
.article-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.2vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.article-list-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.article-list-section .article-grid {
  margin-top: 0;
}

.article-hero {
  padding: 74px 0 58px;
  background:
    radial-gradient(circle at 78% 8%, rgba(201, 154, 61, 0.13), transparent 28%),
    linear-gradient(120deg, #f8f9fc 0%, #eef2f8 100%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumbs a {
  color: var(--wine-700);
  font-weight: 750;
}

.article-deck {
  max-width: 780px;
  margin: 24px 0 0;
  color: #45516a;
  font-size: 1.18rem;
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-meta strong {
  color: var(--green-900);
}

.article-audio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(184, 146, 52, 0.35);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(7, 23, 58, 0.07);
}

.article-audio-heading,
.article-audio-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-audio-heading > svg {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--gold-500);
  flex: 0 0 auto;
}

.article-audio-heading div {
  display: grid;
  gap: 0.1rem;
}

.article-audio-heading strong {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.article-audio-heading span {
  color: var(--muted);
  font-size: 0.78rem;
}

.article-audio-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 0.85rem;
  border: 1px solid rgba(7, 23, 58, 0.2);
  border-radius: 10px;
  background: #fff;
  color: var(--green-900);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.article-audio-button:hover:not(:disabled),
.article-audio-button:focus-visible {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(184, 146, 52, 0.18);
}

.article-audio-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.article-audio-button svg {
  width: 1rem;
  height: 1rem;
}

.article-audio-primary {
  border-color: var(--green-900);
  background: var(--green-900);
  color: #fff;
}

.article-audio-speed {
  display: grid;
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.article-audio-speed select {
  min-height: 30px;
  border: 1px solid rgba(7, 23, 58, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--green-900);
  font: inherit;
  font-size: 0.78rem;
}

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

.article-audio-unavailable {
  justify-content: flex-start;
  color: var(--muted);
}

.article-audio-unavailable p {
  margin: 0;
  font-size: 0.85rem;
}

.article-layout {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(230px, 1fr);
  gap: 72px;
  align-items: start;
}

.article-body {
  color: #25334d;
  font-size: 1.08rem;
  line-height: 1.82;
}

.article-body > p:first-child {
  font-size: 1.2rem;
  color: var(--green-900);
}

.article-body h2 {
  margin: 48px 0 16px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.16;
}

.article-body h3 {
  margin: 32px 0 12px;
  color: var(--green-900);
  font-size: 1.25rem;
}

.article-body p,
.article-body ul {
  margin: 0 0 20px;
}

.article-body li + li {
  margin-top: 9px;
}

.article-body a {
  color: #7c5510;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-highlight {
  margin: 34px 0;
  padding: 24px 26px;
  border-left: 4px solid var(--gold-600);
  background: #fff8e9;
  color: var(--green-900);
}

.article-highlight p:last-child {
  margin-bottom: 0;
}

.article-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  background: var(--green-900);
  color: #fff;
}

.article-sources {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.article-aside {
  position: sticky;
  top: 110px;
  padding: 26px;
  border: 1px solid rgba(201, 154, 61, 0.42);
  background: #fffaf0;
}

.article-aside h2 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.article-aside p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.article-aside .button {
  width: 100%;
  margin-top: 20px;
}

.article-disclaimer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

button.text-link {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.newsletter-panel {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 36px;
  border: 1px solid rgba(201, 154, 61, 0.42);
  background: #fffaf0;
}

.newsletter-label {
  margin: 0 0 8px;
  color: #9b6b16;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.newsletter-panel h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.newsletter-panel div > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
}

.button-gold {
  flex: 0 0 auto;
  background: var(--gold-600);
  color: var(--green-900);
  box-shadow: 0 14px 28px rgba(155, 107, 22, 0.18);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-300);
}

.article-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(82svh, 820px);
  padding: 46px;
  border: 0;
  border-radius: 2px 38px 2px 2px;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(7, 23, 58, 0.34);
}

.article-dialog::backdrop {
  background: rgba(7, 23, 58, 0.72);
  backdrop-filter: blur(5px);
}

.article-dialog h2 {
  max-width: 610px;
  margin: 14px 0 26px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green-900);
  cursor: pointer;
}

.dialog-close svg {
  width: 18px;
}

.dialog-content p {
  margin: 0 0 16px;
  color: #4e5a70;
  font-size: 1.03rem;
  line-height: 1.72;
}

.dialog-disclaimer {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.contact-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 44px;
  align-items: start;
}

.contact-copy p {
  max-width: 510px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.office-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.office-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.office-top svg {
  color: var(--gold-600);
}

.office-top h3 {
  margin: 0;
}

.office-card > a:not(.text-link) {
  margin-top: 16px;
  color: var(--green-900);
  font-size: 1.12rem;
  font-weight: 850;
}

.office-card .text-link {
  padding-top: 20px;
}

.site-footer {
  padding: 34px 0;
  background: #040e27;
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.footer-inner p {
  margin: 0;
  line-height: 1.55;
}

.footer-inner strong {
  color: #fff;
}

.footer-brand img {
  width: 210px;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 980px) {
  .nav-shell {
    gap: 14px;
  }

  .icon-button {
    display: grid;
    margin-left: auto;
  }

  .header-action {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .hero {
    min-height: calc(100svh - 110px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy-column {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: 3.1rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-proof,
  .practice-grid,
  .office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .method-layout,
  .guide-layout,
  .team-layout,
  .contact-layout,
  .office-story-grid,
  .editorial-header,
  .article-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .article-layout {
    gap: 42px;
  }

  .article-aside {
    position: static;
  }

  .professional-card {
    grid-template-columns: 118px 1fr;
  }

  .professional-photo {
    width: 118px;
    height: 172px;
  }

  .method-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    width: min(100% - 24px, var(--max-width));
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 200px;
  }

  .nav-links {
    top: 68px;
  }

  .hero {
    min-height: calc(100svh - 92px);
  }

  .hero-inner {
    width: min(100% - 24px, var(--max-width));
    padding: 42px 0 30px;
    gap: 34px;
  }

  .hero h1 {
    font-size: 2.38rem;
    line-height: 1.04;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 10px 18px;
    margin-top: 28px;
  }

  .practice-grid,
  .steps,
  .office-grid,
  .professional-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 490px;
  }

  .hero-photo-frame {
    inset: 0 16px 22px 0;
    border-radius: 2px 48px 2px 2px;
  }

  .hero-visual-note {
    bottom: 46px;
    width: 210px;
  }

  .office-story {
    padding: 64px 0;
  }

  .office-gallery {
    height: 540px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.25fr 0.75fr;
  }

  .office-gallery .gallery-main {
    grid-row: auto;
    grid-column: 1 / span 2;
    border-radius: 42px 2px 2px 2px;
  }

  .professional-card {
    min-height: 0;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    padding: 24px;
  }

  .professional-photo {
    width: 92px;
    height: 136px;
    border-radius: 2px 25px 2px 2px;
  }

  .professional-copy h3 {
    font-size: 1.55rem;
  }

  .article-card {
    min-height: 0;
  }

  .article-list-hero,
  .article-hero {
    padding: 54px 0 44px;
  }

  .article-list-hero h1,
  .article-hero h1 {
    font-size: 2.35rem;
  }

  .article-deck {
    font-size: 1.03rem;
  }

  .article-layout {
    width: min(100% - 24px, 1120px);
    padding: 52px 0 68px;
  }

  .article-body {
    font-size: 1rem;
    line-height: 1.75;
  }

  .article-body > p:first-child {
    font-size: 1.08rem;
  }

  .article-body h2 {
    font-size: 1.72rem;
  }

  .newsletter-panel {
    display: grid;
    padding: 26px;
  }

  .article-dialog {
    padding: 42px 24px 28px;
  }

  .section {
    padding: 62px 0;
  }

  .section-intro {
    padding: 30px 0 34px;
  }

  .section-inner {
    width: min(100% - 24px, var(--max-width));
  }

  .section-heading h2,
  .method-copy h2,
  .guide-heading h2,
  .team-copy h2,
  .contact-copy h2,
  .section-intro h2 {
    font-size: 2rem;
  }

  .practice-card {
    min-height: auto;
    padding: 22px;
  }

  .step-card,
  .office-card {
    min-height: auto;
  }

  summary {
    min-height: 68px;
    padding: 16px;
  }

  details p {
    padding: 0 16px 18px;
  }

  .team-panel {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 3px solid var(--gold-600);
  }
}
