:root {
  --navy-950: #09182b;
  --navy-900: #102440;
  --navy-800: #183452;
  --navy-700: #264866;
  --gold-600: #a9793f;
  --gold-500: #bd8e52;
  --gold-300: #dcc095;
  --cream-100: #f5f2ed;
  --cream-50: #faf8f4;
  --paper: #fffefd;
  --ink: #162338;
  --muted: #5f6875;
  --line: #ded8cf;
  --terracotta: #9b543d;
  --shadow-sm: 0 10px 30px rgba(11, 27, 47, 0.08);
  --shadow-lg: 0 24px 70px rgba(11, 27, 47, 0.16);
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-300);
  color: var(--navy-950);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-900);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.7rem, 5.8vw, 5.8rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.3rem;
  letter-spacing: -0.015em;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(78px, 9vw, 132px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  translate: 0 -150%;
  padding: 10px 16px;
  border-radius: 3px;
  background: var(--paper);
  color: var(--navy-900);
  font-weight: 800;
}

.skip-link:focus {
  translate: 0;
}

.top-note {
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.top-note__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.top-note a {
  text-decoration: none;
}

.top-note a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(16, 36, 64, 0.08);
  background: rgba(255, 254, 253, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 86px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.brand small {
  margin-top: 5px;
  color: var(--gold-600);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
}

.main-nav a {
  position: relative;
  color: #344156;
  font-size: 0.79rem;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  scale: 0 1;
  transform-origin: left;
  transition: scale 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  scale: 1;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: translate 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  translate: 0 -2px;
}

.button--header,
.button--navy {
  background: var(--navy-900);
  box-shadow: 0 8px 20px rgba(16, 36, 64, 0.16);
  color: white;
}

.button--header:hover,
.button--navy:hover {
  background: var(--navy-800);
}

.button--gold {
  background: var(--gold-500);
  box-shadow: 0 10px 26px rgba(189, 142, 82, 0.24);
  color: var(--navy-950);
}

.button--gold:hover {
  background: #cca466;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: white;
}

.button--ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-600);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--gold {
  color: var(--gold-300);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(740px, calc(100vh - 120px));
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding-bottom: 60px;
  background: var(--navy-950);
  color: white;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: 0 50% 60px 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(202, 166, 113, 0.16), transparent 24%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
  content: "";
}

.hero__copy {
  z-index: 4;
  display: grid;
  align-items: center;
  background: var(--navy-950);
}

.hero__copy-inner {
  width: min(560px, calc(100% - 64px));
  margin-right: 38px;
  margin-left: max(32px, calc((100vw - var(--container)) / 2));
  padding-block: 72px 112px;
}

.hero h1 {
  max-width: 8.4em;
  margin-bottom: 24px;
  color: white;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.hero__visual {
  position: relative;
  overflow: hidden;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 24, 43, 0.42), transparent 52%), linear-gradient(0deg, rgba(9, 24, 43, 0.12), transparent 45%);
  content: "";
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 50% 50%;
}

.studio-portrait {
  position: relative;
  display: block;
  overflow: visible;
  width: min(560px, calc(100% - 18px));
  aspect-ratio: 1;
  border: 1px solid rgba(169, 121, 63, 0.42);
  background: #dfe2e4;
  box-shadow: var(--shadow-lg);
}

.studio-portrait::after {
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(169, 121, 63, 0.34);
  content: "";
}

.studio-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-portrait {
  position: relative;
  width: min(350px, 100%);
  aspect-ratio: 4 / 5;
  align-self: end;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(220, 192, 149, 0.3);
  border-radius: 50% 50% 4px 4px / 22% 22% 4px 4px;
  box-shadow: 0 28px 70px rgba(2, 12, 24, 0.34);
}

