:root {
  --bg: #070708;
  --bg-2: #0e0e11;
  --surface: #141417;
  --line: rgba(232, 228, 220, 0.08);
  --text: #e8e4dc;
  --muted: #9a9488;
  --gold: #d4b483;
  --gold-2: #f0d7a8;
  --electric: #6ec8ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: Outfit, system-ui, sans-serif;
  min-height: 100%;
}

body {
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.16;
}

.glow-a {
  top: -18vw;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #3a2a14 0%, transparent 70%);
}

.glow-b {
  bottom: -10vw;
  right: -10vw;
  background: radial-gradient(circle, #10202c 0%, transparent 70%);
  opacity: 0.22;
}

.hero, main, footer {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.5rem 1.5rem 3rem;
}

.logo {
  width: min(280px, 62vw);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(212, 180, 131, 0.18));
  margin-bottom: 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0.15rem 0 0.85rem;
}

.tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 300;
  color: var(--text);
}

.lede {
  max-width: 34rem;
  margin: 0.85rem auto 1.8rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(180deg, #efd7aa 0%, #c9a36a 100%);
  color: #1a140c;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 230, 180, 0.15), 0 10px 30px rgba(201, 163, 106, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 0 0 1px rgba(255, 230, 180, 0.28), 0 14px 36px rgba(201, 163, 106, 0.28);
}

.x-icon {
  width: 14px;
  height: 14px;
}

.gallery-wrap {
  padding: 1rem 1.25rem 4rem;
  max-width: 1120px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 1.6rem;
}

.section-head h2 {
  font-family: Cinzel, serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.section-head p {
  color: var(--muted);
  margin-top: 0.35rem;
  font-weight: 300;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.tile {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}

.tile.tall {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: saturate(0.92) contrast(1.04);
}

.tile.portrait img {
  object-position: center 38%;
}

.tile:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.06);
}

.tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem 0.9rem 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #f3eee6;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
}

footer {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.logo-sm {
  width: 72px;
  opacity: 0.85;
  margin-bottom: 0.6rem;
}

footer p:first-of-type {
  color: var(--text);
  font-family: Cinzel, serif;
  letter-spacing: 0.08em;
}

.fine {
  font-size: 0.85rem;
  margin: 0.25rem 0 0.7rem;
}

.footer-link {
  color: var(--gold);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--gold-2);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(4, 4, 5, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 1.5rem;
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lb-cap {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.lb-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 780px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .tile.tall {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
    height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tile img, .btn {
    transition: none;
  }
}
