:root {
  --navy: #0D1E3A;
  --navy-soft: #1A2D4C;
  --blue: #56657B;
  --gold: #BDBCBC;
  --paper: #F3F2F0;
  --paper-deep: #E6E4E1;
  --white: #FFFFFF;
  --ink: #0D1E3A;
  --muted: #626975;
  --line: rgba(13,30,58,.14);
  --shadow: 0 28px 90px rgba(13,30,58,.12);
  --shadow-soft: 0 18px 55px rgba(13,30,58,.07);
  --radius: 28px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid rgba(13,30,58,.72); outline-offset: 4px; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(850px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--navy); text-transform: uppercase;
  font-size: .75rem; font-weight: 800; letter-spacing: .18em;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); font-weight: 500; margin: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); line-height: .94; letter-spacing: -.055em; }
h2 { font-size: clamp(2.25rem, 5vw, 4.65rem); line-height: 1; letter-spacing: -.04em; }
h3 { font-size: 1.72rem; line-height: 1.15; }
h4 { font-size: 1.25rem; line-height: 1.25; }
p { margin: 0; }
.muted { color: var(--muted); }
.text-link {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 20px; color: var(--navy); font-weight: 800; font-size: .9rem;
}
.text-link svg { width: 20px; }
.skip-link {
  position: fixed; left: 18px; top: -80px; z-index: 100;
  background: var(--white); color: var(--navy); padding: 12px 16px;
  border-radius: 10px; box-shadow: var(--shadow-soft);
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243,242,240,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(13,30,58,.06); }
.nav { min-height: 104px; display: flex; align-items: center; justify-content: flex-start; gap: 30px; }






.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.brand-logo {
  display: block;
  width: 132px;
  height: 87px;
  object-fit: contain;
  object-position: center;
}
.footer-brand .brand-logo {
  width: 150px;
  height: 99px;
}

.nav-links { display: flex; align-items: center; gap: 25px; color: #4F5868; font-size: .88rem; font-weight: 700; margin-left: auto; }
.nav-links > a:not(.button) { position: relative; padding: 10px 0; }
.nav-links > a:not(.button)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 5px;
  height: 1px; background: var(--gold); transition: right .2s ease;
}
.nav-links > a:hover::after,
.nav-links > a[aria-current="page"]::after { right: 0; }
.nav-links > a[aria-current="page"] { color: var(--navy); }
.menu-toggle {
  display: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white); color: var(--navy);
  cursor: pointer; align-items: center; justify-content: center; position: relative;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; width: 18px; height: 1.5px; background: currentColor;
  position: absolute; transition: .2s ease;
}
.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(6px); }
.menu-toggle.active span { opacity: 0; }
.menu-toggle.active::before { transform: rotate(45deg); }
.menu-toggle.active::after { transform: rotate(-45deg); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 21px; border-radius: 999px;
  background: var(--navy); color: var(--white);
  border: 1px solid var(--navy); font-weight: 750; font-size: .9rem;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 14px 35px rgba(13,30,58,.17);
}
.button:hover { transform: translateY(-2px); background: var(--navy-soft); box-shadow: 0 18px 42px rgba(13,30,58,.22); }
.button.ghost { background: transparent; color: var(--navy); box-shadow: none; }
.button.ghost:hover { background: rgba(255,255,255,.62); }
.button.light { background: var(--white); color: var(--navy); border-color: var(--white); }
.button.light-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); box-shadow: none; }

.hero {
  position: relative; overflow: hidden; min-height: calc(100vh - 86px);
  display: grid; align-items: center; padding: 72px 0 88px;
}
.hero::before {
  content: ""; position: absolute; width: 650px; height: 650px;
  border: 1px solid rgba(13,30,58,.07); border-radius: 50%;
  right: -250px; top: -220px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 85% 25%, rgba(189,188,188,.30), transparent 29rem),
              linear-gradient(180deg, rgba(255,255,255,.7), transparent 65%);
}
.hero-grid {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1.07fr .93fr; gap: 58px; align-items: center;
}
.hero-copy { padding: 20px 0; }
.hero-copy .eyebrow { margin-bottom: 25px; }
.hero-copy h1 span { display: block; color: var(--navy); opacity: .72; font-style: italic; }
.hero-copy > p { max-width: 640px; margin-top: 29px; color: var(--muted); font-size: clamp(1.03rem,2vw,1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-note { display: flex; align-items: center; gap: 11px; margin-top: 28px; color: #626975; font-size: .86rem; }
.hero-note svg { width: 18px; color: var(--gold); }
.hero-card {
  min-height: 570px; position: relative; overflow: hidden;
  border-radius: 40px; background: var(--navy); color: var(--white);
  box-shadow: var(--shadow); padding: 42px;
}
.hero-card::before {
  content: ""; position: absolute; width: 430px; height: 430px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 50%;
  right: -145px; top: -110px;
}
.hero-card::after {
  content: ""; position: absolute; width: 280px; height: 280px;
  border: 1px solid rgba(189,188,188,.38); border-radius: 50%;
  right: -40px; top: -5px;
}
.hero-emblem { width: 118px; height: 124px; object-fit: contain; position: relative; z-index: 2; }
.hero-card-copy { position: absolute; left: 42px; right: 42px; bottom: 42px; z-index: 2; }
.hero-card-copy small { display: block; color: var(--gold); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; margin-bottom: 13px; }
.hero-card-copy blockquote { margin: 0; max-width: 430px; font-family: var(--serif); font-size: clamp(1.7rem,3.1vw,2.65rem); line-height: 1.12; }
.hero-card-copy p { margin-top: 24px; color: rgba(255,255,255,.65); font-size: .9rem; }
.wave-lines { position: absolute; left: -8%; right: -8%; top: 38%; opacity: .12; transform: rotate(-6deg); color: var(--white); }

.page-hero { position: relative; overflow: hidden; padding: 88px 0 78px; border-bottom: 1px solid var(--line); background: rgba(189,188,188,.12); }
.page-hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -160px; top: -260px;
  border-radius: 50%; border: 1px solid rgba(13,30,58,.08);
  box-shadow: 0 0 0 60px rgba(13,30,58,.018), 0 0 0 120px rgba(13,30,58,.014);
}
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .78rem; font-weight: 700; margin-bottom: 30px; }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span::before { content: "/"; margin-right: 8px; color: var(--gold); }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.18fr .62fr; gap: 60px; align-items: end; }
.page-hero h1 { max-width: 820px; }
.page-hero h1 em { color: var(--navy); opacity: .72; font-weight: 500; }
.page-lead { color: var(--muted); font-size: clamp(1.04rem,2vw,1.22rem); max-width: 700px; margin-top: 25px; }
.page-aside { border-left: 1px solid var(--line); padding-left: 30px; color: var(--muted); }
.page-aside strong { display: block; font-family: var(--serif); font-size: 1.35rem; color: var(--navy); font-weight: 500; margin-bottom: 8px; }