.about-portrait::after {
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.hero-bridge {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 26px;
  left: 0;
  display: grid;
  width: min(760px, calc(100% - 40px));
  grid-template-columns: repeat(2, 1fr);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.hero-bridge > a {
  display: grid;
  min-height: 100px;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  color: var(--navy-900);
  text-decoration: none;
}

.hero-bridge > a + a {
  border-left: 1px solid var(--line);
}

.bridge-icon {
  display: grid;
  width: 48px;
  height: 56px;
  place-items: center;
  border-radius: 50% 50% 6px 6px;
  background: var(--cream-100);
  color: var(--gold-600);
}

.bridge-icon .icon {
  width: 24px;
}

.hero-bridge span:not(.bridge-icon) {
  display: flex;
  flex-direction: column;
}

.hero-bridge small {
  margin-bottom: 5px;
  color: var(--gold-600);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-bridge strong {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.hero-bridge b {
  color: var(--gold-600);
  font-size: 1.2rem;
  transition: translate 180ms ease;
}

.hero-bridge a:hover b {
  translate: 4px;
}

.split-layout,
.process-layout,
.decision-grid,
.faq-layout,
.content-grid,
.contact-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(54px, 8vw, 112px);
}

.editorial-composition {
  position: relative;
  overflow: clip;
  min-height: 520px;
}

.editorial-composition__frame {
  position: absolute;
  inset: 20px 18% 110px 0;
  border: 1px solid rgba(169, 121, 63, 0.4);
  background:
    linear-gradient(155deg, rgba(16, 36, 64, 0.98), rgba(27, 55, 82, 0.94)),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.editorial-composition__frame::before,
.editorial-composition__frame::after {
  position: absolute;
  border: 1px solid rgba(220, 192, 149, 0.28);
  content: "";
}

.editorial-composition__frame::before {
  inset: 32px;
}

.editorial-composition__frame::after {
  top: 20%;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
}

.editorial-composition__paper {
  position: absolute;
  right: 0;
  bottom: 35px;
  width: 64%;
  min-height: 270px;
  padding: 38px;
  rotate: -2deg;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.editorial-composition__paper span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--gold-500);
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
}

.editorial-composition__paper i,
.faq-collage__paper i {
  display: block;
  height: 6px;
  margin-top: 18px;
  background: #e5e0d7;
}

.editorial-composition__paper i:nth-of-type(2),
.faq-collage__paper i:nth-of-type(2) {
  width: 78%;
}

.editorial-composition__paper i:nth-of-type(3),
.faq-collage__paper i:nth-of-type(3) {
  width: 54%;
}

.editorial-composition blockquote {
  position: absolute;
  z-index: 2;
  top: 95px;
  right: 8%;
  margin: 0;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.32;
}

.section-copy h2 {
  max-width: 12em;
  margin-bottom: 24px;
}

.section-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
}

.check-list,
.feature-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 30px;
  color: #3e495a;
}

.check-list li::before,
.feature-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 15px;
  height: 8px;
  border-bottom: 2px solid var(--gold-600);
  border-left: 2px solid var(--gold-600);
  content: "";
  rotate: -45deg;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold-600);
  transition: translate 180ms ease;
}

.text-link:hover span {
  translate: 4px;
}

.text-link--large {
  font-size: 0.82rem;
}

.principles {
  position: relative;
  z-index: 3;
  margin-bottom: -72px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: var(--shadow-lg);
}

.principles article {
  display: grid;
  min-height: 170px;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
  padding: 36px;
  background: var(--paper);
}

.principles article + article {
  border-left: 1px solid var(--line);
}

.principles article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  color: var(--gold-600);
  font-family: var(--serif);
  font-size: 0.82rem;
}

.principles h2 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.principles .principles__featured {
  border-color: transparent;
  background: var(--navy-900);
}

.principles__featured h2,
.principles__featured p {
  color: white;
}

.areas-section {
  padding-top: calc(clamp(78px, 9vw, 132px) + 72px);
  background:
    radial-gradient(circle at 10% 5%, rgba(189, 142, 82, 0.09), transparent 24%),
    var(--cream-100);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.area-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 34px;
}

.area-filters button {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid #d7d0c6;
  border-radius: 999px;
  background: transparent;
  color: #465264;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
}

