:root {
  --ink: #070707;
  --ink-soft: #10100f;
  --panel: #151513;
  --panel-light: #1b1a17;
  --paper: #f4f0e7;
  --paper-muted: #c6c0b4;
  --gold: #d7ac4f;
  --gold-light: #f2d783;
  --gold-dark: #8e6824;
  --line: rgba(221, 181, 88, 0.22);
  --line-soft: rgba(255, 255, 255, 0.11);
  --success: #8bbf90;
  --danger: #e08d80;
  --max: 1180px;
  --radius: 18px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--gold-light);
  color: #111;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

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

.section--line {
  border-top: 1px solid var(--line-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.section--light .eyebrow {
  color: #8b661d;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 6.8vw, 6.7rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.7vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.3;
}

.gold-text {
  color: var(--gold-light);
  font-style: italic;
}

.lead {
  max-width: 660px;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.section--light .lead,
.section--light .muted {
  color: #656158;
}

.muted {
  color: var(--paper-muted);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), #bf8d31);
  box-shadow: 0 12px 32px rgba(185, 135, 41, 0.2);
  color: #15120c;
}

.btn--gold:hover {
  background: linear-gradient(135deg, #ffe6a2, #c9973b);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(10, 10, 10, 0.25);
  color: var(--paper);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--dark {
  background: #151513;
  color: #fff;
}

.btn svg,
.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.btn:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-color: var(--line-soft);
  background: rgba(7, 7, 7, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 48px;
  height: 43px;
  object-fit: cover;
}

.brand__text {
  font-family: var(--serif);
  font-size: 1.17rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

.brand__text span {
  display: block;
  margin-top: 5px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__links a {
  position: relative;
  color: #ddd8cd;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: #fff;
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-social {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--gold-light);
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-social:hover {
  border-color: var(--gold);
  background: rgba(215, 172, 79, 0.09);
  transform: translateY(-2px);
}

.header-social svg,
.social-band__icon svg,
.footer-social-link svg {
  width: 19px;
  height: 19px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
  background: #090909;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.83) 37%, rgba(5, 5, 5, 0.24) 70%, rgba(5, 5, 5, 0.25) 100%), url("../images/hero-architecture.webp");
  background-position: center;
  background-size: cover;
  content: "";
  transform: scale(1.015);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--ink));
  content: "";
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__content .lead {
  max-width: 610px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 28px;
  margin-top: 42px;
  color: #d3cec4;
  font-size: 0.86rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row svg {
  width: 15px;
  height: 15px;
  color: var(--gold-light);
}

.hero__rail {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #bdb8ae;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__rail::after {
  width: 1px;
  height: 60px;
  background: var(--gold);
  content: "";
}

.proof-wrap {
  position: relative;
  z-index: 5;
  margin-top: -44px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(13, 13, 12, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.proof-strip--four {
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 126px;
  padding: 25px 28px;
  border-right: 1px solid var(--line-soft);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.7vw, 2.45rem);
  font-weight: 400;
  line-height: 1.1;
}

.proof-item span {
  color: #b9b4aa;
  font-size: 0.82rem;
}

.intro-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.intro-grid h2,
.split-grid h2,
.contact-grid h2 {
  max-width: 12ch;
}

.intro-copy {
  padding-top: 18px;
}

.intro-copy p {
  max-width: 620px;
  color: #5d5951;
  font-size: 1.08rem;
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  color: #312e28;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
}

.signature-line::before {
  width: 48px;
  height: 1px;
  background: #a67c2e;
  content: "";
}

.advisor-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 27px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(36, 32, 25, 0.14);
}

.advisor-signature strong,
.advisor-signature span {
  display: block;
}

.advisor-signature strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
}

.advisor-signature span {
  color: #6c675e;
  font-size: 0.8rem;
}

.advisor-signature__mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #151513;
  color: var(--gold-light);
  font-family: var(--serif);
  place-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 510px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  isolation: isolate;
}

.service-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(0.72);
  transform: scale(1.02);
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}

.service-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.06) 10%, rgba(5, 5, 5, 0.42) 54%, rgba(5, 5, 5, 0.98) 100%);
  content: "";
}

.service-card:hover::before {
  filter: saturate(0.95);
  transform: scale(1.075);
}

.service-card--estate::before {
  background-image: url("../images/hero-architecture.webp");
  background-position: 70% center;
}

.service-card--insurance::before {
  background-image: url("../images/service-protection.webp");
}

.service-card--energy::before {
  background-image: url("../images/service-energy.webp");
}

.service-card__number {
  position: absolute;
  top: 24px;
  left: 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 2.05rem;
  font-weight: 400;
}

.service-card p {
  color: #cbc6bd;
  font-size: 0.95rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 750;
}

.opportunity-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  overflow: hidden;
  margin-top: 72px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at 86% 16%, rgba(215, 172, 79, 0.16), transparent 34%), #0b0b0a;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.2);
  color: var(--paper);
}

