:root {
  --bg: #f7f5f0;
  --paper: #fffdf9;
  --text: #171717;
  --muted: #6e6a63;
  --dark: #11100f;
  --dark-2: #1a1816;
  --gold: #b68a48;
  --gold-2: #d6b277;
  --border: rgba(23, 23, 23, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23,23,23,0.08);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 118px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}

.nav a { opacity: .78; transition: .2s ease; }
.nav a:hover { opacity: 1; }

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--text);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 110px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 22px;
}

.hero h1,
.section h2,
.contact-box h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(56px, 7vw, 92px);
  line-height: .98;
  margin: 0 0 28px;
  max-width: 760px;
}

.hero-text {
  font-size: 19px;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--dark); color: white; }
.btn-secondary { border: 1px solid var(--border); background: rgba(255,255,255,.45); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 13px;
}
.hero-proof span::before {
  content: "•";
  color: var(--gold);
  margin-right: 8px;
}

.hero-card {
  border: 1px solid rgba(182, 138, 72, 0.28);
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.85), rgba(255,255,255,.42));
  box-shadow: 0 30px 80px rgba(56,44,25,.11);
}

.hero-card-inner {
  background: var(--dark);
  color: white;
  padding: 48px;
  border-radius: 20px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-kicker {
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .18em;
}

.hero-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1.08;
  margin: 16px 0 24px;
}
.hero-card p { color: #c9c4bc; }
.gold-line { width: 70px; height: 1px; background: var(--gold); margin: 28px 0; }

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.mini-metrics div { display: flex; flex-direction: column; gap: 6px; }
.mini-metrics strong { color: var(--gold-2); }
.mini-metrics span { font-size: 12px; color: #c9c4bc; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .28;
}
.hero-glow-one {
  width: 460px;
  height: 460px;
  background: #d5b780;
  right: 4%;
  top: 6%;
}
.hero-glow-two {
  width: 350px;
  height: 350px;
  background: #eee4cf;
  left: -8%;
  bottom: 4%;
}

.section { padding: 110px 0; }
.section-light { background: var(--paper); }
.section-dark { background: var(--dark); color: white; }

.split {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
}
.section-label {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--gold);
}
.section-content h2,
.section-heading h2,
.approach h2 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  margin: 0 0 28px;
}
.section-content p {
  font-size: 18px;
  color: var(--muted);
  max-width: 800px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 54px;
}
.section-dark .section-heading p:not(.eyebrow) { color: #aaa49b; }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.brand-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: linear-gradient(180deg, #1a1816, #141311);
  display: flex;
  flex-direction: column;
}
.brand-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.brand-number { color: var(--gold-2); font-weight: 600; }
.brand-status {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #918b82;
}
.brand-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  margin: 0 0 16px;
}
.brand-card p { color: #aaa49b; }
.brand-card a, .coming-link {
  margin-top: auto;
  padding-top: 30px;
  color: var(--gold-2);
  font-size: 14px;
}
.brand-card-coming { opacity: .8; }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.capability {
  background: var(--paper);
  padding: 34px;
  min-height: 250px;
}
.capability span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .15em;
}
.capability h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin: 18px 0 12px;
}
.capability p { color: var(--muted); font-size: 15px; }

.approach {
  background: #ece8df;
}
.approach-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}
.approach-list {
  border-top: 1px solid var(--border);
}
.approach-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.approach-item > span { color: var(--gold); font-size: 13px; }
.approach-item h3 {
  margin: 0 0 8px;
  font-size: 21px;
}
.approach-item p { margin: 0; color: var(--muted); }

.contact-section { background: var(--paper); }
.contact-box {
  background: var(--dark);
  color: white;
  border-radius: 28px;
  padding: 58px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
}
.contact-box h2 {
  font-size: clamp(42px,5vw,62px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.contact-box p { color: #bcb6ad; }
.contact-actions { text-align: right; }
.contact-actions .btn-primary {
  background: white;
  color: var(--dark);
}
.contact-note {
  font-size: 12px;
  margin-top: 14px;
}

.footer {
  background: #0c0b0a;
  color: white;
  padding: 60px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.footer-brand img {
  width: 115px;
  background: white;
  border-radius: 10px;
  padding: 5px;
}
.footer-brand p, .footer-meta p { color: #8f8a82; font-size: 13px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
}
.footer-meta { text-align: right; }
.legal-note { font-size: 11px !important; }

.legal-page {
  min-height: 65vh;
  padding: 80px 0 110px;
  background: var(--paper);
}
.legal-page article {
  max-width: 820px;
}
.legal-page h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 58px;
}
.legal-page h2 {
  font-family: "Playfair Display", Georgia, serif;
  margin-top: 38px;
}
.legal-page p, .legal-page li { color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    padding: 20px;
    border-radius: 16px;
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .hero { min-height: auto; padding-top: 80px; }
  .hero-grid,
  .split,
  .approach-grid,
  .contact-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand-grid,
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-actions, .footer-meta { text-align: left; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero h1 { font-size: 54px; }
  .hero-card-inner { padding: 30px; min-height: 420px; }
  .hero-card h2 { font-size: 36px; }
  .mini-metrics { grid-template-columns: 1fr; }
  .brand-grid,
  .capability-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .contact-box { padding: 36px 28px; }
}
