
:root {
  --bg: #030712;
  --bg-soft: #020617;
  --surface: #020617;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #a855f7;
  --accent-soft: #7c3aed;
  --border-subtle: rgba(148,163,184,0.28);
}
*,
*::before,
*::after { box-sizing:border-box; }
html,body {
  margin:0; padding:0;
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
  color:var(--text);
}
body.light {
  --bg:#f9fafb; --bg-soft:#ffffff; --surface:#f3f4f6;
  --text:#020617; --muted:#4b5563;
  --accent:#4f46e5; --accent-soft:#6366f1;
  --border-subtle:rgba(148,163,184,0.5);
  background: radial-gradient(circle at top, #e5e7eb 0, #f9fafb 45%, #e5e7eb 100%);
}
body { display:flex; flex-direction:column; min-height:100vh; }
.main-shell { max-width:1120px; margin:0 auto; padding:1.4rem 1rem 3rem; flex:1; }

/* HEADER / NAV */
.site-header {
  position:sticky; top:0; z-index:30;
  backdrop-filter:blur(14px);
  background:linear-gradient(to bottom,rgba(15,23,42,.95),rgba(15,23,42,.75));
  border-bottom:1px solid var(--border-subtle);
}
body.light .site-header {
  background:linear-gradient(to bottom,rgba(249,250,251,.97),rgba(249,250,251,.88));
}
.nav-inner {
  max-width:1120px; margin:0 auto; padding:.55rem 1rem;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.brand-block { display:flex; flex-direction:column; gap:.1rem; }
.brand-title {
  font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  font-size:.9rem;
}
.brand-tagline { font-size:.78rem; color:var(--muted); }
.nav-links {
  display:flex; flex-wrap:wrap; gap:.5rem; align-items:center;
}
.nav-links a {
  font-size:.86rem; text-decoration:none; color:var(--muted);
  padding:.34rem .8rem; border-radius:999px; border:1px solid transparent;
}
.nav-links a:hover { color:var(--text); border-color:var(--border-subtle); }
.nav-links a.active {
  background:linear-gradient(135deg,var(--accent-soft),var(--accent));
  color:#f9fafb; box-shadow:0 0 16px rgba(168,85,247,.55);
}
.theme-toggle {
  border-radius:999px;
  border:1px solid var(--border-subtle);
  background:rgba(15,23,42,.96);
  color:var(--muted);
  font-size:.78rem;
  padding:.3rem .7rem;
  display:inline-flex; align-items:center; gap:.25rem;
  cursor:pointer;
}
body.light .theme-toggle { background:rgba(243,244,246,.98); }

/* HERO */
.hero {
  display:grid; grid-template-columns:minmax(0,1.1fr) minmax(0,1.1fr);
  gap:1.6rem; margin-top:1.6rem; align-items:center;
}
@media(max-width:860px){ .hero{grid-template-columns:1fr;} }
.hero-kicker {
  font-size:.78rem; letter-spacing:.22em;
  text-transform:uppercase; color:var(--accent);
}
.hero-title {
  margin:.3rem 0 .5rem;
  font-size:clamp(2rem,3.1vw,2.6rem);
}
.hero-tagline { margin:0; color:var(--muted); max-width:34rem; }
.hero-actions {
  margin-top:1.1rem;
  display:flex; flex-wrap:wrap; gap:.8rem;
}
.button-primary,.button-secondary {
  border-radius:999px; padding:.48rem 1.2rem; font-size:.88rem;
  display:inline-flex; align-items:center; gap:.3rem;
  border:1px solid transparent; text-decoration:none; cursor:pointer;
}
.button-primary {
  background:radial-gradient(circle at top,var(--accent),var(--accent-soft));
  color:#f9fafb;
}
.button-secondary {
  background:transparent; color:var(--muted); border-color:var(--border-subtle);
}
.hero-meta {
  margin-top:1rem;
  display:flex; flex-wrap:wrap; gap:.8rem;
  font-size:.78rem; color:var(--muted);
}
.hero-media { position:relative; }
.hero-photo-shell {
  border-radius:20px; overflow:hidden;
  border:1px solid var(--border-subtle);
  box-shadow:0 24px 60px rgba(0,0,0,.85);
}
.hero-photo-shell img { width:100%; height:100%; object-fit:cover; }
.hero-photo-caption {
  position:absolute; left:.9rem; bottom:.7rem;
  padding:.3rem .7rem; border-radius:999px;
  background:rgba(15,23,42,.88); color:#e5e7eb;
  font-size:.78rem;
}

/* SECTIONS */
.section { margin-top:2.2rem; }
.section-header {
  display:flex; justify-content:space-between; align-items:baseline; gap:.9rem;
}
.section-header p { margin:0; color:var(--muted); font-size:.9rem; }

/* SLIDESHOW */
.slideshow {
  border-radius:18px; padding:.9rem;
  border:1px solid var(--border-subtle);
  background:rgba(15,23,42,.95);
}
body.light .slideshow { background:rgba(255,255,255,.96); }
.slideshow-inner { position:relative; border-radius:14px; overflow:hidden; }
.slide { 
  display:none; position:relative;
  opacity:0; transition:opacity .6s ease-in-out;
}
.slide.active { display:block; opacity:1; }
.slide img { width:100%; height:310px; object-fit:cover; }
.slide-caption {
  position:absolute; left:.8rem; bottom:.7rem;
  padding:.25rem .65rem; border-radius:999px;
  background:rgba(15,23,42,.86); font-size:.78rem;
}
.slide-controls {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:.55rem;
}
.slide-arrows button {
  border-radius:999px; border:1px solid var(--border-subtle);
  background:transparent; color:var(--muted);
  font-size:.78rem; padding:.28rem .75rem; cursor:pointer;
}
.slide-arrows button:hover { color:var(--text); border-color:var(--accent); }
.slide-dots { display:flex; gap:.3rem; }
.slide-dots button {
  width:8px; height:8px; border-radius:999px; border:none;
  background:rgba(148,163,184,.65); cursor:pointer;
}
.slide-dots button.active { background:var(--accent); }

/* GALLERY GRID */
.grid-gallery {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:.9rem;
}
.grid-item {
  position:relative; border-radius:16px; overflow:hidden;
  border:1px solid var(--border-subtle);
}
.grid-item img {
  width:100%; height:210px; object-fit:cover;
  transition:transform .22s ease-out;
}
.grid-item:hover img { transform:scale(1.05); }
.grid-item span {
  position:absolute; left:.7rem; bottom:.55rem;
  font-size:.74rem; padding:.2rem .55rem;
  border-radius:999px; background:rgba(15,23,42,.86);
}

/* ABOUT */
.about-layout {
  display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,1.2fr);
  gap:1.6rem; margin-top:1.5rem; align-items:center;
}
@media(max-width:860px){ .about-layout{grid-template-columns:1fr;} }
.about-photo {
  border-radius:22px; overflow:hidden;
  border:1px solid var(--border-subtle);
  box-shadow:0 24px 60px rgba(0,0,0,.85);
  position:relative;
}
.about-photo img { width:100%; height:100%; object-fit:cover; }
.about-badge {
  position:absolute; left:.9rem; bottom:.8rem;
  font-size:.78rem; padding:.26rem .7rem;
  border-radius:999px; background:rgba(15,23,42,.9); color:var(--muted);
}
.about-meta {
  display:flex; flex-wrap:wrap; gap:.8rem;
  font-size:.85rem; color:var(--muted); margin-top:.9rem;
}

/* CONTACT */
.contact-layout {
  display:grid; grid-template-columns:minmax(0,1.1fr) minmax(0,1.1fr);
  gap:1.5rem; margin-top:1.5rem;
}
@media(max-width:860px){ .contact-layout{grid-template-columns:1fr;} }
.contact-card,.embed-shell {
  border-radius:16px; border:1px solid var(--border-subtle);
  background:rgba(15,23,42,.95); padding:1rem;
}
body.light .contact-card,body.light .embed-shell { background:#ffffff; }

label { display:block; font-size:.86rem; margin-bottom:.22rem; }
input[type="text"],input[type="email"],textarea {
  width:100%; border-radius:10px;
  border:1px solid var(--border-subtle);
  background:#020617; color:var(--text);
  padding:.5rem .65rem; font-size:.9rem;
}
body.light input[type="text"],body.light input[type="email"],body.light textarea {
  background:#f9fafb; color:#020617;
}
textarea { min-height:150px; resize:vertical; }
.form-row {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:.8rem;
}
.form-actions {
  display:flex; align-items:center; gap:.8rem; margin-top:.9rem;
}
.form-note { font-size:.78rem; color:var(--muted); }
.form-status { margin-top:.45rem; font-size:.85rem; }
.embed-shell iframe { width:100%; height:260px; border:none; }

/* FOOTER */
.site-footer {
  border-top:1px solid var(--border-subtle);
  padding:.9rem 1rem 1.2rem; font-size:.8rem; color:var(--muted);
}
.footer-inner {
  max-width:1120px; margin:0 auto;
  display:flex; justify-content:space-between; align-items:center;
  gap:.75rem; flex-wrap:wrap;
}
.footer-inner a { color:var(--muted); text-decoration:none; }
.footer-inner a:hover { color:var(--accent); }

/* TYPOGRAPHY */
p { color:var(--muted); line-height:1.7; font-size:.97rem; }
h1,h2,h3 { margin-top:0; }