.area-filters button:hover,
.area-filters button[aria-pressed="true"] {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: white;
}

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

.area-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid transparent;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: translate 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.area-card:hover {
  translate: 0 -5px;
  border-color: rgba(189, 142, 82, 0.5);
  box-shadow: 0 20px 48px rgba(11, 27, 47, 0.12);
}

.area-card[hidden] {
  display: none;
}

.area-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 27px;
  place-items: center;
  border: 1px solid rgba(189, 142, 82, 0.35);
  border-radius: 50% 50% 8px 8px;
  color: var(--gold-600);
}

.area-card__icon .icon {
  width: 28px;
}

.area-card .eyebrow {
  margin-bottom: 9px;
  font-size: 0.62rem;
}

.area-card .eyebrow::before {
  display: none;
}

.area-card h3 {
  margin-bottom: 14px;
}

.area-card h3 a {
  text-decoration: none;
}

.area-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.area-card > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.area-card .text-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  align-self: flex-start;
}

.area-card__details {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.area-card__details summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  list-style: none;
  text-transform: uppercase;
}

.area-card__details summary::-webkit-details-marker {
  display: none;
}

.area-card__details summary span {
  color: var(--gold-600);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
  transition: rotate 180ms ease;
}

.area-card__details[open] summary span {
  rotate: 45deg;
}

.area-card__details ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.professional-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--line);
}

.professional-facts span {
  display: flex;
  min-height: 96px;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.professional-facts strong {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0;
  text-transform: none;
}

.filter-status {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.fact-strip {
  background: var(--navy-900);
  color: white;
}

.fact-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fact-strip__grid > div {
  display: flex;
  min-height: 138px;
  align-items: center;
  gap: 18px;
  padding: 26px 34px;
}

.fact-strip__grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.fact-strip strong {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.fact-strip span {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  line-height: 1.4;
}

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

.process-layout {
  align-items: start;
}

.process-steps {
  position: relative;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps::before {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 30px;
  width: 1px;
  background: var(--gold-300);
  content: "";
}

.process-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 130px;
  grid-template-columns: 60px 1fr;
  align-items: start;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--cream-50);
}

.process-steps li > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
  font-family: var(--serif);
}

.process-steps h3 {
  margin: 4px 0 8px;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.decision-section {
  overflow: hidden;
  background: var(--cream-100);
}

.decision-visual {
  position: relative;
  min-height: 470px;
}

.decision-visual::before {
  position: absolute;
  inset: 12% 12% 12% 12%;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  content: "";
}

.decision-visual::after {
  position: absolute;
  inset: 22% 22% 22% 22%;
  border: 1px dashed rgba(16, 36, 64, 0.25);
  border-radius: 50%;
  content: "";
}

.decision-visual__ring {
  position: absolute;
  top: 5%;
  left: 15%;
  width: 80%;
  height: 80%;
  border: 40px solid rgba(189, 142, 82, 0.12);
  border-radius: 50%;
}

.decision-visual__line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  rotate: -14deg;
}

.decision-visual > div {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  translate: -50% -50%;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  color: var(--gold-300);
  text-align: center;
}

.decision-visual > div small {
  margin-top: -44px;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.icon--large {
  width: 64px;
  height: 64px;
}

.notice-card,
.pending-card {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold-500);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.notice-card strong,
.pending-card strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.notice-card p,
.pending-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.faq-collage {
  position: relative;
  min-height: 510px;
}

.faq-collage__navy {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 67%;
  height: 68%;
  place-items: center;
  background: var(--navy-900);
  color: rgba(220, 192, 149, 0.3);
  font-family: var(--serif);
  font-size: 12rem;
  line-height: 1;
}

.faq-collage__gold {
  position: absolute;
  top: 12%;
  right: 0;
  width: 48%;
  height: 45%;
  border: 1px solid var(--gold-500);
  background: repeating-linear-gradient(135deg, rgba(189, 142, 82, 0.12) 0 4px, transparent 4px 14px);
}

.faq-collage__paper {
  position: absolute;
  right: 7%;
  bottom: 0;
  width: 64%;
  min-height: 245px;
  padding: 38px;
  background: var(--cream-100);
  box-shadow: var(--shadow-lg);
}

.faq-collage__paper span {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 2rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
}

.faq-symbol {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--gold-600);
  font-family: var(--sans);
  font-size: 1.2rem;
  transition: rotate 180ms ease;
}

.faq-item button[aria-expanded="true"] .faq-symbol {
  rotate: 45deg;
}

.faq-answer {
  max-width: 640px;
  padding: 0 48px 24px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-answer p {
  margin: 0;
}

.contact-band {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: white;
}

.contact-band::before {
  position: absolute;
  top: -170px;
  right: 4%;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(220, 192, 149, 0.2);
  border-radius: 50%;
  content: "";
}

.contact-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 270px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding-block: 54px;
}

.contact-band h2 {
  max-width: 700px;
  margin-bottom: 12px;
  color: white;
}

.contact-band p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding-block: 34px 96px;
  background:
    radial-gradient(circle at 82% 20%, rgba(189, 142, 82, 0.18), transparent 23%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
  color: white;
}

.inner-hero::after {
  position: absolute;
  right: -9%;
  bottom: -38%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(220, 192, 149, 0.13);
  border-radius: 50%;
  content: "";
}

.inner-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 400px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 60px;
}