section { scroll-margin-top: 105px; }
.section { padding: 104px 0; }
.section.compact { padding: 76px 0; }
.section.alt { background: rgba(189,188,188,.14); border-block: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: 1.05fr .75fr; gap: 50px; align-items: end; margin-bottom: 46px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 1.02rem; }
.center-head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.center-head .eyebrow { margin-bottom: 18px; }
.center-head p { color: var(--muted); margin-top: 21px; font-size: 1.02rem; }

.practice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.practice {
  min-height: 330px; background: rgba(255,255,255,.76);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft); transition: transform .22s ease, box-shadow .22s ease;
}
.practice:hover { transform: translateY(-5px); box-shadow: 0 26px 70px rgba(13,30,58,.10); }
.practice-number { color: var(--navy); font-weight: 800; letter-spacing: .15em; font-size: .75rem; }
.practice h3 { margin-top: 42px; }
.practice p { margin-top: 15px; color: var(--muted); font-size: .94rem; }
.practice .text-link { margin-top: auto; padding-top: 28px; }
.arrow { width: 23px; }

.detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.detail-card {
  padding: 30px; border: 1px solid var(--line); border-radius: 24px;
  background: rgba(255,255,255,.7); box-shadow: var(--shadow-soft);
}
.detail-card .icon-circle {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--navy); margin-bottom: 26px;
}
.detail-card .icon-circle svg { width: 22px; }
.detail-card p { color: var(--muted); margin-top: 12px; }
.detail-card ul { margin: 16px 0 0; padding-left: 20px; color: var(--muted); }
.detail-card li + li { margin-top: 6px; }

.method-wrap {
  background: var(--white); border: 1px solid var(--line); border-radius: 38px;
  padding: 26px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px;
}
.method-intro {
  min-height: 530px; border-radius: 28px; background: var(--navy); color: var(--white);
  padding: 42px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.method-intro h2 { color: var(--white); max-width: 520px; }
.method-intro p { color: rgba(255,255,255,.68); margin-top: 22px; max-width: 430px; }
.method-intro .emblem-bg { position: absolute; width: 330px; height: 347px; object-fit: contain; right: -72px; bottom: -74px; opacity: .055; }
.method-list { display: grid; align-content: center; }
.method-item { padding: 30px 22px; display: grid; grid-template-columns: 52px 1fr; gap: 22px; border-bottom: 1px solid var(--line); }
.method-item:last-child { border-bottom: 0; }
.method-index {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--navy); font-weight: 800; font-size: .82rem;
}
.method-item p { color: var(--muted); margin-top: 6px; font-size: .94rem; }

.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 310px; gap: 70px; align-items: start; }
.prose h2 { font-size: clamp(2rem,4vw,3.3rem); margin-top: 60px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 34px; font-size: 1.55rem; }
.prose p { color: var(--muted); margin-top: 18px; }
.prose ul, .prose ol { color: var(--muted); padding-left: 24px; margin: 18px 0 0; }
.prose li + li { margin-top: 8px; }
.prose .highlight {
  margin-top: 32px; padding: 27px 28px; border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.72); border-radius: 0 20px 20px 0;
}
.prose .highlight strong { color: var(--navy); }
.side-card {
  position: sticky; top: 115px; padding: 28px; border-radius: 26px;
  background: var(--navy); color: var(--white); box-shadow: var(--shadow);
}
.side-card h3 { color: var(--white); }
.side-card p { color: rgba(255,255,255,.68); margin-top: 13px; font-size: .93rem; }
.side-card .button { margin-top: 24px; width: 100%; background: var(--white); color: var(--navy); border-color: var(--white); }
.side-list { margin: 24px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.13); }
.side-list li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.13); font-size: .85rem; color: rgba(255,255,255,.78); }

.steps { counter-reset: step; display: grid; gap: 14px; }
.step {
  display: grid; grid-template-columns: 58px 1fr; gap: 20px;
  padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.7);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  color: var(--navy); border: 1px solid var(--gold); font-weight: 800; font-size: .82rem;
}
.step p { color: var(--muted); margin-top: 7px; }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.72); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 26px; display: flex; justify-content: space-between; gap: 18px;
  color: var(--navy); font-family: var(--serif); font-size: 1.28rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--navy); font-family: var(--sans); font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); padding: 0 26px 24px; }

.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.portrait-placeholder {
  min-height: 560px; border-radius: 38px; position: relative; overflow: hidden;
  background: linear-gradient(145deg, rgba(13,30,58,.96), rgba(26,45,76,.88)),
              radial-gradient(circle at 30% 20%, rgba(189,188,188,.35), transparent 22rem);
  box-shadow: var(--shadow);
}
.portrait-placeholder::before {
  content: "N"; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-size: 22rem; color: rgba(255,255,255,.055);
}
.portrait-caption {
  position: absolute; left: 34px; right: 34px; bottom: 34px;
  color: var(--white); border-top: 1px solid rgba(255,255,255,.22); padding-top: 22px;
}
.portrait-caption strong { display: block; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.portrait-caption span { color: rgba(255,255,255,.65); font-size: .84rem; }
.about-copy .eyebrow { margin-bottom: 18px; }
.about-copy > p { color: var(--muted); font-size: 1.03rem; margin-top: 24px; }
.facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 32px; }
.fact { padding: 20px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.62); }
.fact strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.fact span { color: var(--muted); font-size: .82rem; }

