:root {
  --primary: #E11D48; /* Rose */
  --secondary: #D4AF37; /* Gold */
  --bg: #070B14;
  --text: #E5E7EB;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 15% -10%, rgba(225,29,72,.35), transparent 60%),
              radial-gradient(900px 600px at 90% 0%, rgba(212,175,55,.20), transparent 55%),
              var(--bg);
  color: var(--text);
}

.font-display {
  font-family: 'Playfair Display', ui-serif, Georgia, serif;
}

.container-max {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7, 11, 20, .55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-nav {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(7, 11, 20, .92);
  backdrop-filter: blur(12px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
}

.navlink {
  padding: .55rem .8rem;
  border-radius: 999px;
  color: rgba(226,232,240,.92);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.navlink:hover {
  background: rgba(255,255,255,.08);
  color: white;
  transform: translateY(-1px);
}
.navlink-active {
  background: rgba(255,255,255,.10);
  color: white;
  border: 1px solid rgba(255,255,255,.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), rgba(225,29,72,.82), var(--secondary));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(225,29,72,.20);
}
.btn-primary:hover { box-shadow: 0 18px 50px rgba(225,29,72,.28); }

.btn-ghost { background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: rgba(255,255,255,.10); }

.btn-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  transition: transform .2s ease, background .2s ease;
}
.btn-icon:hover { background: rgba(255,255,255,.10); transform: translateY(-1px); }

.glass {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,11,20,.82) 0%, rgba(7,11,20,.58) 55%, rgba(7,11,20,.22) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-content { position: relative; z-index: 2; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-size: .85rem;
}

.card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}
.card:hover { border-color: rgba(255,255,255,.16); }

.footer-title { font-weight: 700; color: white; }
.muted { color: rgba(226,232,240,.78); }
.divider { height: 1px; background: rgba(255,255,255,.10); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  grid-column: span 12;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  position: relative;
}
@media (min-width: 640px) { .gallery-item { grid-column: span 6; } }
@media (min-width: 1024px) { .gallery-item { grid-column: span 4; } }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  color: rgba(255,255,255,.9);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 1.25rem;
}
.lightbox.open { display: flex; }

.lightbox-card {
  width: min(1040px, 100%);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(10, 14, 26, .92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
}
.lightbox-img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: rgba(0,0,0,.35);
}
.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem;
  border-top: 1px solid rgba(255,255,255,.10);
}
.lightbox-btn {
  padding: .6rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: white;
}
.lightbox-btn:hover { background: rgba(255,255,255,.10); }

.input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding: .85rem 1rem;
  color: white;
  outline: none;
}
.input::placeholder { color: rgba(226,232,240,.55); }
.input:focus {
  border-color: rgba(225,29,72,.55);
  box-shadow: 0 0 0 4px rgba(225,29,72,.15);
}