.inner-hero h1 {
  max-width: 11em;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.inner-hero__grid > div:first-child > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.inner-hero .button {
  margin-top: 12px;
}

.inner-hero--short {
  padding-bottom: 84px;
}

.inner-hero--short h1 {
  margin-top: 70px;
}

.inner-hero--short > .container > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  color: var(--gold-300);
  content: "/";
}

.breadcrumb a {
  color: white;
}

.area-emblem {
  position: relative;
  display: grid;
  width: min(340px, 100%);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(220, 192, 149, 0.35);
  border-radius: 50%;
  color: var(--gold-300);
}

.area-emblem::before,
.area-emblem::after {
  position: absolute;
  border: 1px solid rgba(220, 192, 149, 0.16);
  border-radius: 50%;
  content: "";
}

.area-emblem::before {
  inset: 28px;
}

.area-emblem::after {
  inset: 58px;
}

.area-emblem .icon--xl {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
}

.area-emblem span {
  position: absolute;
  bottom: 62px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.area-emblem--monogram strong {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 5rem;
}

.content-grid,
.contact-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.prose .eyebrow + h2 {
  margin-top: 0;
}

.prose p {
  color: #4f5b6b;
}

.feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
}

.case-prep,
.contact-status {
  position: sticky;
  top: 120px;
  padding: 38px;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  color: white;
}

.case-prep h2,
.contact-status h2 {
  margin-bottom: 28px;
  color: white;
  font-size: 2rem;
}

.case-prep ol {
  display: grid;
  gap: 20px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.case-prep li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.case-prep li span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(220, 192, 149, 0.5);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: var(--serif);
}

.case-prep .text-link {
  color: white;
}

.faq-section--compact {
  background: var(--cream-100);
}

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

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

.related-card,
.values-grid article {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--cream-50);
}

.related-card > div,
.values-grid article > .icon {
  width: 42px;
  margin-bottom: 24px;
  color: var(--gold-600);
}

.related-card h3 a {
  text-decoration: none;
}

.related-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.related-card p,
.values-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.values-section {
  background: var(--cream-100);
}

.values-grid article {
  min-height: 230px;
  padding: 38px;
  background: var(--paper);
}

.contact-checklist {
  display: grid;
  gap: 16px;
}

.contact-checklist > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 2px 22px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.contact-checklist span {
  grid-row: span 2;
  color: var(--gold-600);
  font-family: var(--serif);
  font-size: 2rem;
}

.contact-checklist h3 {
  margin-bottom: 5px;
}

