/* Color system */
:root{
  --bg-1:#0b0b0c;
  --bg-2:#141416;
  --text:#f5f5f5;
  --muted:#b8b8b8;
  --gold:#D4AF37;
  --gold-700:#a88920;
  --maxw:1100px;
  --radius:12px;
  --shadow:0 12px 40px rgba(0,0,0,.35);
}

/* Base */
*, *::before, *::after { box-sizing:border-box; }
html,body{ margin:0; padding:0; height:100%; font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color:var(--text); background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; line-height:1.5; }
.container{ width:calc(100% - 40px); max-width:var(--maxw); margin:0 auto; }

/* Skip link */
.skip-link { position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { left:10px; top:10px; width:auto; height:auto; background:#fff; color:#000; padding:8px 12px; z-index:1000; text-decoration:none; border-radius:4px; }

/* Header */
.site-header{ padding:18px 0; border-bottom:1px solid rgba(212,175,55,0.06); background:rgba(0,0,0,0.35); position:sticky; top:0; z-index:50; }
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.logo { display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit;}
.logo img{ height:48px; display:inline-block; }
.logo-text{ font-family:"Playfair Display", Georgia, serif; color:var(--gold); font-weight:600; font-size:18px; }

/* Nav */
.nav-links{ display:flex; gap:18px; list-style:none; margin:0; padding:0; align-items:center; }
.nav-links a{ color:rgba(255,255,255,0.9); text-decoration:none; font-weight:600; font-size:14px; padding:6px 8px; border-radius:6px; }
.nav-links a:hover, .nav-links a:focus{ color:var(--gold); outline:none; }
.nav-links .cta{ padding:.45rem .8rem; border:1px solid var(--gold); border-radius:999px; background:transparent; }

/* Hero */
.hero{ padding:48px 0 36px; }
.hero-inner{ display:block; gap:32px; }
.hero-title{ font-family:"Playfair Display", serif; font-size:44px; margin:0 0 8px 0; color:var(--gold); }
.tagline{ font-weight:700; letter-spacing:2px; color:#f1e9d6; margin:0 0 12px 0; }
.lead{ max-width:70ch; margin:0 0 18px 0; color:rgba(255,255,255,0.9); }

/* Buttons */
.btn{ display:inline-block; text-decoration:none; padding:10px 16px; border-radius:8px; font-weight:700; }
.btn.primary{ background:var(--gold); color:#111; }
.btn.ghost{ border:1px solid rgba(255,255,255,0.06); color:rgba(255,255,255,0.95); background:transparent; margin-left:10px; }

/* Sections */
.section{ padding:36px 0; border-top:1px solid rgba(255,255,255,0.02); }
.section h2{ font-family:"Playfair Display", serif; color:var(--gold); margin:0 0 12px 0; font-size:24px; }

/* Grid */
.services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.card{ border:1px solid rgba(212,175,55,0.22); border-radius:var(--radius); padding:18px; background:rgba(20,20,22,0.5); }

/* Events teaser */
.teaser{ display:flex; gap:20px; align-items:center; justify-content:space-between; }
.teaser-text .copy{ color:var(--muted); }

/* Footer */
.site-footer{ padding:20px 0; border-top:1px solid rgba(255,255,255,0.02); color:rgba(255,255,255,0.7); text-align:center; }
.footer-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; }

/* Mobile */
@media (max-width:1100px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:760px){
  .header-inner{ flex-direction:row; align-items:center; }
  .nav-links{ display:none; } /* keep header minimal on small screens */
  .hero-inner{ padding:0; }
  .services-grid{ grid-template-columns:1fr; }
  .logo img{ height:40px; }
  .hero-title{ font-size:34px; }

  /* Make primary CTAs full width on small screens */
  .btn.primary, .btn.ghost { display:block; width:100%; box-sizing:border-box; text-align:center; padding:12px; margin:8px 0; }
  .container { width:calc(100% - 24px); }
}
