:root{
  --black:#0b0b0d;
  --text:#161616;
  --muted:#656565;
  --line:#e9e4dc;
  --soft:#f8f6f2;
  --soft-2:#fbfaf7;
  --gold:#b48642;
  --gold-dark:#8d662d;
  --white:#ffffff;
}

*{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}

body{
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

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

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 7vw;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
  letter-spacing:.08em;
}

.brand-mark{
  font-weight:900;
  font-size:36px;
  letter-spacing:.02em;
}

.brand-sub{
  text-transform:uppercase;
  font-size:10px;
  letter-spacing:.42em;
  margin-left:2px;
}

.nav{
  display:flex;
  gap:34px;
  align-items:center;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.12em;
  font-weight:700;
}

.nav a{
  position:relative;
  color:#202020;
}

.nav a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.25s ease;
}

.nav a:hover:after{width:100%}

.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:1px solid var(--line);
  background:white;
  border-radius:999px;
}

.menu-toggle span{
  display:block;
  height:2px;
  width:18px;
  background:#111;
  margin:5px auto;
}

.hero{
  min-height:calc(100vh - 86px);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:6vw;
  padding:90px 7vw 100px;
  background:
    radial-gradient(circle at 74% 45%, rgba(180,134,66,.18), transparent 28%),
    linear-gradient(110deg,#fff 0%,#fff 48%,#f8f6f2 48%,#f8f6f2 100%);
  overflow:hidden;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.34em;
  font-size:12px;
  font-weight:800;
  color:var(--gold-dark);
  margin-bottom:18px;
}

.hero h1{
  font-size:clamp(52px,7.4vw,110px);
  line-height:.94;
  letter-spacing:-.065em;
  font-weight:900;
  max-width:980px;
  margin-bottom:32px;
}

.hero-text{
  max-width:650px;
  font-size:18px;
  color:#373737;
  margin-bottom:16px;
}

.hero-text.muted{color:var(--muted)}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:36px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:.25s ease;
}

.button.primary{
  background:var(--black);
  color:white;
}

.button.secondary{
  border:1px solid var(--gold);
  color:var(--gold-dark);
  background:white;
}

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

.hero-visual{
  position:relative;
  min-height:560px;
  border-radius:42px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.5),rgba(255,255,255,.15)),
    repeating-linear-gradient(90deg,rgba(180,134,66,.16) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg,rgba(0,0,0,.045) 0 1px, transparent 1px 84px);
  border:1px solid var(--line);
  box-shadow:0 30px 80px rgba(0,0,0,.08);
  overflow:hidden;
}

.hero-visual:before{
  content:"";
  position:absolute;
  inset:11%;
  border:1px solid rgba(180,134,66,.35);
  border-radius:34px;
}

.orb{
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  right:15%;
  top:22%;
  background:
    radial-gradient(circle at 35% 30%,#fff 0 14%,rgba(255,255,255,.2) 15%),
    linear-gradient(135deg,#d5b06c,#7d5a24);
  box-shadow:0 30px 100px rgba(180,134,66,.32);
}

.visual-card{
  position:absolute;
  left:42px;
  right:42px;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(16px);
  border:1px solid rgba(233,228,220,.9);
  border-radius:26px;
  padding:24px;
  box-shadow:0 24px 60px rgba(0,0,0,.08);
}

.visual-card.top{top:46px}
.visual-card.bottom{bottom:46px}

.visual-card span{
  display:block;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--gold-dark);
  font-size:11px;
  font-weight:800;
  margin-bottom:6px;
}

.visual-card strong{
  font-size:24px;
  letter-spacing:-.02em;
}

.section{
  padding:110px 7vw;
}

.split{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:7vw;
  background:white;
}

h2{
  font-size:clamp(38px,5vw,72px);
  line-height:1.04;
  letter-spacing:-.055em;
  font-weight:900;
}

.section-copy{
  font-size:19px;
  color:#333;
  max-width:820px;
}

.section-copy p + p{margin-top:22px}

.metrics{
  margin:0 7vw;
  padding:36px;
  border:1px solid var(--line);
  border-radius:34px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:var(--soft-2);
}

.metric{
  text-align:center;
  padding:22px;
  border-right:1px solid var(--line);
}

.metric:last-child{border-right:0}

.metric strong{
  display:block;
  font-size:46px;
  line-height:1;
  letter-spacing:-.05em;
}

.metric span{
  display:block;
  margin-top:10px;
  color:var(--muted);
  font-weight:600;
}

.section-head{
  max-width:900px;
  margin-bottom:46px;
}

.section-head.centered{
  max-width:920px;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.company-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:22px;
}

.company-card{
  grid-column:span 2;
  min-height:310px;
  padding:32px;
  border:1px solid var(--line);
  border-radius:30px;
  background:white;
  box-shadow:0 20px 60px rgba(0,0,0,.035);
  transition:.28s ease;
}

.company-card.featured{grid-column:span 3}

.company-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 90px rgba(0,0,0,.075);
  border-color:rgba(180,134,66,.5);
}

.card-number{
  color:var(--gold);
  font-weight:900;
  letter-spacing:.18em;
  font-size:12px;
  margin-bottom:38px;
}

