:root {
  --ink: #061019;
  --ink-2: #091824;
  --ink-3: #0d2230;
  --gold: #d5aa57;
  --gold-2: #f0d18b;
  --gold-deep: #9a6e2f;
  --ivory: #f4efe5;
  --muted: #b9bdc1;
  --line: rgba(213, 170, 87, 0.28);
  --glass: rgba(10, 25, 35, 0.68);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 88% 8%, rgba(213, 170, 87, 0.08), transparent 26%),
    linear-gradient(180deg, #061019 0%, #081722 54%, #061019 100%);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

::selection { background: var(--gold); color: #07131d; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ivory);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 15, 23, .88);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.nav-shell {
  width: var(--shell);
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}
.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(240, 209, 139, .75);
  box-shadow: 0 0 0 4px rgba(213, 170, 87, .08);
  background: #07131d;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.brand-copy small {
  margin-top: 4px;
  color: #d8d9d9;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  position: relative;
  padding: 9px 0;
  color: #e8e7e4;
  font-size: .86rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 19, 29, .75);
  color: var(--ivory);
  cursor: pointer;
}
.menu-toggle span { width: 20px; height: 1px; background: var(--gold-2); transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 126px 0 78px;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(6, 16, 25, .98) 0%, rgba(7, 20, 29, .93) 53%, rgba(9, 28, 39, .92) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(213, 170, 87, .35);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero h1,
.section h2,
.identity h2,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 8ch;
  font-size: clamp(4.25rem, 10vw, 8.7rem);
  line-height: .88;
  letter-spacing: .085em;
  background: linear-gradient(108deg, #f4db9d 4%, #c99540 38%, #f1d895 64%, #9c6e2d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 42px rgba(0,0,0,.22);
}
.hero-tagline {
  max-width: 690px;
  margin: 30px 0 0;
  color: #eeebe5;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.55;
  letter-spacing: .025em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #08131c;
  background: linear-gradient(115deg, #b98338, #f0d18b 48%, #b98235);
  box-shadow: 0 12px 28px rgba(166, 117, 47, .18);
}
.button-primary:hover { box-shadow: 0 17px 34px rgba(166, 117, 47, .28); }
.button-ghost { border-color: rgba(213,170,87,.42); background: rgba(255,255,255,.02); }
.button-ghost:hover { border-color: rgba(240,209,139,.8); background: rgba(213,170,87,.07); }
.trust-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
  color: #d6c8ad;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.trust-line i { width: 25px; height: 1px; background: var(--gold-deep); }

.hero-visual { position: relative; justify-self: end; width: min(100%, 420px); }
.portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px 48px 8px 8px;
  border: 1px solid rgba(213,170,87,.64);
  box-shadow: var(--shadow), 0 0 0 9px rgba(213,170,87,.035);
  background: #07131d;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(150deg, rgba(240,209,139,.12), transparent 20%, transparent 80%, rgba(213,170,87,.09));
}
.portrait-frame img { width: 100%; height: auto; }
.visual-caption {
  position: absolute;
  right: -22px;
  bottom: 32px;
  z-index: 3;
  padding: 12px 18px;
  border: 1px solid rgba(213,170,87,.48);
  border-radius: 999px;
  background: rgba(6,16,25,.88);
  backdrop-filter: blur(12px);
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: .94rem;
  letter-spacing: .06em;
  box-shadow: 0 14px 32px rgba(0,0,0,.25);
}
.hero-glow { position: absolute; z-index: -1; width: 40vw; aspect-ratio: 1; border-radius: 50%; filter: blur(90px); opacity: .22; }
.hero-glow-one { right: -13vw; top: 12%; background: #b7863b; }
.hero-glow-two { left: 20%; bottom: -30%; background: #0f4d65; }
.gold-ribbon { position: absolute; z-index: -1; width: 46vw; height: 28px; border-radius: 100%; border-top: 2px solid rgba(240,209,139,.78); transform: rotate(28deg); opacity: .82; box-shadow: 0 -8px 18px rgba(213,170,87,.13); }
.ribbon-top { top: 44px; right: -10vw; }
.ribbon-bottom { bottom: 42px; left: -12vw; transform: rotate(24deg); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: #bcb7ae;
  font-size: .68rem;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll-cue b { color: var(--gold); animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateY(5px); } }

.section { padding: clamp(84px, 10vw, 132px) 0; }
.section-head { max-width: 760px; margin-inline: auto; text-align: center; }
.section h2,
.closing h2 {
  font-size: clamp(2.35rem, 5.4vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: .035em;
}
.ornament { display: flex; align-items: center; justify-content: center; gap: 11px; margin-top: 26px; color: var(--gold); }
.ornament span { width: 88px; height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
.ornament span:last-child { transform: scaleX(-1); }
.ornament b { font-size: .65rem; }

.services { position: relative; background: linear-gradient(180deg, #081722 0%, #0a1d29 100%); }
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(213,170,87,.07), transparent 35%);
}
.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 54px;
}
.service-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(213,170,87,.25);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  transition: transform .26s ease, border-color .26s ease, background .26s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(240,209,139,.66); background: linear-gradient(145deg, rgba(213,170,87,.08), rgba(255,255,255,.015)); }
.icon-wrap {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(213,170,87,.25);
  border-radius: 50%;
  background: rgba(213,170,87,.025);
}
.icon-wrap svg { width: 51px; height: 51px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 1.38rem; letter-spacing: .04em; }

.specialized { position: relative; background: #061019; }
.specialized::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: 5%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(213,170,87,.08);
  border-radius: 50%;
  pointer-events: none;
}
.specialized-intro { max-width: 920px; }
.specialized-intro h2 { max-width: 15ch; }
.specialized-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 56px;
}
.specialized-list { display: grid; gap: 14px; }
.feature-card {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  overflow: hidden;
  border: 1px solid rgba(213,170,87,.21);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(213,170,87,.045), rgba(255,255,255,.012));
  transition: transform .24s ease, border-color .24s ease;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: transform .3s ease;
}
.feature-card:hover { transform: translateX(5px); border-color: rgba(213,170,87,.48); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-number { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.feature-kicker { margin: 0 0 5px; color: #8e999f; font-size: .64rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.feature-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.32rem, 2.5vw, 1.95rem); font-weight: 400; line-height: 1.15; }
.feature-arrow { color: var(--gold); font-size: 1.4rem; }
.negotiation-panel {
  position: relative;
  min-height: 422px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  border: 1px solid rgba(213,170,87,.45);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 20%, rgba(213,170,87,.11), transparent 38%),
    linear-gradient(160deg, #0a202d, #07141d);
  box-shadow: var(--shadow);
}
.panel-orbit { position: absolute; width: 330px; height: 330px; left: 50%; top: -152px; transform: translateX(-50%); border: 1px solid rgba(213,170,87,.15); border-radius: 50%; box-shadow: 0 0 0 35px rgba(213,170,87,.025), 0 0 0 70px rgba(213,170,87,.018); }
.handshake-symbol { position: absolute; top: 54px; right: 35px; width: 112px; opacity: .7; }
.handshake-symbol svg { width: 100%; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.negotiation-panel h3 { max-width: 12ch; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.35rem); font-weight: 400; line-height: 1.03; }
.panel-divider { width: 68px; height: 1px; margin-top: 26px; background: var(--gold); }
.panel-motto { margin: 16px 0 0; color: #d5c5a5; font-size: .73rem; letter-spacing: .13em; text-transform: uppercase; }

.identity { background: linear-gradient(130deg, #0a1c28, #07121a 72%); }
.identity-grid { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1fr); align-items: center; gap: clamp(42px, 8vw, 100px); }
.identity-mark { position: relative; width: min(100%, 440px); aspect-ratio: 1; display: grid; place-items: center; justify-self: center; }
.logo-halo { position: absolute; inset: 8%; border: 1px solid rgba(213,170,87,.21); border-radius: 50%; box-shadow: 0 0 0 28px rgba(213,170,87,.025), 0 0 0 56px rgba(213,170,87,.014); animation: halo 7s ease-in-out infinite; }
@keyframes halo { 50% { transform: scale(1.035); opacity: .72; } }
.identity-mark img { position: relative; z-index: 2; width: 72%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 1px solid rgba(240,209,139,.72); box-shadow: 0 28px 62px rgba(0,0,0,.34); }
.identity-copy h2 { font-size: clamp(3.3rem, 8vw, 7rem); color: var(--gold-2); letter-spacing: .08em; line-height: .9; }
.identity blockquote { max-width: 720px; margin: 32px 0 0; padding: 0; color: #eee9df; font-family: var(--serif); font-size: clamp(1.3rem, 2.7vw, 2rem); line-height: 1.45; }
.values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.values span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #d7c7a8; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.closing { position: relative; padding: clamp(96px, 12vw, 150px) 0; overflow: hidden; background: #050e15; }
.closing::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213,170,87,.08), transparent 63%);
  pointer-events: none;
}
.closing-inner { position: relative; text-align: center; }
.closing h2 { color: var(--gold-2); }
.closing-services { max-width: 940px; margin: 34px auto 36px; display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.closing-services span { padding: 9px 13px; border: 1px solid rgba(213,170,87,.18); border-radius: 999px; background: rgba(255,255,255,.015); color: #c7c9c9; font-size: .78rem; }

.site-footer { padding: 30px 0; border-top: 1px solid var(--line); background: #040b10; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(213,170,87,.5); }
.footer-brand div { display: grid; line-height: 1.15; }
.footer-brand strong { color: var(--gold-2); font-family: var(--serif); font-weight: 400; letter-spacing: .12em; text-transform: uppercase; }
.footer-brand span { margin-top: 4px; color: #959da1; font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer p { margin: 0; color: #a49376; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  border: 1px solid rgba(213,170,87,.45);
  border-radius: 50%;
  background: rgba(5,15,23,.88);
  color: var(--gold-2);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: rgba(213,170,87,.12); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 900px); }
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 2px;
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(.985);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(5,15,23,.97);
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    backdrop-filter: blur(18px);
    transition: opacity .22s ease, transform .22s ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 13px 12px; border-radius: 10px; }
  .site-nav a:hover { background: rgba(213,170,87,.06); }
  .site-nav a::after { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 24px; text-align: center; }
  .hero h1 { max-width: none; }
  .hero-tagline { margin-inline: auto; }
  .hero-actions, .trust-line { justify-content: center; }
  .hero-visual { justify-self: center; width: min(72vw, 420px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .specialized-layout { grid-template-columns: 1fr; }
  .negotiation-panel { min-height: 380px; }
  .identity-grid { grid-template-columns: 1fr; text-align: center; }
  .identity-mark { width: min(72vw, 400px); }
  .identity blockquote { margin-inline: auto; }
  .values { justify-content: center; }
}

@media (max-width: 640px) {
  :root { --shell: min(100% - 24px, 560px); }
  .nav-shell { min-height: 74px; }
  .brand-mark { width: 46px; height: 46px; flex-basis: 46px; }
  .brand-copy strong { font-size: 1.03rem; }
  .brand-copy small { max-width: 190px; font-size: .58rem; }
  .site-nav { top: 70px; left: 12px; right: 12px; }
  .hero { padding: 108px 0 74px; }
  .hero::before { inset: 10px; }
  .hero h1 { font-size: clamp(3.65rem, 20vw, 5.6rem); letter-spacing: .055em; }
  .hero-tagline { font-size: 1.08rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .trust-line { gap: 7px; font-size: .61rem; letter-spacing: .09em; }
  .trust-line i { width: 12px; }
  .hero-visual { width: min(86vw, 390px); }
  .visual-caption { right: 12px; bottom: 18px; font-size: .8rem; }
  .scroll-cue { display: none; }
  .section { padding: 78px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 38px; }
  .service-card { min-height: 200px; }
  .specialized-layout { margin-top: 38px; }
  .feature-card { min-height: 115px; grid-template-columns: auto 1fr; gap: 16px; padding: 20px; }
  .feature-arrow { display: none; }
  .negotiation-panel { min-height: 360px; padding: 28px 24px; }
  .handshake-symbol { width: 90px; top: 42px; right: 22px; }
  .panel-motto { font-size: .62rem; }
  .identity-mark { width: min(84vw, 350px); }
  .closing-services { gap: 7px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .site-footer p { line-height: 1.7; }
}

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