:root {
  --ink: #0b1726;
  --ink-soft: #12243a;
  --paper: #f4f1e9;
  --paper-bright: #fbfaf7;
  --gold: #b9924b;
  --gold-light: #d1b477;
  --white: #ffffff;
  --muted: #6d7580;
  --line: rgba(185, 146, 75, .34);
  --shadow: 0 24px 70px rgba(5, 16, 29, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper-bright);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }

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

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(11, 23, 38, .94);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 35px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
}
.header-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: .12em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 18px; letter-spacing: .13em; font-weight: 600; }
.brand-copy small {
  margin-top: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
}
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  position: relative;
  color: rgba(255,255,255,.84);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--gold-light);
  transition: right .25s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--white); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.23);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.section-dark, .section-ink { color: var(--white); background: var(--ink); }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 76px;
  background:
    radial-gradient(circle at 82% 30%, rgba(185,146,75,.15), transparent 28%),
    linear-gradient(125deg, #07111e 0%, #0b1726 48%, #10243a 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #83672f; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(68px, 10vw, 150px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .78;
}
.hero h1 span {
  display: block;
  margin-top: 18px;
  color: var(--gold-light);
  font-size: .38em;
  letter-spacing: .43em;
  line-height: 1;
}
.hero-subtitle {
  margin: 36px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: .08em;
  color: rgba(255,255,255,.72);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #10151b; box-shadow: 0 12px 34px rgba(185,146,75,.2); }
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 16px 40px rgba(185,146,75,.28); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.26); }
.btn-ghost:hover { background: rgba(255,255,255,.07); }
.hero-visual { position: relative; min-height: 510px; }
.visual-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(209,180,119,.38);
  border-radius: 45% 45% 18px 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
  box-shadow: inset 0 0 70px rgba(255,255,255,.025), 0 35px 100px rgba(0,0,0,.24);
}
.visual-frame::before, .visual-frame::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(209,180,119,.18);
  border-radius: 46% 46% 14px 14px;
}
.visual-frame::after { inset: 17%; opacity: .55; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 260px; height: 260px; right: -90px; top: 8%; background: rgba(185,146,75,.14); }
.orb-two { width: 210px; height: 210px; left: -70px; bottom: 4%; background: rgba(50,83,118,.24); }
.monogram { position: relative; z-index: 4; display: flex; flex-direction: column; align-items: center; color: var(--white); }
.monogram-top { font-size: clamp(68px, 8vw, 112px); line-height: .9; letter-spacing: -.04em; }
.monogram-line { width: 110px; height: 1px; margin: 24px 0 18px; background: var(--gold-light); }
.monogram-bottom { font-family: Arial, Helvetica, sans-serif; font-size: 16px; letter-spacing: .6em; transform: translateX(.3em); color: var(--gold-light); }
.legal-symbol {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 92px;
  opacity: .22;
}
.legal-symbol path { fill: none; stroke: var(--gold-light); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero-rule { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .7; }

.section { padding: clamp(86px, 10vw, 138px) 0; }
.section-light { background: var(--paper-bright); }
.split-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}
.section-heading h2, .section-intro h2, .location-panel h2, .cta h2 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .96;
}
.section-heading h2 { font-size: clamp(48px, 6vw, 86px); }
.copy-card {
  position: relative;
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid rgba(11,23,38,.12);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.copy-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 42px;
  width: 90px;
  height: 2px;
  background: var(--gold);
}
.lead { margin: 0; font-size: clamp(30px, 4vw, 52px); line-height: 1.08; color: var(--ink); }
.location-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: .03em;
}
.pin { width: 9px; height: 9px; border: 2px solid var(--gold); border-radius: 50%; box-shadow: 0 0 0 5px rgba(185,146,75,.1); }

.section-ink {
  position: relative;
  padding: clamp(96px, 11vw, 150px) 0;
  background: linear-gradient(135deg, #091421, #10243a);
  overflow: hidden;
}
.section-ink::after {
  content: "LMM";
  position: absolute;
  right: -25px;
  top: -40px;
  color: rgba(255,255,255,.025);
  font-size: clamp(180px, 30vw, 500px);
  line-height: 1;
  pointer-events: none;
}
.section-intro { position: relative; z-index: 2; max-width: 760px; }
.section-intro h2 { font-size: clamp(50px, 7vw, 92px); }
.section-intro > p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.65);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}
.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 62px;
}
.feature-card {
  min-height: 270px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.035);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover { transform: translateY(-7px); border-color: rgba(209,180,119,.48); background: rgba(255,255,255,.055); }