.opportunity-card::before {
  position: absolute;
  top: -90px;
  right: -75px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(242, 215, 131, 0.12);
  border-radius: 50%;
  content: "";
}

.opportunity-copy,
.opportunity-meter,
.opportunity-note {
  position: relative;
  z-index: 1;
}

.opportunity-card .eyebrow {
  color: var(--gold-light);
}

.opportunity-copy h2 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.opportunity-copy p {
  max-width: 590px;
  margin-bottom: 28px;
  color: #c5c0b7;
}

.opportunity-meter {
  align-self: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(242, 215, 131, 0.22);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.opportunity-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.opportunity-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(242, 215, 131, 0.45);
  animation: opportunity-pulse 2s infinite;
}

@keyframes opportunity-pulse {
  70% { box-shadow: 0 0 0 9px rgba(242, 215, 131, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 215, 131, 0); }
}

.opportunity-counter {
  display: block;
  margin: 18px 0 10px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}

.opportunity-meter > p {
  max-width: 440px;
  color: #aaa59b;
  font-size: 0.86rem;
}

.opportunity-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 25px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--line-soft);
}

.opportunity-facts span {
  padding: 15px;
  background: #10100f;
  color: #8f8b83;
  font-size: 0.74rem;
}

.opportunity-facts b {
  display: block;
  color: #eee8dc;
  font-size: 0.92rem;
}

.opportunity-note {
  grid-column: 1 / -1;
  margin: -12px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: #7f7b74;
  font-size: 0.72rem;
}

.opportunity-note strong {
  color: #aaa59b;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-head h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.section-head .lead {
  max-width: 480px;
  margin-bottom: 8px;
}

.feature-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.13);
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 23px 20px;
  background: var(--paper);
}

.feature-list b {
  color: #956c20;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.feature-list span {
  color: #34312b;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  border-radius: var(--radius);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(238, 203, 118, 0.3);
  border-radius: 11px;
  content: "";
  pointer-events: none;
}

.image-frame__label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 20px 22px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(7, 7, 7, 0.84);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.image-frame__label strong,
.image-frame__label span {
  display: block;
}

.image-frame__label strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.image-frame__label span {
  margin-top: 3px;
  color: #c8c3ba;
  font-size: 0.83rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: var(--line-soft);
}

.value-card {
  min-height: 255px;
  padding: 34px;
  background: var(--ink);
}

.value-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 42px;
  color: var(--gold-light);
}

.value-card p {
  color: var(--paper-muted);
  font-size: 0.93rem;
}

.process {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 58px;
}

.process--five {
  grid-template-columns: repeat(5, 1fr);
}

.process__step {
  position: relative;
  padding: 30px 28px 0 0;
  border-top: 1px solid rgba(52, 48, 40, 0.24);
  counter-increment: steps;
}

.process__step::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b08129;
  content: "";
}