.contact-section { padding: 40px 0 100px; }
.contact-card {
  background: var(--navy); color: var(--white); border-radius: 40px;
  padding: 58px; display: grid; grid-template-columns: 1fr .82fr;
  gap: 62px; position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.contact-card::after {
  content: ""; position: absolute; width: 420px; height: 420px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.1);
  right: -170px; bottom: -230px;
}
.contact-card h2 { color: var(--white); }
.contact-card .eyebrow { margin-bottom: 19px; }
.contact-card p { color: rgba(255,255,255,.68); margin-top: 22px; max-width: 580px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.contact-data { position: relative; z-index: 2; display: grid; align-content: center; gap: 12px; }
.contact-line {
  padding: 19px 20px; border-radius: 18px; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
}
.contact-line small { display: block; color: var(--gold); text-transform: uppercase; letter-spacing: .15em; font-size: .66rem; font-weight: 800; }
.contact-line strong { display: block; margin-top: 5px; font-weight: 650; overflow-wrap: anywhere; }

.contact-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.contact-option {
  padding: 30px; border: 1px solid var(--line); border-radius: 24px;
  background: rgba(255,255,255,.72); box-shadow: var(--shadow-soft);
}
.contact-option small { display: block; color: var(--navy); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 800; }
.contact-option h3 { margin-top: 18px; }
.contact-option p { color: var(--muted); margin-top: 12px; }
.contact-option .text-link { overflow-wrap: anywhere; }

.legal-banner {
  padding: 16px 18px; margin-bottom: 34px; border-radius: 16px;
  border: 1px solid var(--gold); background: rgba(189,188,188,.24); color: var(--navy);
}
.legal-banner strong { color: #0D1E3A; }

.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.related-card {
  padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.7);
}
.related-card p { color: var(--muted); margin-top: 10px; font-size: .9rem; }

footer { padding: 44px 0 34px; border-top: 1px solid var(--line); background: rgba(189,188,188,.16); }
.footer-top { display: grid; grid-template-columns: 1.1fr .6fr .6fr; gap: 55px; padding-bottom: 38px; }
.footer-brand p { color: var(--muted); max-width: 470px; margin-top: 17px; font-size: .9rem; }
.footer-column strong { display: block; color: var(--navy); margin-bottom: 14px; }
.footer-column a { display: block; color: var(--muted); padding: 4px 0; font-size: .86rem; }
.footer-column a:hover { color: var(--navy); }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.demo-note { color: #626975; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex; position: fixed; inset: 86px 0 0 0; z-index: 49;
    background: var(--paper); padding: 36px 20px 50px;
    flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto;
  }
  .nav-links.open > a { padding: 18px; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .nav-links.open > a::after { display: none; }
  .nav-links.open .button { margin-top: 22px; border-bottom: 0; }
  .hero { min-height: auto; }
  .hero-grid, .page-hero-grid, .section-head, .method-wrap, .about, .contact-card, .content-layout { grid-template-columns: 1fr; }
  .page-aside { border-left: 0; border-top: 1px solid var(--line); padding: 24px 0 0; }
  .hero-card { min-height: 480px; }
  .practice-grid, .contact-options, .related-grid { grid-template-columns: 1fr; }
  .practice { min-height: 250px; }
  .detail-grid { grid-template-columns: 1fr; }
  .section-head { gap: 22px; }
  .about { gap: 34px; }
  .portrait-placeholder { min-height: 440px; }
  .contact-card { gap: 34px; }
  .side-card { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .brand-logo { width: 108px; height: 71px; }
  .nav { min-height: 90px; }

  .shell, .narrow { width: min(100% - 28px, 1180px); }
  
  
  .hero { padding-top: 42px; }
  .hero-grid { gap: 34px; }
  .hero-card { min-height: 410px; border-radius: 28px; padding: 28px; }
  .hero-card-copy { left: 28px; right: 28px; bottom: 28px; }
  .page-hero { padding: 62px 0 58px; }
  .section { padding: 76px 0; }
  .section.compact { padding: 58px 0; }
  .method-wrap { padding: 12px; border-radius: 28px; }
  .method-intro { min-height: 430px; padding: 28px; }
  .method-item { grid-template-columns: 42px 1fr; padding: 24px 12px; gap: 14px; }
  .facts { grid-template-columns: 1fr; }
  .contact-card { padding: 32px 24px; border-radius: 28px; }
  .step { grid-template-columns: 46px 1fr; padding: 22px 18px; gap: 14px; }
  .step::before { width: 40px; height: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}




.native-form-section {
  padding: 26px 0 104px;
}
.native-form-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.native-form-intro {
  min-height: 100%;
  padding: 38px;
  border-radius: 26px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.native-form-intro h2 {
  color: var(--white);
}
.native-form-intro .eyebrow {
  margin-bottom: 16px;
}
.native-form-intro p {
  margin-top: 20px;
  color: rgba(255,255,255,.68);
}
.native-form-points {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}
.native-form-points div {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.native-form-points strong,
.native-form-points span {
  display: block;
}
.native-form-points strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
}
.native-form-points span {
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
}
.native-form {
  padding: 22px 18px 18px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.form-field label {
  color: var(--navy);
  font-size: .88rem;
  font-weight: 750;
}
.form-field label span,
.field-help {
  color: var(--muted);
  font-weight: 500;
}
.field-help {
  font-size: .75rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 14px 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field input {
  min-height: 50px;
}
.form-field textarea {
  min-height: 180px;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #858A92;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(13,30,58,.12);
  outline: none;
  background: #FFFFFF;
}
.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 5px 0 20px;
}
.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--navy);
}
.privacy-check label {
  color: var(--muted);
  font-size: .84rem;
}
.privacy-check a {
  color: var(--navy);
  font-weight: 700;
}
.captcha-wrap {
  min-height: 80px;
  margin: 4px 0 20px;
}
.native-submit {
  min-width: 190px;
  cursor: pointer;
}
.native-form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: .78rem;
}
@media (max-width: 980px) {
  .native-form-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .native-form-section {
    padding-bottom: 76px;
  }
  .native-form-layout {
    padding: 12px;
    border-radius: 26px;
  }
  .native-form-intro {
    padding: 28px 24px;
  }
  .native-form {
    padding: 16px 8px 8px;
  }
  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .native-submit {
    width: 100%;
  }
}


/* =========================================================
   AJUSTE VISUAL: ENCABEZADOS LIMPIOS Y SIN ORNAMENTOS
   ========================================================= */

/* Elimina líneas decorativas junto a los pequeños encabezados */
.eyebrow::before {
  display: none;
}

.eyebrow {
  gap: 0;
  letter-spacing: .15em;
}

/* Elimina círculos y ondas puramente decorativos */
.hero::before,
.hero-card::before,
.hero-card::after,
.page-hero::after,
.contact-card::after {
  display: none;
}

.wave-lines {
  display: none;
}

/* Encabezados interiores más limpios */
.page-hero {
  border-bottom: 0;
  background: rgba(189,188,188,.10);
}

.page-aside {
  border-left: 0;
  padding-left: 0;
}

.section.alt {
  border-block: 0;
}

/* Elimina separadores finos dentro de cuadros */
.method-item {
  border-bottom: 0;
}

.side-list {
  border-top: 0;
}

.side-list li {
  border-bottom: 0;
}

.portrait-caption {
  border-top: 0;
  padding-top: 0;
}

/* Sustituye los círculos de iconos y pasos por formas discretas */
.detail-card .icon-circle,
.method-index,
.step::before {
  border-radius: 10px;
  border: 0;
  background: rgba(189,188,188,.28);
}

/* Evita líneas finas internas en los cuadros oscuros de contacto */
.contact-line {
  border: 0;
  background: rgba(255,255,255,.08);
}

/* Mantiene los cuadros definidos sin exceso de líneas */
.practice,
.detail-card,
.step,
.faq-item,
.contact-option,
.related-card,
.fact {
  border-color: rgba(13,30,58,.09);
}

/* Encabezados de sección con separación más natural */
.section-head,
.center-head {
  margin-bottom: 40px;
}

.section-head h2,
.center-head h2 {
  max-width: 850px;
}





/* Selector de idioma circular */
.nav {
  position: relative;
}
.language-switcher {
  position: static;
  transform: none;
  z-index: 100;
  margin-left: 12px;
  flex: 0 0 auto;
  align-self: center;
}
.language-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(13,30,58,.18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateY(-1px);
  background: var(--navy-soft);
  box-shadow: 0 13px 28px rgba(13,30,58,.24);
  outline: none;
}
.language-code {
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .04em;
  line-height: 1;
}
.language-chevron {
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .18s ease;
}
.language-switcher.open .language-chevron {
  transform: rotate(225deg) translate(-1px,-1px);
}
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 164px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(243,242,240,.98);
  box-shadow: 0 20px 55px rgba(13,30,58,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.98);
  transform-origin: top right;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.language-switcher.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.language-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 720;
}
.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a.active {
  background: rgba(189,188,188,.26);
  outline: none;
}
.language-option-code {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .03em;
}
@media (max-width: 980px) {
  .menu-toggle { margin-left: auto; }
}
@media (max-width: 860px) {
  .language-switcher {
    position: absolute;
    top: 50%;
    right: 58px;
    transform: translateY(-50%);
    margin-left: 0;
  }
  .language-toggle {
    width: 39px;
    height: 39px;
  }
  .language-menu {
    right: -2px;
  }
}

.practice-grid.expanded{grid-template-columns:repeat(3,minmax(0,1fr))}.practice-grid.expanded .practice{min-height:310px}.location-grid,.contact-layout,.content-layout{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr);gap:clamp(36px,7vw,96px);align-items:start}.contact-form{background:rgba(255,255,255,.78);border:1px solid var(--line);border-radius:var(--radius);padding:clamp(24px,4vw,48px);box-shadow:var(--shadow-soft)}.contact-form label{display:grid;gap:8px;margin-bottom:18px;color:var(--navy);font-weight:750;font-size:.87rem}.contact-form input,.contact-form textarea{width:100%;border:1px solid var(--line);border-radius:14px;background:#fff;padding:14px 15px;font:inherit}.contact-form textarea{min-height:180px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.checkbox-row{grid-template-columns:auto 1fr!important}.checkbox-row input{width:18px}.contact-sidebar{display:grid;gap:16px}.contact-option{border:1px solid var(--line);border-radius:20px;padding:22px;background:rgba(189,188,188,.12)}.content-layout{grid-template-columns:minmax(0,1fr) minmax(270px,.38fr)}.service-list{display:grid;gap:10px;padding:0;list-style:none}.service-list li{padding:13px 16px 13px 42px;border-radius:14px;background:rgba(189,188,188,.14);position:relative}.service-list li:before{content:"✓";position:absolute;left:16px}.sticky-card{position:sticky;top:132px}.faq-list{display:grid;gap:14px}.faq-item{background:rgba(255,255,255,.72);border:1px solid rgba(13,30,58,.09);border-radius:18px;padding:0 20px}.faq-item summary{cursor:pointer;padding:20px 0;font-weight:780}.faq-item p{padding:0 0 20px;margin:0}.center-head{text-align:center}@media(max-width:980px){.practice-grid.expanded{grid-template-columns:1fr 1fr}.location-grid,.contact-layout,.content-layout{grid-template-columns:1fr}.sticky-card{position:static}}@media(max-width:620px){.practice-grid.expanded,.form-grid{grid-template-columns:1fr}}


/* Ajustes finales de composición y llamadas a la acción */
.button.compact {
  min-height: 40px;
  padding: 0 16px;
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: .01em;
  box-shadow: 0 8px 22px rgba(13,30,58,.12);
}
.contact-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contact-actions .button.compact {
  min-width: 0;
}
.service-contact-button {
  margin-top: 20px;
}
.hero-copy h1,
.page-hero h1,
.section-head h2,
.center-head h2,
.contact-card h2,
.rich-content h2 {
  text-wrap: balance;
}
.hero-copy p,
.page-aside p,
.rich-content p,
.contact-card p,
.method-item p,
.location-grid p,
.faq-item p {
  text-align: left;
  text-wrap: pretty;
  hyphens: none;
}
.eyebrow {
  text-transform: none;
}
.contact-card {
  align-items: center;
}
.contact-card > div:first-child {
  max-width: 720px;
}
.method-intro,
.method-list,
.location-grid,
.content-layout,
.contact-layout {
  min-width: 0;
}
@media (max-width: 620px) {
  .button.compact {
    min-height: 38px;
    padding: 0 14px;
    font-size: .76rem;
  }
  .contact-card {
    padding: 26px 22px;
  }
}


/* Revisión final de alineación, márgenes y escala tipográfica */
.hero-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  padding: clamp(36px, 4.2vw, 54px);
}
.hero-emblem {
  width: 104px;
  height: auto;
  flex: 0 0 auto;
}
.hero-card-copy {
  position: static;
  margin-top: auto;
}
.hero-card-copy small {
  margin-bottom: 16px;
}
.hero-card-copy blockquote {
  max-width: 100%;
  font-size: clamp(2.05rem, 3.1vw, 3.35rem);
  line-height: 1.07;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero-card-copy p {
  max-width: 620px;
  margin-top: 24px;
  font-size: .94rem;
  line-height: 1.7;
  text-wrap: pretty;
}
.page-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .72fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}
.page-hero h1 {
  max-width: 780px;
  font-size: clamp(3.15rem, 5.45vw, 5.9rem);
  text-wrap: balance;
}
.page-aside {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.page-aside p {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
  text-wrap: pretty;
}
.page-aside .button {
  margin: 0;
}
.location-grid {
  grid-template-columns: minmax(0, 1.38fr) minmax(290px, .62fr);
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
}
.location-grid h2 {
  max-width: 900px;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.location-grid > div > p {
  max-width: 900px;
  margin-top: 26px;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.75;
  text-wrap: pretty;
}
.location-grid .side-card {
  width: 100%;
}
.contact-card {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(44px, 7vw, 94px);
  align-items: end;
  padding: clamp(46px, 5vw, 70px);
}
.contact-card > div:first-child {
  max-width: 760px;
}
.contact-card h2 {
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.contact-card p {
  max-width: 690px;
  margin-top: 24px;
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
  line-height: 1.75;
  text-wrap: pretty;
}
.contact-actions {
  align-self: end;
  justify-content: flex-end;
  margin-top: 0;
  padding-bottom: 4px;
}
.button.compact {
  min-height: 38px;
  padding-inline: 15px;
  font-size: .76rem;
  box-shadow: 0 8px 20px rgba(13,30,58,.1);
}
.rich-content,
.page-aside,
.contact-card,
.location-grid,
.hero-card-copy {
  text-align: left;
}

@media (max-width: 980px) {
  .page-hero-grid,
  .location-grid,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-aside {
    max-width: 720px;
    justify-self: start;
  }
  .contact-actions {
    justify-content: flex-start;
    padding-bottom: 0;
  }
  .location-grid h2 {
    max-width: 760px;
  }
}
@media (max-width: 620px) {
  .hero-card {
    min-height: 460px;
    padding: 30px;
  }
  .hero-card-copy blockquote {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .page-hero h1,
  .location-grid h2,
  .contact-card h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }
  .contact-card {
    padding: 30px 24px;
  }
}


/* Página Sobre mí ampliada */
.about-hero {
  padding: clamp(72px, 9vw, 126px) 0;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}
.about-hero-copy h1 {
  max-width: 820px;
  margin: 16px 0 28px;
  text-wrap: balance;
}
.about-hero-copy p {
  max-width: 720px;
  color: var(--muted);
  text-wrap: pretty;
}
.about-hero-copy p + p {
  margin-top: 16px;
}
.about-photo {
  min-height: 590px;
  border-radius: 34px;
}
.about-story .narrow {
  max-width: 880px;
}
.about-story h2 {
  max-width: 820px;
  margin: 16px 0 30px;
  text-wrap: balance;
}
.about-story p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.about-story p + p {
  margin-top: 18px;
}
.about-direct-grid,
.about-practice-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}
.about-direct-grid h2,
.about-practice-grid h2 {
  margin: 16px 0 22px;
  text-wrap: balance;
}
.about-direct-grid p,
.about-long-copy p,
.about-section-copy p {
  color: var(--muted);
  text-wrap: pretty;
}
.about-quote {
  margin: 0;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 30px;
  background: var(--navy);
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.18;
  text-wrap: balance;
}
.about-section-head {
  align-items: start;
}
.about-section-copy p + p,
.about-long-copy p + p {
  margin-top: 16px;
}
.about-three-grid,
.about-four-grid,
.about-expect-grid {
  display: grid;
  gap: 18px;
}
.about-three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-four-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.about-expect-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.about-info-card,
.about-client-card,
.about-expect-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  background: rgba(255,255,255,.68);
  min-width: 0;
}
.about-info-card h3,
.about-client-card h3,
.about-expect-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  text-wrap: balance;
}
.about-info-card p,
.about-client-card p,
.about-expect-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
  text-wrap: pretty;
}
.about-practice {
  background: var(--navy);
  color: var(--paper);
}
.about-practice .eyebrow,
.about-practice h2 {
  color: var(--paper);
}
.about-practice .eyebrow::before {
  background: var(--paper);
}
.about-practice .about-long-copy p {
  color: rgba(243,242,240,.78);
}
.about-centered-head {
  max-width: 820px;
  margin: 0 auto 42px;
}
.about-final-quote {
  padding: clamp(76px, 10vw, 132px) 0;
  background: var(--navy);
}
.about-final-quote blockquote {
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 1080px) {
  .about-four-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-expect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .about-hero-grid,
  .about-direct-grid,
  .about-practice-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    min-height: 500px;
  }
  .about-three-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .about-hero {
    padding: 54px 0 70px;
  }
  .about-photo {
    min-height: 420px;
  }
  .about-four-grid,
  .about-expect-grid {
    grid-template-columns: 1fr;
  }
  .about-info-card,
  .about-client-card,
  .about-expect-card {
    padding: 22px;
  }
  .about-quote {
    padding: 28px;
  }
}


