@font-face {
  font-family: "DVAGType";
  src: url("../fonts/DVAGType-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "DVAGType";
  src: url("../fonts/DVAGType-LightItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "DVAGType";
  src: url("../fonts/DVAGType-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DVAGType";
  src: url("../fonts/DVAGType-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DVAGType";
  src: url("../fonts/DVAGType-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "DVAGType";
  src: url("../fonts/DVAGType-BoldItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #111111;
  --anthracite: #202020;
  --charcoal: #2b2b2b;
  --gold: #c8ad33;
  --gold-light: #e5d684;
  --paper: #f5f3ed;
  --white: #ffffff;
  --muted: #686762;
  --line: #d9d5ca;
  --success: #245c43;
  --danger: #8f2d23;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
  --radius: 1.1rem;
  --max-width: 76rem;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DVAGType", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  text-decoration-thickness: 0.14em;
}

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

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

h1,
h2,
h3 {
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.55rem, 10vw, 5.8rem);
  max-width: 12ch;
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(2rem, 7vw, 3.7rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  border-radius: 0.5rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: var(--white);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
  padding-block: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-role {
  margin-top: 0.3rem;
  color: #d6d3ca;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.2rem;
}

.language-switch a,
.language-switch span {
  display: grid;
  place-items: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.language-switch [aria-current="page"] {
  background: var(--gold);
  color: var(--ink);
}

.nav-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.main-nav {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding-block: 0.35rem;
  scrollbar-width: thin;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  flex: 0 0 auto;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: #ece9e0;
  font-size: 0.9rem;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(200, 173, 51, 0.14);
  color: var(--gold-light);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 18%, rgba(200, 173, 51, 0.2), transparent 24rem),
    linear-gradient(145deg, #111111 0%, #1f1f1f 72%, #151515 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  top: -11rem;
  right: -11rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(200, 173, 51, 0.48);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3.5rem, 9vw, 7.5rem) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.2rem;
  height: 2px;
  background: var(--gold);
  content: "";
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: #dfdcd4;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  gap: 0.7rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.button::after {
  content: "→";
  transition: transform 160ms ease;
}

.button:hover::after {
  transform: translateX(0.2rem);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  margin-top: 1.35rem;
  color: #bdb9af;
  font-size: 0.85rem;
}

.hero-meta span::before {
  color: var(--gold);
  content: "✓";
  margin-right: 0.35rem;
}

.portrait-wrap {
  align-self: end;
  justify-self: center;
  width: min(100%, 24rem);
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.65rem;
  background: #111111;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
}

.portrait-card picture {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #deddd9;
}

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

.portrait-label {
  position: static;
  max-width: none;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--gold);
  background: #111111;
  color: var(--white);
}

.portrait-label strong {
  display: block;
}

.portrait-label span {
  display: block;
  margin-top: 0.15rem;
  color: #d1cdc2;
  font-size: 0.8rem;
}

.section {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.section-white {
  background: var(--white);
}

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

.section-intro {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.section-intro p {
  max-width: 43rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-intro p {
  color: #cfccc3;
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(17, 17, 17, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-0.25rem);
  border-color: #b8a65f;
  box-shadow: var(--shadow);
}

.service-card-featured {
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
}

.service-card-gold {
  border-color: transparent;
  background: var(--gold);
  color: var(--ink);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.card-index {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-card-featured .card-index {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--gold-light);
}

.service-card-gold .card-index {
  border-color: rgba(17, 17, 17, 0.28);
  color: var(--ink);
}

.card-status {
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: #edf4ef;
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-card-featured .card-status {
  background: rgba(200, 173, 51, 0.15);
  color: var(--gold-light);
}

.service-card-gold .card-status {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.service-card h3 {
  max-width: 13ch;
}

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

.service-card-featured p {
  color: #d4d1c8;
}

.service-card-gold p {
  color: #363124;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  margin-top: auto;
  font-weight: 700;
}

.card-link::after {
  content: "→";
}

.notice {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 0.75rem 0.75rem 0;
  background: #fbf8e9;
}

.notice p {
  margin: 0;
}

.process-grid {
  display: grid;
  gap: 2rem;
}

.process-step {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-number {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-step p {
  margin-bottom: 0;
  color: #c7c3b9;
}

.advisor-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #efede7;
  box-shadow: var(--shadow);
}

.advisor-portrait {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #deddd9, #f6f5f1);
}

.advisor-portrait picture {
  display: block;
  height: 100%;
}

.advisor-portrait img {
  width: 100%;
  height: 100%;
  max-height: 42rem;
  object-fit: contain;
  object-position: center;
}

.advisor-copy {
  align-self: center;
  padding: clamp(1.6rem, 6vw, 4rem);
}

.advisor-copy .eyebrow {
  color: #796816;
}

.advisor-copy h2 {
  max-width: 13ch;
}

.advisor-copy p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.appointment-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border-radius: var(--radius);
  background: var(--gold);
}

.appointment-panel h2 {
  max-width: 13ch;
}

.appointment-panel p {
  max-width: 40rem;
  color: #3f3823;
}

.appointment-actions {
  display: grid;
  gap: 0.75rem;
}

.appointment-actions .button {
  width: 100%;
}

.stack-top {
  margin-top: 2rem;
}

.emergency {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid #e2b9b2;
  border-radius: var(--radius);
  background: #fff7f5;
}

.emergency h2 {
  margin: 0;
  color: var(--danger);
  font-size: clamp(1.6rem, 5vw, 2.15rem);
}

.emergency p {
  margin: 0;
}

.page-hero {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 173, 51, 0.22), transparent 18rem),
    var(--ink);
  color: var(--white);
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero p {
  max-width: 42rem;
  margin-bottom: 0;
  color: #d8d4ca;
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card h2 {
  font-size: 1.55rem;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-value {
  display: inline-block;
  margin-block: 0.35rem 0.8rem;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
}

.content-layout {
  display: grid;
  gap: 2rem;
}

.content-layout > * {
  min-width: 0;
}

.legal-content {
  max-width: 52rem;
  overflow-wrap: anywhere;
}

.legal-content h2 {
  margin-top: 2.7rem;
  font-size: clamp(1.65rem, 5vw, 2.25rem);
}

.legal-content h3 {
  margin-top: 1.8rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.4rem;
}

.legal-box {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-box p:last-child {
  margin-bottom: 0;
}

.page-aside {
  align-self: start;
  padding: 1.25rem;
  border-top: 3px solid var(--gold);
  background: #ebe8df;
}

.page-aside strong {
  display: block;
  margin-bottom: 0.5rem;
}

.site-footer {
  padding-block: 3rem 2rem;
  background: #0c0c0c;
  color: #d5d1c7;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-copy {
  max-width: 32rem;
  color: #aaa69d;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.footer-nav a {
  min-height: 2.75rem;
}

.footer-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f8b82;
  font-size: 0.82rem;
}

.language-choice {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.language-choice-inner {
  max-width: 42rem;
}

.language-choice img {
  width: 4.5rem;
  margin: 0 auto 1.5rem;
}

.language-choice h1 {
  max-width: none;
  font-size: clamp(2.2rem, 9vw, 4.5rem);
}

.language-choice .button-row {
  justify-content: center;
}

@media (min-width: 42rem) {
  .container {
    width: min(calc(100% - 3rem), var(--max-width));
  }

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

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

  .appointment-panel {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.55fr);
  }

  .emergency {
    grid-template-columns: minmax(14rem, 0.6fr) minmax(0, 1fr);
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 58rem) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .brand-role {
    font-size: 0.78rem;
  }

  .nav-wrap {
    position: static;
    height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav {
    justify-content: flex-end;
    align-items: center;
    height: auto;
    padding-block: 0.35rem;
  }

  .main-nav a {
    min-height: 2.65rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.8fr);
    align-items: center;
    padding-top: clamp(4rem, 7vw, 6.5rem);
  }

  .advisor-panel {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1fr);
  }

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

  .service-card {
    padding: 1.65rem;
  }

  .section-intro {
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 0.75fr);
    align-items: end;
  }

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

  .content-layout {
    grid-template-columns: minmax(0, 1fr) 17rem;
    align-items: start;
  }

  .page-aside {
    position: sticky;
    top: 7rem;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .skip-link,
  .button-row,
  .page-aside {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-family: Arial, sans-serif;
  }

  .section,
  .page-hero {
    padding-block: 1rem;
    background: #fff;
    color: #000;
  }

  .legal-content {
    max-width: none;
  }

  a {
    text-decoration: none;
  }
}