.process__step::after {
  display: block;
  margin-bottom: 26px;
  color: #a17525;
  content: "0" counter(steps);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.process__step p {
  color: #615d55;
  font-size: 0.92rem;
}

.quote-panel {
  position: relative;
  overflow: hidden;
  padding: 90px clamp(32px, 7vw, 88px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at 80% 20%, rgba(205, 157, 60, 0.15), transparent 35%), var(--panel);
}

.quote-panel blockquote {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.15;
}

.quote-panel p {
  margin: 28px 0 0;
  color: var(--paper-muted);
}

.quote-panel__mark {
  position: absolute;
  top: -35px;
  right: 35px;
  color: rgba(218, 176, 77, 0.11);
  font-family: var(--serif);
  font-size: 17rem;
  line-height: 1;
}

.social-band {
  position: relative;
  overflow: hidden;
  padding: 38px clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at 88% 22%, rgba(217, 174, 78, 0.2), transparent 30%), linear-gradient(135deg, #171612, #0c0c0b);
}

.social-band::after {
  position: absolute;
  top: -70px;
  right: -38px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(242, 215, 131, 0.12);
  border-radius: 50%;
  content: "";
}

.social-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
}

.social-band__icon {
  display: grid;
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  place-items: center;
}

.social-band h2 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.social-band p {
  margin: 0;
  color: var(--paper-muted);
}

.social-band p strong {
  color: var(--gold-light);
}

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

.faq-card {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--panel);
}

.section--light .faq-card {
  border-color: rgba(36, 32, 25, 0.14);
  background: rgba(255, 255, 255, 0.38);
}

.faq-card summary {
  position: relative;
  padding: 23px 60px 23px 24px;
  cursor: pointer;
  font-weight: 720;
  line-height: 1.4;
  list-style: none;
}

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

.faq-card summary::after {
  position: absolute;
  top: 50%;
  right: 23px;
  color: var(--gold-light);
  content: "+";
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  transform: translateY(-52%);
}

.section--light .faq-card summary::after {
  color: #91681c;
}

.faq-card[open] summary::after {
  content: "−";
}

.faq-card p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--paper-muted);
  font-size: 0.92rem;
}

.section--light .faq-card p {
  color: #5d5951;
}

.contact-context {
  display: none;
  margin: 0 0 18px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(215, 172, 79, 0.08);
  color: #e1d3b4;
  font-size: 0.84rem;
}

.contact-context.is-visible {
  display: block;
}

.contact {
  background: linear-gradient(140deg, #0a0a09, #12110f);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d5d0c6;
}

.contact-points svg {
  width: 19px;
  height: 19px;
  color: var(--gold-light);
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 35px;
}

.contact-direct > span {
  color: #8f8b83;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct a {
  width: fit-content;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.22rem;
}

.form-card {
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.form-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 22px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line-soft);
  color: #c7c1b6;
  font-size: 0.73rem;
}

.form-reassurance span::first-letter {
  color: var(--gold-light);
}

.form-card .btn {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: #d0cbc2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: #0d0d0c;
  color: white;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 172, 79, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #77736c;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #aaa59c;
  font-size: 0.76rem;
}

.check input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.check a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  display: none;
  margin: 0 0 18px;
  padding: 12px 15px;
  border: 1px solid;
  border-radius: 9px;
  font-size: 0.87rem;
}