/* Retrato profesional definitivo */
.about-photo {
  background: #0D1E3A;
  aspect-ratio: 991 / 1490;
  min-height: 0;
  height: auto;
  width: min(100%, 520px);
  justify-self: end;
}
.about-photo::before {
  content: none;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(13,30,58,.14) 28%, rgba(13,30,58,.82));
  pointer-events: none;
}
.about-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 22%;
}
.about-photo .portrait-caption {
  z-index: 2;
  text-shadow: 0 1px 18px rgba(0,0,0,.35);
}
.about-portrait {
  display: flex;
  justify-content: flex-end;
}

/* =========================================================
   SISTEMA TIPOGRÁFICO DEFINITIVO
   Legibilidad, justificación y ritmo visual
   ========================================================= */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
blockquote {
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  font-size: clamp(3.1rem, 6.1vw, 5.9rem);
  line-height: 1.015;
  letter-spacing: -.025em;
}

h2 {
  font-size: clamp(2.3rem, 4.45vw, 4.25rem);
  line-height: 1.065;
  letter-spacing: -.018em;
}

h3 {
  line-height: 1.22;
  letter-spacing: -.008em;
}

/* Los bloques de lectura continua se alinean a la izquierda para evitar
   separaciones excesivas entre palabras y mantener una lectura más natural. */