.company-card h3{
  font-size:34px;
  letter-spacing:-.04em;
  margin-bottom:10px;
}

.tagline{
  font-weight:800;
  color:var(--black);
  margin-bottom:16px;
}

.company-card p:not(.tagline){
  color:#555;
}

.presence-section{
  background:var(--soft);
}

.presence-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:50px;
}

.presence-card{
  background:white;
  border:1px solid var(--line);
  border-radius:32px;
  padding:34px;
  min-height:260px;
}

.presence-card span{
  color:var(--gold-dark);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  font-weight:900;
}

.presence-card h3{
  font-size:34px;
  letter-spacing:-.04em;
  margin:24px 0 10px;
}

.presence-card p{color:#555}

.collaboration{
  background:white;
}

.collab-card{
  background:var(--black);
  color:white;
  border-radius:44px;
  padding:70px;
  max-width:1180px;
  margin:auto;
  position:relative;
  overflow:hidden;
}

.collab-card:after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  right:-120px;
  top:-140px;
  background:radial-gradient(circle, rgba(180,134,66,.55), transparent 68%);
}

.light-text{color:#d9ad66}

.collab-card h2{
  max-width:760px;
  margin-bottom:24px;
}

.collab-card p{
  max-width:780px;
  color:#e6e6e6;
  font-size:18px;
  margin-bottom:14px;
  position:relative;
  z-index:1;
}

.closing{
  text-align:center;
  background:var(--soft-2);
}

.closing h2{
  max-width:1050px;
  margin:0 auto;
}

.footer{
  padding:70px 7vw;
  display:flex;
  justify-content:space-between;
  gap:40px;
  background:white;
  border-top:1px solid var(--line);
}

.footer h2{
  font-size:36px;
}

.footer p,.footer span{
  color:var(--muted);
}

.footer-links{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
  font-weight:600;
}

.footer-links a{color:var(--gold-dark)}

@media(max-width:980px){
  .site-header{height:auto;min-height:78px}
  .menu-toggle{display:block}
  .nav{
    position:absolute;
    left:0;
    right:0;
    top:78px;
    background:white;
    border-bottom:1px solid var(--line);
    padding:24px 7vw;
    display:none;
    flex-direction:column;
    align-items:flex-start;
  }
  .menu-open .nav{display:flex}
  .hero{
    grid-template-columns:1fr;
    padding-top:70px;
  }
  .hero-visual{min-height:380px}
  .split{grid-template-columns:1fr}
  .metrics{grid-template-columns:repeat(2,1fr)}
  .metric:nth-child(2){border-right:0}
  .metric:nth-child(1),.metric:nth-child(2){border-bottom:1px solid var(--line)}
  .company-card,.company-card.featured{grid-column:span 6}
  .presence-grid{grid-template-columns:1fr}
  .footer{flex-direction:column}
  .footer-links{align-items:flex-start}
}

@media(max-width:620px){
  .site-header{padding:0 22px}
  .brand-mark{font-size:30px}
  .hero,.section{padding-left:22px;padding-right:22px}
  .hero h1{font-size:48px}
  .metrics{margin:0 22px;padding:10px;grid-template-columns:1fr}
  .metric{border-right:0;border-bottom:1px solid var(--line)}
  .metric:last-child{border-bottom:0}
  .collab-card{padding:38px 28px;border-radius:30px}
}


.company-logo-wrap{
  height:72px;
  display:flex;
  align-items:center;
  margin-bottom:18px;
}

.company-logo-link{
  display:inline-flex;
  align-items:center;
}

.company-logo{
  max-width:240px;
  max-height:72px;
  object-fit:contain;
  transition:0.25s ease;
}

.company-logo:hover{
  transform:translateY(-2px);
  opacity:0.88;
}

.footer-links{
  gap:12px;
}

.footer-links span{
  display:block;
}

@media(max-width:768px){
  .company-logo{
    max-width:180px;
    max-height:54px;
  }
}


.lrm-header-logo{
  height:58px;
  width:auto;
  display:block;
  object-fit:contain;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-end;
}

.footer-links span{
  display:block;
  line-height:1.5;
}

@media(max-width:768px){
  .lrm-header-logo{
    height:46px;
  }

  .footer-links{
    align-items:flex-start;
  }
}






.modern-hero-visual{
  position:relative;
  min-height:560px;
  border-radius:42px;
  overflow:hidden;
  background:
    linear-gradient(135deg,#f8f5ef 0%, #ffffff 50%, #f5efe3 100%);
  border:1px solid #ece6db;
  box-shadow:0 30px 80px rgba(0,0,0,0.05);
}

.hero-grid-overlay{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size:80px 80px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.4));
}

.floating-card{
  position:absolute;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(14px);
  border:1px solid #ece6db;
  border-radius:28px;
  padding:28px;
  box-shadow:0 20px 60px rgba(0,0,0,0.05);
  width:320px;
}

.top-card{
  top:70px;
  left:70px;
}

.bottom-card{
  right:70px;
  bottom:70px;
}

.floating-card span{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#9b6c2e;
  margin-bottom:12px;
}

.floating-card strong{
  display:block;
  font-size:30px;
  line-height:1.1;
  margin-bottom:10px;
}

.floating-card p{
  color:#666;
  font-size:15px;
}



