:root {
  --bg: #0b0c10;
  --panel: #111318;
  --text: #e7e7ea;
  --muted: #9aa0a6;
  --accent: #eab308; /* amber */
  --accent-2: #60a5fa; /* blue */
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, #12151c 0%, #0b0c10 55%),
              radial-gradient(800px 500px at 110% 10%, #0e1015 0%, #0b0c10 60%);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.container { width: min(1100px, 92vw); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: saturate(1.2) blur(8px); background-color: rgba(11,12,16,0.6); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: 0.6px; }
.brand-mark { color: var(--accent); }
.brand-text { font-family: 'Playfair Display', serif; font-size: 22px; }
.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a { color: var(--text); text-decoration: none; opacity: 0.9; }
.nav-links a:hover { opacity: 1; }
.nav-toggle { display: none; font-size: 20px; background: transparent; color: var(--text); border: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: var(--radius); text-decoration: none; font-weight: 600; letter-spacing: 0.3px; transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-solid { background: linear-gradient(135deg, var(--accent), #f59e0b); color: #0b0c10; }
.btn-outline { border: 1px solid rgba(255,255,255,0.15); color: var(--text); background: rgba(255,255,255,0.04); }
.btn-ghost { color: var(--text); opacity: 0.9; }
.btn-ghost:hover { opacity: 1; }

/* Hero */
.hero { position: relative; min-height: 70vh; display: grid; place-items: center; padding: 90px 0 70px; }
.hero-content { text-align: center; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 64px); line-height: 1.06; margin: 0 0 14px; }
.hero-sub { max-width: 720px; margin: 0 auto 22px; color: var(--muted); font-weight: 400; }
.hero-cta { display: flex; gap: 14px; justify-content: center; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px 260px at 50% 20%, rgba(234,179,8,0.15) 0, rgba(234,179,8,0) 55%), radial-gradient(700px 260px at 50% 80%, rgba(96,165,250,0.12) 0, rgba(96,165,250,0) 55%); animation: floatGlow 8s ease-in-out infinite; }
@keyframes floatGlow { 0%,100%{ transform: translateY(0)} 50%{ transform: translateY(-8px)} }

/* Sections */
.section { padding: 70px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); margin: 0 0 14px; }
.section-sub { color: var(--muted); margin: 0 0 22px; }
.section-header { display: grid; gap: 8px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); min-height: 120px; }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; background: #0e1116; border: 1px solid rgba(255,255,255,0.08); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; transition: transform 200ms ease, filter 200ms ease; }
.gallery-item:hover img { transform: scale(1.03); filter: contrast(1.06) saturate(1.06); }
.gallery-item a { position: absolute; inset: 0; display: block; }
.gallery-cta { display: flex; justify-content: center; margin-top: 18px; }

/* Gallery is link-only for now; add images later when ready */

/* About */
.about-wrap { display: grid; gap: 12px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-card { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.contact-actions { display: flex; gap: 12px; margin-top: 12px; }
.social-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.social-list a { color: var(--text); text-decoration: none; opacity: 0.9; }
.social-list a:hover { opacity: 1; }

/* Footer */
.site-footer { padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 30px; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; }
.back-to-top { color: var(--muted); text-decoration: none; }
.back-to-top:hover { color: var(--text); }

/* Responsive */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .hero { min-height: 60vh; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
