:root {
  --bg-1: #020722;
  --bg-2: #12162b;
  --bg-3: #000417;
  --surface: rgba(255,255,255,0.06);
  --surface-strong: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.12);
  --text: #FFFFFF;
  --muted: rgba(255,255,255,0.78);
  --gold: #CBB26A;
  --gold-2: #E6D7A3;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-soft: 0 6px 18px rgba(0,0,0,0.28);
  --container: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0; color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  background: radial-gradient(1200px 1200px at 80% -10%, #1d2250 0%, transparent 60%),
              radial-gradient(900px 900px at -10% 10%, #121739 0%, transparent 60%),
              linear-gradient(120deg, var(--bg-1), var(--bg-2) 55%, var(--bg-3));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.04"/></svg>');
  mix-blend-mode: soft-light; pointer-events: none;
}

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

/* Header */
header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(10,12,26,0.75), rgba(10,12,26,0.35));
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.logo { height: 36px; width: auto; }
.brand .mark { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: 0.6px; font-size: 20px; }
.brand .sub { opacity: 0.7; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }

.menu { display: flex; gap: 26px; }
.menu a {
  position: relative; text-decoration: none; color: var(--text); font-weight: 500; letter-spacing: 0.2px;
}
.menu a::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transition: width 260ms ease;
}
.menu a:hover::after { width: 100%; }

/* Hero */
.hero { position: relative; padding: 120px 0 100px; text-align: center; }
.eyebrow { color: var(--gold-2); letter-spacing: 2.5px; text-transform: uppercase; font-size: 12px; opacity: 0.95; }
.hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(36px, 6vw, 64px); line-height: 1.08; margin: 14px auto 16px; max-width: 900px;
  background: linear-gradient(180deg, #fff 0%, #EAE7D9 70%, #C9C6B5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { margin: 0 auto; max-width: 760px; font-size: 18px; color: var(--muted); }

.cta-row { margin-top: 28px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-weight: 600; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease; border: 1px solid transparent; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(90deg, var(--gold), var(--gold-2)); color: #0c0f1e; box-shadow: 0 10px 22px rgba(203,178,106,0.25); }
.btn-primary:hover { box-shadow: 0 16px 30px rgba(203,178,106,0.35); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--gold); }
.btn-ghost:hover { background: rgba(203,178,106,0.12); }

.divider { width: 120px; height: 1px; margin: 32px auto 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.8; }

/* Sections */
section { padding: 90px 0; }
section h2 {
  text-align: center; margin: 0 0 18px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(28px, 4vw, 40px);
  background: linear-gradient(180deg, #fff 0%, #EAE7D9 70%, #C9C6B5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { text-align: center; margin: 0 auto; max-width: 760px; color: var(--muted); font-size: 18px; }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 34px; }
.card { background: linear-gradient(180deg, var(--surface), var(--surface-strong)); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(203,178,106,0.35); }
.card h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: 0.2px; }
.card p { margin: 0; color: var(--muted); }

/* Contact split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px; }

/* Footer */
footer {
  padding: 26px 0; text-align: center; color: var(--muted);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .menu { display: none; }
  .hero { padding: 96px 0 72px; }
  section { padding: 72px 0; }
  .grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
}

/* Force header logo size */
header .brand .logo {
  height: 80px;
  width: auto;
  max-height: none;
}