:root {
  --bg: #070707;
  --bg-soft: #0c0c0d;
  --panel: #111113;
  --panel-light: #151517;
  --text: #f4f0e8;
  --muted: #aaa59b;
  --line: rgba(255,255,255,.11);
  --gold: #c9aa6b;
  --gold-light: #ead6a5;
  --gold-dark: #8b6d37;
  --danger: #e1a2a2;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --content-width: 1180px;
  --gutter: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: #111; }

.container {
  width: 100%;
  max-width: calc(var(--content-width) + (var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section-pad { padding: 104px 0; }
.section-border { border-top: 1px solid var(--line); }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--text); color: #111; padding: 10px 16px; text-decoration: none; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 88px;
  z-index: 30;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled { background: rgba(7,7,7,.82); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand {
  display: inline-flex;
  width: 205px;
  padding: 0;
  text-decoration: none;
  line-height: 1;
  align-items: center;
  justify-content: flex-start;
}
.brand img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  filter: none;
  object-fit: contain;
  object-position: left center;
}

.site-nav { display: flex; align-items: center; gap: 34px; font-size: .88rem; }
.site-nav a { text-decoration: none; color: #d3cfc6; transition: color .2s ease; }
.site-nav a:hover { color: var(--gold-light); }
.site-nav .nav-cta { border: 1px solid rgba(201,170,107,.55); padding: 11px 18px; color: var(--gold-light); }
.menu-toggle { display: none; background: none; border: 0; width: 46px; height: 46px; position: relative; }
.menu-toggle span { position: absolute; left: 10px; width: 26px; height: 1px; background: var(--text); transition: transform .25s ease, top .25s ease; }
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 27px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }


.hero > .container,
.hero-grid,
.trust-row {
  margin-inline: auto;
}
.hero-copy {
  min-width: 0;
  justify-self: stretch;
  padding: 0;
}

.hero { min-height: 92vh; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: stretch; padding-top: 142px; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: 0; left: 48%; width: 1px; height: 100%; background: linear-gradient(transparent, var(--line), transparent); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 680px; height: 680px; right: -360px; top: -210px; background: radial-gradient(circle, rgba(201,170,107,.13), transparent 67%); }
.hero-orb-two { width: 460px; height: 460px; left: -300px; bottom: -180px; background: radial-gradient(circle, rgba(201,170,107,.08), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 68px; align-items: center; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 22px; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); font-size: .73rem; font-weight: 600; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: .98; }
h1 { font-size: clamp(4rem, 7.8vw, 7.6rem); letter-spacing: -.045em; }
h1 em { font-weight: 500; color: var(--gold-light); }
.hero-text { max-width: 590px; margin: 25px 0 0; color: #bbb6ad; font-size: 1.02rem; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.button { min-height: 54px; display: inline-flex; justify-content: center; align-items: center; gap: 14px; padding: 13px 24px; text-decoration: none; border: 1px solid transparent; font-weight: 600; font-size: .9rem; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #13110d; box-shadow: 0 16px 40px rgba(201,170,107,.12); }
.button-primary:hover { background: linear-gradient(135deg, #f0dfb7, #d2b370); }
.text-link { color: #ded8ce; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.24); padding-bottom: 5px; }

.hero-panel { min-height: 475px; padding: 25px; border: 1px solid rgba(201,170,107,.27); background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.008)); position: relative; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 36px 80px rgba(0,0,0,.34); }
.hero-panel::before, .hero-panel::after { content: ""; position: absolute; width: 64px; height: 64px; border-color: var(--gold); opacity: .6; }
.hero-panel::before { left: -1px; top: -1px; border-left: 1px solid; border-top: 1px solid; }
.hero-panel::after { right: -1px; bottom: -1px; border-right: 1px solid; border-bottom: 1px solid; }
.panel-topline, .panel-footer { display: flex; justify-content: space-between; color: #8e8a82; text-transform: uppercase; letter-spacing: .16em; font-size: .63rem; }
.panel-center { padding: 28px 0; }
.panel-center p { color: var(--gold); margin: 0 0 18px; }
.panel-center strong { display: block; font-family: var(--serif); font-size: clamp(2.15rem, 3.5vw, 3.45rem); line-height: 1.02; font-weight: 500; }
.panel-footer { gap: 16px; flex-wrap: wrap; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row div { padding: 23px 22px; display: flex; gap: 18px; align-items: center; border-right: 1px solid var(--line); }
.trust-row div:last-child { border-right: 0; }
.trust-row strong { color: var(--gold); font-size: .73rem; letter-spacing: .12em; }
.trust-row span { color: #c9c4bb; font-size: .86rem; }

.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 52px; }
.section-heading.compact { grid-template-columns: 1fr; }
h2 { font-size: clamp(2.75rem, 5vw, 4.85rem); letter-spacing: -.035em; max-width: 900px; }
.section-heading > p { margin: 0; color: var(--muted); max-width: 430px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 305px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; background: linear-gradient(145deg, transparent, rgba(255,255,255,.015)); transition: background .25s ease, transform .25s ease; }
.service-card:hover { background: linear-gradient(145deg, rgba(201,170,107,.08), rgba(255,255,255,.012)); transform: translateY(-3px); }
.service-number { position: absolute; right: 28px; top: 24px; color: #65615b; font-size: .7rem; letter-spacing: .15em; }
.service-icon { width: 42px; height: 42px; margin-bottom: 46px; color: var(--gold); }
.service-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1; }
.service-card h3 { font-size: 2.08rem; margin-bottom: 17px; }
.service-card p { color: var(--muted); max-width: 470px; margin: 0; }

.signature-section { background: #0a0a0b; }
.signature-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 76px; align-items: center; }
.signature-visual { min-height: 525px; border: 1px solid var(--line); position: relative; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle at center, rgba(201,170,107,.08), transparent 58%); }
.ring { position: absolute; border: 1px solid rgba(201,170,107,.34); border-radius: 50%; }
.ring-one { width: 430px; height: 430px; }
.ring-two { width: 590px; height: 590px; opacity: .42; }
.monogram { font-family: var(--serif); font-size: 11.25rem; font-style: italic; color: var(--gold-light); z-index: 1; text-shadow: 0 0 55px rgba(201,170,107,.15); }
.visual-caption { position: absolute; bottom: 24px; text-transform: uppercase; font-size: .64rem; letter-spacing: .19em; color: #77736c; }
.signature-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; max-width: 650px; margin: 30px 0 40px; }
.principles { border-top: 1px solid var(--line); }
.principles div { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.principles span { color: var(--gold-light); font-family: var(--serif); font-size: 1.35rem; }
.principles p { margin: 0; color: var(--muted); }

.process-list { border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 70px .55fr 1fr; gap: 32px; padding: 29px 0; border-bottom: 1px solid var(--line); align-items: center; }
.process-item > span { color: var(--gold); font-size: .72rem; letter-spacing: .14em; }
.process-item h3 { font-size: 2.2rem; }
.process-item p { color: var(--muted); margin: 0; max-width: 520px; }

.contact-section { background: linear-gradient(145deg, #101012, #080808); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 76px; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); margin: 28px 0 34px; max-width: 500px; }
.contact-note { display: flex; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #c5c0b7; }
.contact-note > span { color: var(--gold); }
.contact-note p { margin: 0; }
.contact-note a { color: var(--gold-light); }
.lead-form { border: 1px solid var(--line); background: rgba(255,255,255,.02); padding: 35px; box-shadow: 0 30px 70px rgba(0,0,0,.24); }
.form-grid { display: grid; gap: 20px; }
.two-col { grid-template-columns: repeat(2, 1fr); }
.lead-form label, .lead-form fieldset { display: block; margin: 0 0 22px; }
.lead-form label > span, .lead-form legend { display: block; font-size: .78rem; letter-spacing: .06em; color: #cbc6bc; margin-bottom: 9px; }
.lead-form fieldset { border: 0; padding: 0; }
input, select, textarea { width: 100%; border: 1px solid rgba(255,255,255,.14); background: #0b0b0c; color: var(--text); padding: 14px 15px; outline: none; border-radius: 0; transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,170,107,.09); }
textarea { resize: vertical; min-height: 150px; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.checkbox-grid label, .consent-row { margin: 0 !important; display: flex !important; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.12); background: #0b0b0c; padding: 13px 14px; }
.checkbox-grid input, .consent-row input { width: 16px; height: 16px; accent-color: var(--gold); flex: 0 0 auto; }
.checkbox-grid label > span, .consent-row > span { margin: 0; letter-spacing: 0; font-size: .78rem; }
.consent-row { border: 0; background: transparent; padding: 0; margin: 8px 0 24px !important; align-items: flex-start; }
.form-submit { width: 100%; border: 0; }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: .84rem; color: var(--danger); text-align: center; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; overflow: hidden !important; }

.site-footer { border-top: 1px solid var(--line); padding: 48px 0; background: #050505; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 58px; align-items: end; }
.footer-identity {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.footer-brand {
  display: block;
  width: 180px;
  margin: 0 0 16px;
  padding: 0;
  line-height: 1;
  align-self: flex-start;
}
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  object-position: left center;
}
.footer-grid p {
  width: 100%;
  color: #817d76;
  margin: 0;
  font-size: .85rem;
  text-align: left;
}
.footer-address {
  width: 100%;
  margin: 15px 0 0;
  color: #aaa59d;
  font-size: .8rem;
  font-style: normal;
  line-height: 1.65;
  text-align: left;
}
.footer-links { display: grid; gap: 9px; }
.footer-links a { text-decoration: none; color: #aaa59d; font-size: .82rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-meta { display: grid; gap: 7px; color: #6f6b65; font-size: .72rem; text-align: right; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .15s; }

@media (max-width: 980px) {
  .section-pad { padding: 80px 0; }
  .menu-toggle { display: block; z-index: 2; }
  .site-nav { position: fixed; inset: 0; background: rgba(7,7,7,.98); display: flex; flex-direction: column; justify-content: center; gap: 28px; font-size: 1.3rem; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
  .site-nav.open { opacity: 1; visibility: visible; }
  .site-nav .nav-cta { margin-top: 10px; }
  .hero-grid, .signature-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero::before { display: none; }
  .hero-panel { min-height: 420px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .signature-visual { min-height: 450px; }
  .contact-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; text-align: left; border-top: 1px solid var(--line); padding-top: 22px; }
}

@media (max-width: 680px) {
  :root { --gutter: 14px; }
  .site-header { height: 74px; }
  .brand { width: 156px; }
  .hero { padding-top: 116px; }
  h1 { font-size: clamp(3.55rem, 17vw, 5.25rem); }
  h2 { font-size: clamp(2.55rem, 11.5vw, 3.85rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .text-link { width: fit-content; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-row div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-row div:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; padding: 27px; }
  .signature-visual { min-height: 390px; }
  .ring-one { width: 320px; height: 320px; }
  .ring-two { width: 460px; height: 460px; }
  .monogram { font-size: 8.75rem; }
  .principles div { grid-template-columns: 1fr; gap: 4px; }
  .process-item { grid-template-columns: 48px 1fr; gap: 18px; }
  .process-item p { grid-column: 2; }
  .lead-form { padding: 25px 20px; }
  .two-col, .checkbox-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-meta { grid-column: auto; }
}


.audio-control {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 28;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(201,170,107,.38);
  background: rgba(7,7,7,.86);
  color: var(--gold-light);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0,0,0,.32);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.audio-control:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(17,17,19,.94);
}
.audio-control:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.audio-control-icon {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,170,107,.36);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: .8rem;
}
.audio-control[aria-pressed="true"] .audio-control-icon {
  animation: audioPulse 1.8s ease-in-out infinite;
}
.audio-control-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@keyframes audioPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,170,107,.18); }
  50% { box-shadow: 0 0 0 7px rgba(201,170,107,0); }
}
@media (max-width: 680px) {
  .audio-control {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 9px 12px;
  }
  .audio-control-label {
    font-size: .66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