.form-status.is-visible { display: block; }
.form-status--success { border-color: rgba(139, 191, 144, 0.4); background: rgba(139, 191, 144, 0.1); color: #badcbd; }
.form-status--error { border-color: rgba(224, 141, 128, 0.4); background: rgba(224, 141, 128, 0.1); color: #efb6ad; }

.contact-dock {
  position: fixed;
  z-index: 80;
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 18px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 7px;
  width: min(440px, calc(100vw - 36px));
  padding: 7px;
  border: 1px solid rgba(242, 215, 131, 0.24);
  border-radius: 15px;
  background: rgba(8, 8, 7, 0.93);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  visibility: hidden;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.contact-dock.is-ready:not(.is-hidden) {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.contact-dock__call,
.contact-dock__form {
  display: flex;
  min-height: 58px;
  align-items: center;
}

.contact-dock__call {
  gap: 10px;
  padding: 8px 12px;
  color: #e9e3d8;
}

.contact-dock__call svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--gold-light);
}

.contact-dock__call span,
.contact-dock__form span {
  display: grid;
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.3;
}

.contact-dock small {
  margin-top: 2px;
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.7;
}

.contact-dock__form {
  justify-content: space-between;
  gap: 12px;
  padding: 9px 15px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), #d6a638);
  color: #15120c;
  box-shadow: 0 9px 26px rgba(215, 172, 79, 0.22);
}

.contact-dock__form svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

body.menu-open .contact-dock {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #050505;
  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.55fr 0.55fr 0.7fr;
  gap: 70px;
}

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 24px;
}

.footer-brand__logo img {
  width: 80px;
  height: auto;
  flex: 0 0 auto;
}

.footer-brand__name {
  display: grid;
  color: #f4f0e7;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0.16em;
}

.footer-brand__name b {
  margin-top: 8px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.28em;
}

.footer-brand p {
  max-width: 420px;
  color: #98948c;
  font-size: 0.9rem;
}

.footer-col strong {
  display: block;
  margin-bottom: 19px;
  color: var(--gold-light);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #bcb8af;
  font-size: 0.88rem;
  list-style: none;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d2cdc3;
}

.footer-social-link svg {
  color: var(--gold-light);
}

.footer-social-link span {
  display: block;
}

.footer-social-link small {
  display: block;
  margin-top: 2px;
  color: #817d76;
  font-size: 0.7rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: #77746e;
  font-size: 0.74rem;
}

.subhero {
  position: relative;
  display: grid;
  min-height: 680px;
  align-items: end;
  overflow: hidden;
  padding: 170px 0 95px;
  background: #080808;
}

.subhero::before {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  content: "";
}

.subhero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.94), rgba(6, 6, 6, 0.56) 55%, rgba(6, 6, 6, 0.24)), linear-gradient(0deg, rgba(6, 6, 6, 0.76), transparent 55%);
  content: "";
}

.subhero--estate::before { background-image: url("../images/hero-architecture.webp"); }
.subhero--insurance::before { background-image: url("../images/service-protection.webp"); }
.subhero--energy::before { background-image: url("../images/service-energy.webp"); }

.subhero__content {
  position: relative;
  z-index: 2;
}

.subhero h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

.subhero .lead {
  max-width: 600px;
}

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

.detail-card {
  min-height: 250px;
  padding: 32px;
  border: 1px solid rgba(36, 32, 25, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.38);
}

.detail-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  border: 1px solid rgba(154, 111, 30, 0.28);
  border-radius: 50%;
  place-items: center;
  color: #966c1c;
}

.detail-card__icon svg {
  width: 22px;
  height: 22px;
}

.detail-card p {
  color: #5c5850;
  font-size: 0.92rem;
}

.cta-band {
  padding: 82px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 80% 50%, rgba(216, 169, 63, 0.14), transparent 36%);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.legal-page {
  min-height: 100vh;
  padding: 150px 0 100px;
  background: var(--paper);
  color: #211f1a;
}

.legal-page .shell {
  max-width: 820px;
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 64px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(36, 32, 25, 0.14);
}

.legal-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #211f1a !important;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.13em;
  text-decoration: none !important;
}

.legal-logo img {
  width: 43px;
  height: 38px;
  object-fit: cover;
}