.feature-index { margin-bottom: auto; color: var(--gold-light); font-family: Arial, Helvetica, sans-serif; font-size: 11px; letter-spacing: .16em; }
.feature-card h3 { margin: 42px 0 8px; font-size: 31px; font-weight: 400; }
.feature-card p { margin: 0; color: rgba(255,255,255,.55); font-family: Arial, Helvetica, sans-serif; font-size: 13px; }

.location-section { overflow: hidden; }
.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(50px, 8vw, 100px); }
.location-panel h2 { font-size: clamp(68px, 9vw, 126px); }
.location-panel .state { margin: 16px 0 0; color: #7d6a44; font-size: clamp(23px, 3vw, 36px); }
.location-art {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(11,23,38,.12);
  border-radius: 36px;
  overflow: hidden;
  background: #ebe8df;
  box-shadow: var(--shadow);
}
.map-lines {
  position: absolute;
  inset: -10%;
  opacity: .53;
  background:
    radial-gradient(circle at 60% 42%, transparent 0 10%, rgba(11,23,38,.12) 10.2% 10.5%, transparent 10.8% 18%, rgba(11,23,38,.08) 18.2% 18.5%, transparent 18.8%),
    linear-gradient(25deg, transparent 42%, rgba(11,23,38,.08) 42.3% 42.7%, transparent 43%),
    linear-gradient(115deg, transparent 58%, rgba(185,146,75,.25) 58.2% 58.8%, transparent 59%);
}
.map-pin {
  position: absolute;
  left: 58%;
  top: 44%;
  width: 44px;
  height: 44px;
  transform: rotate(45deg);
  border-radius: 50% 50% 50% 5px;
  background: var(--ink);
  box-shadow: 0 16px 25px rgba(11,23,38,.18);
}
.map-pin span { position: absolute; width: 12px; height: 12px; left: 16px; top: 16px; border-radius: 50%; background: var(--gold-light); }
.location-art p {
  position: absolute;
  left: 50%;
  top: calc(44% + 65px);
  transform: translateX(-5%);
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--ink);
}

.cta { padding: 78px 0; background: #07111e; }
.cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 35px; }
.cta h2 { max-width: 800px; font-size: clamp(42px, 6vw, 78px); }
.site-footer { background: #050b12; color: rgba(255,255,255,.58); border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { min-height: 146px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; font-family: Arial, Helvetica, sans-serif; font-size: 12px; }
.footer-brand { display: flex; flex-direction: column; gap: 7px; }
.footer-brand strong { color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 19px; letter-spacing: .12em; }
.footer-brand span { letter-spacing: .06em; }
.footer-grid a { color: var(--gold-light); text-decoration: none; }

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

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

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 88px 16px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: rgba(7,17,30,.98);
    box-shadow: 0 24px 55px rgba(0,0,0,.34);
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 17px 15px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .hero-grid, .split-layout, .location-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 34px; }
  .hero-visual { min-height: 430px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 210px; }
  .section-heading { max-width: 540px; }
  .location-panel { text-align: center; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-shell { min-height: 76px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 7px; }
  .main-nav { inset: 76px 10px auto; }
  .hero { padding: 116px 0 54px; }
  .hero h1 { font-size: clamp(66px, 25vw, 102px); }
  .hero h1 span { margin-top: 12px; }
  .hero-subtitle { margin-top: 28px; }
  .hero-actions { margin-top: 32px; }
  .btn { width: 100%; }
  .hero-visual { min-height: 360px; }
  .visual-frame { border-radius: 42% 42% 18px 18px; }
  .monogram-top { font-size: 74px; }
  .legal-symbol { width: 70px; right: 18px; bottom: 18px; }
  .section { padding: 80px 0; }
  .split-layout { gap: 34px; }
  .copy-card { padding: 31px 26px; }
  .feature-grid { margin-top: 42px; }
  .feature-card { padding: 28px; }
  .location-art { min-height: 330px; border-radius: 24px; }
  .cta { padding: 66px 0; }
  .cta-inner { align-items: stretch; flex-direction: column; }
  .footer-grid { min-height: 190px; grid-template-columns: 1fr; gap: 12px; padding: 38px 0; }
}