.hero-copy > p,
.hero-card-copy p,
.page-lead,
.page-aside p,
.section-head > p,
.section-head > div > p,
.method-intro p,
.method-item p,
.prose p,
.rich-content > p,
.side-card p,
.step p,
.faq-item p,
.about-copy > p,
.contact-card p,
.contact-option p,
.related-card p,
.native-form-intro p,
.about-hero-copy p,
.about-story p,
.about-direct-grid > div > p,
.about-section-copy p,
.about-long-copy p,
.location-grid > div > p {
  text-align: left;
  text-wrap: pretty;
  -webkit-hyphens: none;
  hyphens: none;
  overflow-wrap: break-word;
}

/* Titulares principales: escala contenida y aire suficiente entre líneas. */
.hero-copy h1 {
  max-width: 760px;
}

.hero-card-copy blockquote {
  font-size: clamp(1.95rem, 2.75vw, 3rem);
  line-height: 1.15;
  letter-spacing: -.012em;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3.15rem, 5.15vw, 5.35rem);
  line-height: 1.025;
  letter-spacing: -.022em;
}

.location-grid h2 {
  max-width: 860px;
  font-size: clamp(2.85rem, 4.7vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -.019em;
}

.contact-card h2 {
  max-width: 720px;
  font-size: clamp(2.8rem, 4.55vw, 4.7rem);
  line-height: 1.065;
  letter-spacing: -.019em;
}

.about-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 5.25vw, 5.35rem);
  line-height: 1.025;
  letter-spacing: -.022em;
}

.about-quote {
  line-height: 1.22;
  letter-spacing: -.008em;
}

.about-final-quote blockquote {
  max-width: 840px;
  margin-inline: auto;
  font-size: clamp(2.05rem, 3.55vw, 3.6rem);
  line-height: 1.19;
  letter-spacing: -.01em;
}

/* Ritmo vertical en páginas de servicio y textos jurídicos. */
.rich-content h2 {
  margin: 0 0 26px;
  font-size: clamp(2.45rem, 4.15vw, 4.05rem);
  line-height: 1.075;
  letter-spacing: -.017em;
  text-wrap: balance;
}

.rich-content h2:not(:first-child) {
  margin-top: 68px;
}

.rich-content h2 + p,
.rich-content > p:first-child {
  margin-top: 0;
}

.rich-content .service-list {
  margin: 0;
}

.rich-content h2 + .service-list {
  margin-top: 0;
}

.service-list + h2 {
  margin-top: 68px;
}

/* Evita que las líneas de los títulos queden excesivamente próximas a los
   textos que los siguen. */
.about-story h2,
.about-direct-grid h2,
.about-practice-grid h2,
.about-section-head h2,
.about-centered-head h2 {
  line-height: 1.075;
  letter-spacing: -.017em;
}

.about-story h2 {
  margin-bottom: 34px;
}

.about-direct-grid h2,
.about-practice-grid h2 {
  margin-bottom: 26px;
}

/* Medidas de seguridad para palabras largas en gallego y portugués. */
.about-info-card,
.about-client-card,
.about-expect-card,
.practice,
.detail-card,
.contact-option,
.related-card,
.side-card,
.contact-line {
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 980px) {
  h1 {
    font-size: clamp(3rem, 8vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.35rem, 6.5vw, 3.8rem);
  }

  .page-hero h1,
  .about-hero-copy h1 {
    font-size: clamp(3rem, 7.8vw, 4.75rem);
  }
}