.legal-back {
  margin: 0;
  color: #8f671f;
  font-weight: 700;
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.legal-page h2 {
  margin-top: 52px;
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.legal-page h3 {
  margin-top: 32px;
  font-size: 1.02rem;
}

.legal-page p,
.legal-page li {
  color: #555149;
}

.legal-page a {
  color: #885f17;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 0;
  background: radial-gradient(circle at center, #1d1a13, #070707 70%);
}

.notice-card {
  max-width: 650px;
  padding: clamp(30px, 7vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.notice-card img {
  width: 105px;
  margin: 0 auto 25px;
}

.notice-card h1 {
  max-width: none;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

@media (max-width: 980px) {
  .nav__links,
  .nav > .btn {
    display: none;
  }

  .header-social {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    min-height: 100svh;
    align-content: center;
    gap: 12px;
    padding: 110px 26px 42px;
    background: rgba(7, 7, 7, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu a:not(.btn) {
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    font-family: var(--serif);
    font-size: clamp(1.7rem, 6vw, 2.5rem);
  }

  .mobile-menu a.mobile-social {
    margin-top: 8px;
    border-bottom-color: var(--line);
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 750;
    letter-spacing: 0.05em;
  }

  .mobile-menu .btn {
    margin-top: 18px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .intro-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .opportunity-card {
    grid-template-columns: 1fr;
  }

  .process,
  .process--five {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .service-detail-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-band__inner {
    grid-template-columns: auto 1fr;
  }

  .social-band .btn {
    grid-column: 1 / -1;
  }

  .proof-strip--four {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip--four .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-strip--four .proof-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-soft);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .section {
    padding: 78px 0;
  }

  .contact-dock {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: 0.9fr 1.1fr;
    width: 100%;
    padding: 8px max(9px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(9px, env(safe-area-inset-left));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }

  .contact-dock__call,
  .contact-dock__form {
    min-height: 54px;
  }

  .contact-dock__call {
    padding: 6px 7px;
  }

  .contact-dock__form {
    padding: 8px 11px;
  }

  .contact-dock__call span,
  .contact-dock__form span {
    font-size: 0.74rem;
  }

  .contact-dock small {
    font-size: 0.6rem;
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 42px;
    height: 38px;
  }

  .brand__text {
    font-size: 1rem;
  }

  .hero {
    min-height: 790px;
    padding: 125px 0 75px;
    align-items: end;
  }

  .hero::before {
    background-image: linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.72) 53%, rgba(5, 5, 5, 0.24) 100%), url("../images/hero-architecture.webp");
    background-position: 63% center;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.45rem);
  }

  .hero__rail {
    display: none;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

  .social-band__inner {
    grid-template-columns: 1fr;
  }

  .social-band__icon {
    width: 54px;
    height: 54px;
  }

  .social-band .btn {
    width: 100%;
  }

  .trust-row {
    display: grid;
    margin-top: 30px;
  }

  .proof-wrap {
    margin-top: -24px;
  }

  .proof-strip,
  .proof-strip--four {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-strip--four .proof-item:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .proof-item:last-child,
  .proof-strip--four .proof-item:last-child {
    border-bottom: 0;
  }

  .proof-item strong {
    font-size: 1.75rem;
  }

  .services-grid,
  .service-detail-grid,
  .info-grid,
  .value-grid,
  .faq-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 430px;
    padding: 26px;
  }

  .opportunity-card {
    margin-top: 48px;
    padding: 26px;
  }

  .opportunity-meter {
    padding: 22px;
  }

  .opportunity-counter {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

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

  .section-head,
  .cta-band__inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head {
    display: flex;
  }

  .process,
  .process--five {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .process__step {
    padding-right: 0;
  }

  .image-frame {
    min-height: 420px;
  }

  .quote-panel {
    padding-block: 65px;
  }

  .subhero {
    min-height: 620px;
    padding-bottom: 70px;
  }

  .subhero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .subhero::after {
    background: linear-gradient(0deg, rgba(6, 6, 6, 0.94), rgba(6, 6, 6, 0.3) 86%);
  }

  .cta-band .btn {
    width: 100%;
  }
}
