:root {
  --bg: #f4efe7;
  --ink: #1f2a24;
  --muted: #6f756f;
  --accent: #9b6b3f;
  --accent-dark: #6f4728;
  --panel: #fffaf2;
  --dark: #1d2d27;
  --line: rgba(31,42,36,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.hero { background: radial-gradient(circle at 75% 20%, rgba(155,107,63,.24), transparent 32%), linear-gradient(135deg, #20342c 0%, #14231d 100%); color: white; min-height: 78vh; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; }
.brand { font-weight: 700; letter-spacing: .12em; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { text-decoration: none; opacity: .9; }
.hero-content { display: grid; grid-template-columns: 1.5fr .7fr; gap: 70px; align-items: center; padding: 90px 0 120px; }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .15em; font-size: .78rem; font-weight: 700; color: #d3ad85; }
.hero h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: .98; margin: 16px 0 24px; max-width: 900px; font-weight: 500; }
.hero p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.btn { text-decoration: none; padding: 14px 20px; border-radius: 999px; font-weight: 700; display: inline-block; }
.btn.primary { background: #d2a273; color: #1e2c26; }
.btn.secondary { border: 1px solid rgba(255,255,255,.35); color: white; }
.hero-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); padding: 30px; border-radius: 22px; backdrop-filter: blur(8px); }
.stat-label { color: rgba(255,255,255,.58); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.stat-value { font-family: Georgia, serif; font-size: 2rem; margin-top: 6px; }
.stat-value.small { font-size: 1.25rem; }
.divider { height: 1px; background: rgba(255,255,255,.15); margin: 22px 0; }
.section { padding: 100px 0; }
.two-col { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.section h2 { font-family: Georgia, serif; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.05; margin: 10px 0 20px; font-weight: 500; }
.section-text p { font-size: 1.08rem; color: var(--muted); }
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.company-grid div, .contact-card div { background: rgba(255,255,255,.5); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.company-grid span, .contact-card span { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 5px; }
.merger-section { background: var(--dark); color: white; }
.section-kicker.light { color: #d7ad83; }
.lead { max-width: 850px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.notice { margin: 28px 0 34px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); border-radius: 14px; color: rgba(255,255,255,.82); }
.documents { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.doc-card { display: flex; gap: 18px; padding: 22px; text-decoration: none; background: #f5eee5; color: var(--ink); border-radius: 16px; transition: transform .18s ease, box-shadow .18s ease; }
.doc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.doc-icon { min-width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center; background: var(--accent); color: white; font-weight: 700; font-size: .78rem; }
.doc-card h3 { margin: 0 0 4px; font-size: 1.05rem; }
.doc-card p { margin: 0 0 6px; color: var(--muted); font-size: .92rem; }
.doc-card span { color: var(--accent-dark); font-size: .8rem; }
.contact-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-card { display: grid; gap: 14px; }
.contact-card a { text-decoration: none; }
footer { border-top: 1px solid var(--line); padding: 26px 0; color: var(--muted); font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero-content, .two-col, .contact-section { grid-template-columns: 1fr; gap: 36px; }
  .hero-content { padding: 60px 0 80px; }
  .documents, .company-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .footer-inner { flex-direction: column; }
}