@media (max-width: 620px) {
  h1,
  .page-hero h1,
  .about-hero-copy h1 {
    font-size: clamp(2.78rem, 12.4vw, 3.45rem);
    line-height: 1.045;
    letter-spacing: -.017em;
  }

  h2,
  .rich-content h2,
  .location-grid h2,
  .contact-card h2 {
    font-size: clamp(2.12rem, 10.2vw, 3rem);
    line-height: 1.09;
    letter-spacing: -.012em;
  }

  h3 {
    line-height: 1.24;
  }

  .hero-card-copy blockquote {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
    line-height: 1.17;
    letter-spacing: -.008em;
  }

  .about-quote {
    line-height: 1.24;
  }

  .about-final-quote blockquote {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    line-height: 1.22;
  }

  .rich-content h2:not(:first-child),
  .service-list + h2 {
    margin-top: 54px;
  }
}

@media (max-width: 980px) {
  .about-portrait {
    justify-content: flex-start;
  }
  .about-photo {
    width: min(100%, 480px);
  }
}

@media (max-width: 700px) {
  .about-photo {
    width: 100%;
  }
}


/* =========================================================
   INFORMACIÓN LEGAL Y CONTACTO DEFINITIVOS
   ========================================================= */
.legal-hero .page-aside { max-width: 560px; }
.legal-section { padding-top: clamp(58px, 7vw, 92px); }
.legal-content { max-width: 1040px; }
.legal-content > p,
.legal-content > ul,
.legal-content > ol { max-width: 870px; }
.legal-content h2 {
  max-width: 900px;
  margin: 68px 0 22px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -.014em;
  text-wrap: balance;
}
.legal-content h2:first-of-type { margin-top: 58px; }
.legal-content p,
.legal-content li,
.legal-table td,
.legal-table th {
  text-align: left;
  hyphens: none;
  word-spacing: normal;
  overflow-wrap: break-word;
}
.legal-content p {
  color: var(--muted);
  line-height: 1.82;
  text-wrap: pretty;
}
.legal-content p + p { margin-top: 18px; }
.legal-content ul:not(.legal-data-list),
.legal-content ol {
  margin: 22px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}
.legal-content li { line-height: 1.72; }
.legal-content li + li { margin-top: 10px; }
.legal-content a { text-decoration: underline; text-underline-offset: 3px; }
.legal-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--line);
}
.legal-summary > div {
  min-width: 0;
  padding: 26px 24px;
  background: rgba(255,255,255,.74);
}
.legal-summary span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-summary strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: break-word;
}
.legal-summary a { text-decoration: none; }
.legal-data-list {
  max-width: 900px !important;
  margin: 28px 0 30px !important;
  padding: 0 !important;
  list-style: none;
  border-top: 1px solid var(--line);
}
.legal-data-list li {
  display: grid;
  grid-template-columns: minmax(210px,.68fr) minmax(0,1.32fr);
  gap: 28px;
  margin: 0 !important;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.legal-data-list strong { color: var(--navy); }
.legal-data-list span { color: var(--muted); }
.legal-table-wrap {
  width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.68);
  -webkit-overflow-scrolling: touch;
}
.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}
.legal-table th,
.legal-table td {
  padding: 18px 20px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  line-height: 1.58;
}
.legal-table th {
  color: var(--navy);
  background: rgba(13,30,58,.055);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.legal-table td { color: var(--muted); font-size: .91rem; }
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table code { color: var(--navy); font-size: .9em; }
.legal-updated {
  margin-top: 64px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--navy) !important;
  font-size: .86rem;
  font-weight: 700;
}
.privacy-layer {
  margin-top: 4px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.62);
}
.privacy-layer > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
}
.privacy-layer p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.62;
  text-align: left;
}
.privacy-layer a,
.hcaptcha-note a { text-decoration: underline; text-underline-offset: 2px; }
.form-privacy-warning {
  margin: 0 0 6px;
  padding: 16px 18px;
  border-left: 3px solid var(--navy);
  color: var(--muted);
  background: rgba(13,30,58,.045);
  font-size: .82rem;
  line-height: 1.6;
  text-align: left;
}
.hcaptcha-note {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.55;
  text-align: left;
}
.botcheck {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.contact-option p { margin-top: 10px; }
.footer-contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-top: 18px;
  color: var(--muted);
  font-size: .82rem;
}
.footer-contact-links a { transition: color .2s ease; }
.footer-contact-links a:hover { color: var(--navy); }
.professional-note { text-align: right; }

@media (max-width: 980px) {
  .legal-summary { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .legal-content h2 { margin-top: 52px; }
  .legal-summary { grid-template-columns: 1fr; }
  .legal-summary > div { padding: 21px 20px; }
  .legal-data-list li { grid-template-columns: 1fr; gap: 5px; }
  .legal-table { min-width: 620px; }
  .professional-note { text-align: left; }
  .footer-bottom { align-items: flex-start; }
}


/* Canal alternativo de contacto por WhatsApp */
.whatsapp-option a {
  display: inline-block;
  margin-top: 6px;
}
.whatsapp-option p {
  margin-top: 12px;
}


/* =========================================================
   ACTUALIDAD — PORTADA Y ARTÍCULO
   Diseño aprobado: fondos planos, título horizontal e imagen propia.
   ========================================================= */
.news-hero,
.article-hero-flat { background: var(--paper); }
.news-hero { padding: 52px 0 88px; }
.news-hero .breadcrumbs { margin-bottom: clamp(70px,9vw,128px); }
.news-hero-copy { text-align: center; }
.news-hero-copy .eyebrow { justify-content: center; }
.news-hero-copy .eyebrow::before { display: none; }
.news-hero-copy h1 {
  width: 100%;
  max-width: none;
  margin: 32px auto 0;
  font-size: clamp(3.05rem,6.2vw,5.8rem);
  line-height: 1.03;
  letter-spacing: -.048em;
  text-wrap: balance;
}
.news-hero-copy p {
  max-width: 960px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem,2vw,1.35rem);
  line-height: 1.65;
  text-align: center;
  text-wrap: balance;
}
.news-section { padding: 54px 0 112px; background: var(--paper); }
.news-heading { margin-bottom: 30px; }
.news-heading .eyebrow { margin-bottom: 20px; }
.news-heading h2 { font-size: clamp(2.6rem,5.2vw,4.7rem); }
.featured-article {
  display: grid;
  grid-template-columns: minmax(340px,.82fr) minmax(0,1.18fr);
  width: min(1080px,100%);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}
