:root {
  --ink: #101725;
  --ink-soft: #1a2435;
  --paper: #f4f0e8;
  --paper-2: #ebe5da;
  --white: #ffffff;
  --muted: #6c7280;
  --gold: #c9a86a;
  --gold-light: #e9d5aa;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(16, 23, 37, 0.12);
  --shadow: 0 28px 70px rgba(7, 14, 26, 0.20);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold-light);
}

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

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(16, 23, 37, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(4, 8, 15, 0.16);
  animation: headerDrop 240ms ease both;
}

@keyframes headerDrop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

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

.brand-copy strong {
  font-size: 15px;
  letter-spacing: 0.14em;
}

.brand-copy small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 31px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.site-menu a {
  transition: color 160ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--white);
}

.site-menu .nav-cta {
  padding: 10px 17px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 172px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 14%, rgba(201, 168, 106, 0.12), transparent 34%),
    linear-gradient(142deg, #0d1421 0%, #121c2d 53%, #0d1523 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 86%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 86%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 8%;
  right: -6%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(201, 168, 106, 0.18);
  box-shadow: inset 0 0 90px rgba(201, 168, 106, 0.03);
}

.hero-glow-two {
  top: 24%;
  right: 8%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.75fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: center;
  padding-bottom: 82px;
}

.hero-copy {
  padding-bottom: 12px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: #8e6c34;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(50px, 5.6vw, 78px);
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lead {
  max-width: 690px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.72;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 37px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 15px 36px rgba(201, 168, 106, 0.17);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d5b97e;
  box-shadow: 0 18px 43px rgba(201, 168, 106, 0.23);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.phone-icon {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(233, 213, 170, 0.32);
  border-radius: 50%;
  font-size: 11px;
}

.focus-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  margin-top: 47px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.focus-row span {
  position: relative;
  padding-left: 13px;
}

.focus-row span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.consultation-card {
  position: relative;
  padding: clamp(27px, 3vw, 38px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consultation-card::before {
  content: "";
  position: absolute;
  inset: 10px 10px auto auto;
  width: 54px;
  height: 54px;
  border-top: 1px solid rgba(16, 23, 37, 0.16);
  border-right: 1px solid rgba(16, 23, 37, 0.16);
  border-radius: 0 14px 0 0;
}

.card-kicker {
  color: #8e6c34;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.consultation-card h2 {
  margin: 8px 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.consultation-card > p {
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.consultation-card label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
}

.consultation-card label > span {
  color: #343b48;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #f7f5f0;
  border: 1px solid rgba(16, 23, 37, 0.12);
  border-radius: 11px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input,
select {
  height: 47px;
  padding: 0 13px;
}

textarea {
  min-height: 96px;
  padding: 12px 13px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9a9da3;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: rgba(142, 108, 52, 0.65);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.12);
}

input.is-invalid,
select.is-invalid {
  border-color: #a64242;
  box-shadow: 0 0 0 4px rgba(166, 66, 66, 0.10);
}

.button-full {
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
  border-radius: 11px;
}

.form-note,
.form-status {
  margin: 9px 0 0;
  color: #7f838c;
  font-size: 10px;
  line-height: 1.5;
}

.form-status {
  color: #8e6c34;
  font-size: 12px;
  font-weight: 700;
}

.credibility-strip {
  position: relative;
  z-index: 2;
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.credibility-strip > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 21px 27px;
  border-right: 1px solid var(--line-dark);
}

.credibility-strip > div:first-child {
  border-left: 1px solid var(--line-dark);
}

.credibility-strip b {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
}

.credibility-strip span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding: clamp(90px, 10vw, 138px) 0;
}

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

.section-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
  font-size: clamp(42px, 5vw, 63px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.split-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-card {
  min-height: 305px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: rgba(255, 255, 255, 0.33);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 1;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(22, 29, 39, 0.08);
  transform: translateY(-4px);
}

.service-number {
  color: #9b7840;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.service-card h3 {
  max-width: 280px;
  margin: auto 0 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 168, 106, 0.08), transparent 28%),
    var(--ink-soft);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(65px, 9vw, 120px);
  align-items: center;
}

.portrait-card {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(201, 168, 106, 0.15), transparent 44%),
    linear-gradient(145deg, #253149, #151f31);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 180px 180px 18px 18px;
  box-shadow: 0 25px 60px rgba(5, 10, 18, 0.25);
}

.portrait-card::before,
.portrait-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(233, 213, 170, 0.16);
  border-radius: 50%;
}

.portrait-card::before {
  width: 460px;
  height: 460px;
  top: 14px;
  left: -70px;
}

.portrait-card::after {
  width: 270px;
  height: 270px;
  top: 107px;
  left: 25px;
}

.portrait-monogram {
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(100px, 13vw, 165px);
  letter-spacing: -0.09em;
  transform: translateX(-6px);
}

.portrait-lines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,0.22) 50%, transparent 50.3%);
  background-size: 54px 100%;
}