.contact-checklist p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-status dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.contact-status dl > div {
  padding-block: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-status dt {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-status dd {
  margin: 4px 0 0;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.contact-status__notice {
  margin: 26px 0 0;
  padding: 16px;
  border-left: 2px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.location-section {
  background:
    linear-gradient(rgba(16, 36, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 64, 0.035) 1px, transparent 1px),
    var(--cream-100);
  background-size: 42px 42px;
}

.location-section .section-heading {
  max-width: 860px;
  margin-inline: auto;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: stretch;
  gap: 20px;
  margin-top: 48px;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.map-frame {
  min-height: 470px;
  background: #e6e2da;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: 0;
}

.map-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
}

.map-card__caption .eyebrow {
  margin-bottom: 8px;
}

.map-card__caption h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.map-card__caption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.map-card__caption .button {
  flex: 0 0 auto;
}

.location-section .contact-status {
  position: relative;
  top: auto;
  height: 100%;
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.text-link--on-dark {
  color: white;
}

.confidentiality {
  background: var(--cream-100);
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding-block: 80px;
  background: var(--navy-900);
  color: white;
  text-align: center;
}

.not-found .eyebrow {
  justify-content: center;
}

.not-found > div > strong {
  display: block;
  color: rgba(220, 192, 149, 0.25);
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 17rem);
  line-height: 0.8;
}

.not-found h1 {
  margin: 20px 0;
  color: white;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.not-found p {
  color: rgba(255, 255, 255, 0.72);
}

.not-found > div > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.site-footer {
  padding-top: 76px;
  background: var(--navy-950);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 0.7fr;
  gap: 56px;
  padding-bottom: 56px;
}

.brand--footer {
  color: white;
}

.footer-brand > p {
  max-width: 360px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.84rem;
}

.footer-phone a {
  color: var(--gold-300);
  font-weight: 800;
  text-decoration: none;
}

.footer-phone a:hover {
  text-decoration: underline;
}

.footer-brand .footer-status {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.73rem;
}

.footer-status span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 0.5em;
  border-radius: 50%;
  background: var(--gold-500);
}

.site-footer h2 {
  margin-bottom: 22px;
  color: white;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  list-style: none;
}

.footer-links--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-legal {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}

.footer-legal p {
  margin: 0;
}

.footer-legal a {
  flex: 0 0 auto;
  color: var(--gold-300);
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  z-index: 1000;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: #176b4d;
  box-shadow: 0 16px 34px rgba(8, 28, 22, 0.3);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 180ms ease, translate 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  translate: 0 -2px;
  background: #10583e;
  box-shadow: 0 20px 40px rgba(8, 28, 22, 0.36);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.reveal {
  opacity: 0;
  translate: 0 18px;
  transition: opacity 500ms ease, translate 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  translate: 0;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .button--header {
    display: none;
  }

  .main-nav {
    grid-column: 3;
  }

  .hero__copy-inner {
    margin-left: 32px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1.4fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 82px;
  }

  .top-note {
    display: none;
  }

  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 72px;
    min-height: 44px;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--navy-900);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .menu-toggle__bars,
  .menu-toggle__bars::before,
  .menu-toggle__bars::after {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: rotate 180ms ease, translate 180ms ease, opacity 180ms ease;
  }

  .menu-toggle__bars::before {
    translate: 0 -7px;
  }

  .menu-toggle__bars::after {
    translate: 0 5px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__bars {
    rotate: 45deg;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
    translate: 0;
    rotate: 90deg;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
    opacity: 0;
  }

  .main-nav {
    position: fixed;
    z-index: 49;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 32px 24px calc(32px + env(safe-area-inset-bottom));
    background: var(--navy-950);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 19px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    font-family: var(--serif);
    font-size: 1.6rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
    padding-bottom: 92px;
  }

  .hero::after {
    display: none;
  }

  .hero__visual {
    height: 360px;
  }

  .hero__visual::after {
    background: linear-gradient(0deg, var(--navy-950), transparent 38%);
  }

  .hero__visual img {
    min-height: 0;
    object-position: center 50%;
  }

  .hero__copy-inner {
    width: min(calc(100% - 40px), 680px);
    margin-inline: auto;
    padding-block: 44px 88px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.8rem);
  }

  .hero-bridge {
    bottom: 28px;
    grid-template-columns: 1fr;
  }

  .hero-bridge > a {
    min-height: 84px;
    padding: 14px 18px;
  }

  .hero-bridge > a + a {
    display: none;
  }

  .split-layout,
  .process-layout,
  .decision-grid,
  .faq-layout,
  .content-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    gap: 18px;
  }

  .principles {
    margin-bottom: -42px;
  }

  .principles-grid,
  .fact-strip__grid {
    grid-template-columns: 1fr;
  }

  .principles article {
    min-height: 130px;
  }

  .principles article + article,
  .fact-strip__grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principles .principles__featured + article {
    border-top-color: transparent;
  }

  .areas-section {
    padding-top: calc(clamp(78px, 9vw, 132px) + 42px);
  }

  .fact-strip__grid > div {
    min-height: 104px;
  }

  .fact-strip__grid > div + div {
    border-top-color: rgba(255, 255, 255, 0.13);
  }

  .decision-grid {
    gap: 34px;
  }

  .decision-visual {
    min-height: 390px;
  }

  .faq-layout {
    gap: 48px;
  }

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

  .about-portrait {
    width: min(310px, 78vw);
    justify-self: start;
    margin-top: 26px;
  }

  .area-emblem {
    width: 240px;
    justify-self: start;
  }

  .case-prep,
  .contact-status {
    position: static;
  }

  .related-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 70px;
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 52px;
    padding: 8px 14px 8px 10px;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .hero__visual {
    height: 290px;
  }

  .about-portrait {
    width: min(270px, 76vw);
  }

  .hero__copy-inner {
    width: calc(100% - 28px);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .professional-facts {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 330px;
    height: 330px;
  }

  .map-card__caption {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .map-card__caption .button {
    width: 100%;
  }

  .hero-bridge {
    width: calc(100% - 28px);
  }

  .editorial-composition {
    min-height: 410px;
  }

  .editorial-composition__frame {
    right: 13%;
    bottom: 80px;
  }

  .editorial-composition__paper {
    width: 75%;
    min-height: 210px;
    padding: 26px;
  }

  .editorial-composition blockquote {
    top: 82px;
  }

  .principles article {
    padding: 28px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .area-card {
    min-height: 0;
    padding: 28px;
  }

  .area-filters {
    justify-content: flex-start;
  }

  .process-steps li {
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 22px;
  }

  .process-steps li > span {
    width: 44px;
    height: 44px;
  }

  .process-steps::before {
    left: 44px;
  }

  .decision-visual {
    min-height: 310px;
  }

  .decision-visual > div {
    width: 150px;
    height: 150px;
  }

  .decision-visual > div small {
    margin-top: -28px;
  }

  .faq-collage {
    min-height: 390px;
  }

  .faq-collage__navy {
    font-size: 9rem;
  }

  .faq-collage__paper {
    width: 78%;
    min-height: 200px;
    padding: 28px;
  }

  .inner-hero {
    padding-block: 24px 72px;
  }

  .breadcrumb {
    margin-bottom: 54px;
  }

  .inner-hero__grid {
    min-height: 0;
  }

  .area-emblem {
    display: none;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .case-prep,
  .contact-status {
    padding: 28px;
  }

  .contact-checklist > div {
    grid-template-columns: 44px 1fr;
    gap: 2px 14px;
    padding: 22px;
  }

  .footer-links--columns {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px calc(22px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    translate: none;
  }
}

@media print {
  .top-note,
  .site-header,
  .hero-bridge,
  .contact-band,
  .site-footer,
  .whatsapp-float,
  .area-filters,
  .button {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 11pt;
  }

  .section,
  .inner-hero {
    padding-block: 24px;
    background: white;
    color: black;
  }

  .inner-hero h1,
  .inner-hero p,
  h1,
  h2,
  h3 {
    color: black !important;
  }

  .reveal {
    opacity: 1;
    translate: none;
  }
}