.featured-image {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  background: #0D1E3A;
}
.featured-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.featured-logo {
  position: absolute;
  left: 28px;
  top: 26px;
  width: 58px;
  transform: none;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.22));
}
.featured-content {
  min-width: 0;
  padding: 38px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-meta,
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-meta > * + *::before,
.article-meta > * + *::before { content: "·"; margin-right: 20px; color: var(--gold); }
.featured-content h2 { margin-top: 22px; font-size: clamp(2.05rem,3vw,2.8rem); line-height: 1.08; letter-spacing: -.026em; }
.featured-content p { margin-top: 18px; color: var(--muted); font-size: .96rem; line-height: 1.68; }
.featured-content .text-link { margin-top: 24px; }

.article-hero-flat { padding: 52px 0 76px; }
.article-hero-flat .breadcrumbs { margin-bottom: clamp(54px,7vw,92px); }
.article-hero-flat > .shell > .eyebrow::before { display: none; }
.article-hero-flat h1 {
  max-width: 1120px;
  margin-top: 26px;
  font-size: clamp(3rem,6vw,6rem);
  line-height: 1.02;
  letter-spacing: -.048em;
  text-wrap: balance;
}
.article-deck { max-width: 970px; margin-top: 32px; color: var(--muted); font-size: clamp(1.08rem,2vw,1.32rem); line-height: 1.7; }
.article-meta { margin-top: 30px; }
.article-cover {
  position: relative;
  height: clamp(360px,52vw,670px);
  margin: 58px 0 0;
  overflow: hidden;
  border-radius: 28px;
  background: #151d2b;
  box-shadow: var(--shadow-soft);
}
.article-cover > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.article-cover-logo {
  position: absolute;
  left: clamp(38px,7vw,100px);
  top: 50%;
  width: clamp(155px,20vw,250px);
  transform: translateY(-50%);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.25));
}
.article-wrap { padding: 88px 0 112px; background: #fff; }
.article-layout { display: grid; grid-template-columns: minmax(0,760px) minmax(260px,330px); gap: clamp(50px,8vw,100px); align-items: start; justify-content: space-between; }
.article-body { min-width: 0; }
.article-intro { margin-bottom: 58px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.article-intro p { color: var(--navy); font-family: var(--serif); font-size: clamp(1.35rem,2.1vw,1.75rem); line-height: 1.55; }
.article-intro p + p { margin-top: 24px; }
.article-section { padding-top: 26px; }
.article-section + .article-section { margin-top: 58px; }
.article-section h2 { font-size: clamp(2.15rem,3.9vw,3.45rem); line-height: 1.08; letter-spacing: -.026em; text-wrap: balance; }
.article-section p { margin-top: 20px; color: var(--muted); font-size: 1.02rem; line-height: 1.88; text-align: left; text-wrap: pretty; }
.article-emphasis { padding: 22px 24px; background: var(--paper); color: var(--navy) !important; font-family: var(--serif); font-size: 1.25rem !important; }
.article-editorial { margin-top: 72px; padding: 28px; background: var(--paper); }
.article-editorial strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.article-editorial p { margin-top: 10px; color: var(--muted); line-height: 1.7; }
.article-back { display: inline-flex; margin-top: 38px; color: var(--navy); font-weight: 800; }
.article-sidebar { display: grid; gap: 18px; position: sticky; top: 126px; }
.article-side-card { padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.article-side-card .eyebrow::before { display: none; }
.article-toc { margin: 22px 0 0; padding: 0; list-style: none; }
.article-toc li + li { border-top: 1px solid var(--line); }
.article-toc a { display: block; padding: 12px 0; color: var(--muted); font-size: .84rem; line-height: 1.45; }
.article-toc a:hover { color: var(--navy); }
.article-side-card.navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.article-side-card.navy h3 { color: var(--white); }
.article-points { margin: 20px 0 0; padding-left: 20px; color: rgba(255,255,255,.76); }
.article-points li + li { margin-top: 12px; }
.article-side-card.navy .button { width: 100%; margin-top: 26px; background: var(--white); color: var(--navy); border-color: var(--white); }

@media (max-width: 1140px) and (min-width: 981px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex; position: fixed; inset: 104px 0 0 0; z-index: 49;
    background: var(--paper); padding: 36px 20px 50px;
    flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto;
  }
  .nav-links.open > a { padding: 18px; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .nav-links.open > a::after { display: none; }
  .nav-links.open .button { margin-top: 22px; border-bottom: 0; }
}
@media (max-width: 980px) {
  .featured-article { grid-template-columns: 1fr; }
  .featured-image { min-height: 390px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .article-side-card:first-child { display: none; }
}
@media (max-width: 620px) {
  .news-hero { padding: 36px 0 60px; }
  .news-hero .breadcrumbs { margin-bottom: 58px; }
  .news-hero-copy h1 { margin-top: 24px; font-size: clamp(2.85rem,14vw,4.25rem); line-height: 1.08; }
  .news-hero-copy p { margin-top: 24px; font-size: 1rem; text-align: left; }
  .news-section { padding: 40px 0 76px; }
  .news-heading { margin-bottom: 24px; }
  .featured-article { border-radius: 22px; }
  .featured-image { min-height: 300px; }
  .featured-logo { left: 20px; top: 20px; width: 48px; }
  .featured-content { padding: 28px 24px 32px; }
  .featured-content h2 { font-size: 2.05rem; }
  .news-meta > * + *::before,
  .article-meta > * + *::before { display: none; }
  .article-hero-flat { padding: 36px 0 54px; }
  .article-hero-flat .breadcrumbs { margin-bottom: 52px; }
  .article-hero-flat h1 { font-size: clamp(2.65rem,13vw,4.3rem); line-height: 1.08; }
  .article-deck { font-size: 1rem; }
  .article-meta { flex-direction: column; gap: 7px; }
  .article-cover { height: 310px; margin-top: 38px; border-radius: 20px; }
  .article-cover-logo { left: 26px; width: 128px; }
  .article-wrap { padding: 60px 0 78px; }
  .article-intro { margin-bottom: 42px; padding-bottom: 32px; }
  .article-intro p { font-size: 1.25rem; }
  .article-section + .article-section { margin-top: 45px; }
  .article-section h2 { font-size: 2.2rem; }
  .article-section p { font-size: .98rem; line-height: 1.78; }
  .article-side-card { padding: 24px; }
}


/* Ajustes 21-07-2026: menú móvil completo y entradilla de Actualidad más contenida */
.article-intro p {
  font-size: clamp(1.12rem, 1.45vw, 1.35rem);
  line-height: 1.66;
}

@media (max-width: 1140px) {
  body.menu-open .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header .nav { position: static; }
  .nav-links.open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: calc(100vh - 104px);
    height: calc(100dvh - 104px);
    max-height: calc(100vh - 104px);
    max-height: calc(100dvh - 104px);
    padding: 24px max(20px, env(safe-area-inset-right)) calc(34px + env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open .button { flex: 0 0 auto; }
}

@media (max-width: 620px) {
  .nav-links.open {
    height: calc(100vh - 90px);
    height: calc(100dvh - 90px);
    max-height: calc(100vh - 90px);
    max-height: calc(100dvh - 90px);
    padding-top: 14px;
  }
  .nav-links.open > a { padding: 15px 16px; }
  .nav-links.open .button { margin-top: 14px; margin-bottom: 8px; }
  .article-intro p { font-size: 1.08rem; line-height: 1.68; }
}


/* Páginas interiores de servicios con opciones en tarjetas */
.area-intro{display:grid;grid-template-columns:minmax(270px,.55fr) minmax(0,1.45fr);gap:clamp(42px,7vw,92px);align-items:start}.area-intro-copy{position:sticky;top:136px}.area-intro-copy .eyebrow{margin-bottom:20px}.area-intro-copy h2{font-size:clamp(2.25rem,4.8vw,4.35rem)}.area-intro-copy p{margin-top:22px;color:var(--muted);font-size:1.02rem}.area-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.area-card{min-height:300px;padding:29px;border:1px solid var(--line);border-radius:26px;background:rgba(255,255,255,.78);box-shadow:var(--shadow-soft);display:flex;flex-direction:column;transition:transform .22s ease,box-shadow .22s ease}.area-card:hover{transform:translateY(-5px);box-shadow:0 26px 70px rgba(13,30,58,.1)}.area-card-top{display:flex;align-items:center;justify-content:space-between;gap:12px}.area-number{font-size:.72rem;font-weight:850;letter-spacing:.16em;color:var(--navy)}.area-tag{border:1px solid var(--line);border-radius:999px;padding:6px 10px;color:var(--muted);font-size:.67rem;font-weight:800}.area-card h3{margin-top:37px;font-size:clamp(1.45rem,2.2vw,1.85rem)}.area-card p{margin-top:14px;color:var(--muted);font-size:.9rem}.area-card .mini-link{margin-top:auto;padding-top:22px;font-size:.74rem;color:var(--navy);font-weight:800}.approach-section{padding:0 0 104px}.approach-panel{position:relative;overflow:hidden;border-radius:38px;background:var(--navy);color:var(--white);padding:clamp(32px,5vw,58px);box-shadow:var(--shadow)}.approach-panel:after{content:"";position:absolute;width:420px;height:420px;border:1px solid rgba(255,255,255,.09);border-radius:50%;right:-160px;top:-220px}.approach-panel .eyebrow{color:var(--white)}.approach-panel h2{color:var(--white);max-width:760px;margin-top:18px}.approach-panel>p{color:rgba(255,255,255,.67);max-width:760px;margin-top:20px}.approach-grid{position:relative;z-index:2;display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:40px}.approach-card{padding:25px;border:1px solid rgba(255,255,255,.14);border-radius:22px;background:rgba(255,255,255,.055)}.approach-card small{color:var(--gold);font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;font-weight:850}.approach-card h3{color:var(--white);margin-top:12px}.approach-card p{color:rgba(255,255,255,.65);margin-top:10px;font-size:.88rem}@media(max-width:980px){.area-intro{grid-template-columns:1fr}.area-intro-copy{position:static}.approach-grid{grid-template-columns:1fr}}@media(max-width:620px){.area-grid{grid-template-columns:1fr}.area-card{min-height:0}}

/* Equilibrio visual cuando el catálogo contiene 13 áreas. */
@media (min-width:981px){
  .practice-grid.expanded > .practice:last-child:nth-child(3n + 1){grid-column:2}
}
@media (min-width:621px) and (max-width:980px){
  .practice-grid.expanded > .practice:last-child:nth-child(odd){grid-column:1 / -1;width:calc(50% - 9px);justify-self:center}
}
@media (max-width:620px){
  .practice-grid.expanded > .practice:last-child{grid-column:auto;width:auto}
}


/* Equipo de dos profesionales: fotografías proporcionales y contenido protegido */
.about-team-shell { display: grid; gap: clamp(34px, 5vw, 62px); }
.about-team-heading { width: 100%; max-width: 1180px; }
.about-team-heading h1 { width: 100%; max-width: none; margin-top: 16px; font-size: clamp(2.8rem, 4.2vw, 4.2rem); line-height: 1.03; letter-spacing: -.018em; }
.team-heading-line { display: block; white-space: nowrap; }
.team-photo-grid { display: grid; grid-template-columns: repeat(2, minmax(280px, 420px)); justify-content: center; gap: clamp(24px, 3.2vw, 40px); align-items: start; max-width: 980px; margin-inline: auto; }
.team-member { min-width: 0; width: 100%; max-width: 420px; justify-self: center; }
.team-member-photo { position: relative; overflow: hidden; width: 100%; aspect-ratio: 991 / 1490; border-radius: 28px; background: var(--navy); box-shadow: var(--shadow-soft); }
.team-member-image { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.team-member-photo-placeholder { display: grid; place-items: center; border: 1px solid rgba(13,30,58,.08); background: linear-gradient(150deg, #0D1E3A, #182B4B); }
.team-member-photo-placeholder img { width: min(34%, 170px); height: auto; opacity: .78; }
.team-member-meta { display: grid; gap: 7px; padding: 20px 4px 0; }
.team-member-meta strong { color: var(--navy); font-family: var(--serif); font-size: clamp(1.45rem, 2.1vw, 2rem); font-weight: 500; line-height: 1.12; letter-spacing: -.012em; white-space: nowrap; }
.team-member-meta span { color: var(--muted); font-size: .84rem; line-height: 1.5; }
.about-team-copy { max-width: 850px; margin-inline: auto; color: var(--muted); font-size: 1.02rem; line-height: 1.78; text-align: center; }
.about-team-copy p { text-align: center; }
.about-team-copy p + p { margin-top: 16px; }
@media (max-width: 980px) {
  .team-heading-line { display: inline; white-space: normal; }
  .team-heading-line + .team-heading-line::before { content: " "; }
}
@media (max-width: 760px) {
  .team-heading-line { display: inline; white-space: normal; }
  .team-photo-grid { grid-template-columns: 1fr; max-width: 420px; }
  .team-member-meta strong { white-space: normal; }
}

/* El catálogo contiene 14 servicios: dos tarjetas centradas en la última fila. */
@media (min-width: 981px) {
  .practice-grid.expanded { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .practice-grid.expanded > .practice { grid-column: span 2; }
  .practice-grid.expanded > .practice:nth-last-child(2):nth-child(3n + 1) { grid-column: 2 / span 2; }
}

/* Equipo: titulares principales limitados a dos líneas en escritorio. */
.about-story .narrow {
  max-width: 1180px;
}
.about-story .about-two-line-heading,
.about-centered-head .about-two-line-heading {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  font-size: clamp(2.25rem, 3.25vw, 3.2rem);
  line-height: 1.075;
  letter-spacing: -.017em;
  text-wrap: initial;
}
.about-story .about-two-line-heading {
  margin-inline: 0;
}
.about-heading-line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .about-heading-line {
    display: inline;
    white-space: normal;
  }
  .about-heading-line + .about-heading-line::before {
    content: " ";
  }
}
.about-story .narrow {
  width: min(1180px, calc(100% - 40px));
}
.about-centered-head {
  width: min(1180px, 100%);
  max-width: 1180px;
}