.portrait-caption {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  background: rgba(10, 17, 29, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.portrait-caption span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portrait-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.about-copy h2 {
  max-width: 680px;
}

.about-lead {
  margin: 28px 0 13px;
  color: rgba(255, 255, 255, 0.83);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.52;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.75;
}

.about-points {
  display: grid;
  gap: 0;
  margin-top: 39px;
  border-top: 1px solid var(--line-dark);
}

.about-points > div {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 17px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line-dark);
}

.about-points span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.about-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.68;
}

.about-points strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 15px;
}

.centered-heading {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}

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

.centered-heading > p:last-child {
  max-width: 670px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.process-grid article {
  position: relative;
  min-height: 325px;
  padding: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line-light);
  border-radius: 16px;
}

.process-grid article::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(142, 108, 52, 0.13);
  border-radius: 50%;
}

.process-grid article > span {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: #8e6c34;
  border: 1px solid rgba(142, 108, 52, 0.27);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.process-grid h3 {
  margin: 74px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.faq-section {
  color: var(--white);
  background: #0e1725;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 10vw, 135px);
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.56);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.accordion {
  border-top: 1px solid var(--line-dark);
}

.accordion details {
  border-bottom: 1px solid var(--line-dark);
}

.accordion summary {
  position: relative;
  padding: 27px 52px 27px 0;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.28;
  cursor: pointer;
}

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

.accordion summary::before,
.accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 1px;
  background: var(--gold-light);
  transition: transform 180ms ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0deg);
}

.accordion details p {
  max-width: 680px;
  margin: -8px 0 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.75;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 128px) 0;
  color: var(--ink);
  background: var(--gold);
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -280px;
  right: -190px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(16, 23, 37, 0.15);
  border-radius: 50%;
}

.contact-section::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -90px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(16, 23, 37, 0.12);
  border-radius: 50%;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.7fr);
  gap: clamp(70px, 10vw, 130px);
  align-items: center;
}

.contact-copy .eyebrow {
  color: rgba(16, 23, 37, 0.68);
}

.contact-copy h2 {
  max-width: 700px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(16, 23, 37, 0.69);
  font-size: 17px;
}

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

.button-light:hover,
.button-light:focus-visible {
  background: #1e2a3e;
}

.button-ghost-light {
  color: var(--ink);
  border-color: rgba(16, 23, 37, 0.28);
}

.button-ghost-light:hover,
.button-ghost-light:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(16, 23, 37, 0.45);
}

.contact-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(55, 41, 17, 0.16);
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line-light);
}

.mini-monogram {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.contact-person > div:last-child {
  display: grid;
}

.contact-person strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}

.contact-person span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.contact-card dl {
  margin: 0;
}

.contact-card dl > div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-card dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-card dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.62);
  background: #090f19;
}

.footer-layout {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand-footer .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-layout p {
  margin: 0;
  font-size: 12px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

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

@media (max-width: 1020px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .consultation-card {
    max-width: 680px;
  }

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

  .about-layout {
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
    gap: 55px;
  }

  .portrait-card {
    min-height: 500px;
  }

  .process-grid {
    gap: 14px;
  }

  .process-grid article {
    padding: 27px;
  }

  .contact-layout {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    background: rgba(16, 23, 37, 0.94);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-menu {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 25px 24px 40px;
    background: #101725;
    transform: translateX(100%);
    transition: transform 210ms ease;
  }

  .site-menu.is-open {
    transform: translateX(0);
  }

  .site-menu a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 18px;
  }

  .site-menu .nav-cta {
    margin-top: 18px;
    padding: 14px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hero {
    padding-top: 130px;
  }

  .hero-layout {
    gap: 52px;
    padding-bottom: 63px;
  }

  .credibility-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .credibility-strip > div:nth-child(3) {
    border-left: 1px solid var(--line-dark);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    max-width: 540px;
  }

  .faq-intro {
    position: static;
  }

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

  .process-grid article {
    min-height: 270px;
  }

  .process-grid h3 {
    margin-top: 55px;
  }

  .contact-card {
    max-width: 550px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 30px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 590px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.5vw, 60px);
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .focus-row {
    gap: 13px 18px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .consultation-card {
    padding: 24px 19px;
    border-radius: 17px;
  }

  .credibility-strip > div {
    padding: 19px 13px;
  }

  .credibility-strip span {
    font-size: 9px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

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

  .service-card {
    min-height: 270px;
    padding: 28px;
  }

  .portrait-card {
    min-height: 440px;
    border-radius: 130px 130px 16px 16px;
  }

  .about-lead {
    font-size: 21px;
  }

  .about-points > div {
    grid-template-columns: 37px 1fr;
  }

  .accordion summary {
    font-size: 20px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact-card dl > div {
    grid-template-columns: 67px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
