:root{
  --bg: #0a0a0a;
  --panel: rgba(255,255,255,0.05);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.45);
  --subtle: rgba(255,255,255,0.1);
  --accent: #ffffff;
  --shadow: 0 20px 60px rgba(0,0,0,0.7);
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html, body{ height: 100%; margin: 0; }
body{
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── HEADER ── */
.header{
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 32px;
  background: var(--bg);
}

.brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.brand__name{
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.8vw, 38px);
  letter-spacing: 0.1em;
  color: var(--text);
  font-weight: 400;
}
.brand__tag{
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 400;
}

.menu-btn{
  justify-self: end;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px 0;
  transition: opacity .2s;
}
.menu-btn:hover{ opacity: 0.5; }

/* ── NAV OVERLAY ── */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 100;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nav-overlay.is-open{ display: flex; }

.nav-overlay__close{
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  transition: opacity .2s;
}
.nav-overlay__close:hover{ opacity: 0.5; }

.nav-overlay__links{
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.nav-overlay__links a{
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 9vw, 108px);
  letter-spacing: 0.04em;
  color: var(--text);
  display: block;
  line-height: 1.05;
  padding: 4px 0;
  transition: opacity .2s var(--ease);
}
.nav-overlay__links a:hover{ opacity: 0.4; }

.nav-overlay__divider{
  width: 32px;
  height: 1px;
  background: var(--subtle);
  margin: 18px auto;
}

/* ── MAIN ── */
main{ width: 100%; }

/* ── LANDING ── */
.landing{
  height: calc(100vh - 95px);
  background-image: url(images/IMG_1759.jpeg);
  background-size: cover;
  background-position: center;
}

/* ── GALLERY GRID ── */
.grid{
  position: relative;
  width: 100%;
}

.card{
  position: absolute;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
  border: none;
}
.card img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s var(--ease);
}
.card:hover img{ transform: scale(1.03); }
.card__meta{ display: none; }

/* ── CONTACT / ABOUT ── */
.section{
  padding: 56px 40px;
  max-width: 1120px;
  margin: 0 auto;
}

.section--split{
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.section--bordered{
  border-top: 1px solid var(--subtle);
}

.section h2{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.06em;
  margin: 0 0 20px;
  font-weight: 400;
}
.section p{
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 14px;
  font-size: 14px;
}
.list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 13px;
}

.about-card{
  border: 1px solid var(--subtle);
  background: var(--panel);
  overflow: hidden;
}
.about-card__inner{ padding: 28px; }
.about-card__line{
  height: 1px;
  width: 40px;
  background: var(--accent);
  margin-bottom: 20px;
}
.about-card__quote{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  font-size: 14px;
}
.about-card__meta{
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.contact__item{
  border: 1px solid var(--subtle);
  background: var(--panel);
  padding: 22px;
  transition: background .2s var(--ease);
}
.contact__item:hover{ background: rgba(255,255,255,0.07); }
.contact__label{
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact__value{
  font-size: 13px;
  font-weight: 500;
}

/* ── FOOTER ── */
.footer{
  padding: 24px 32px;
  border-top: 1px solid var(--subtle);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

/* ── LIGHTBOX ── */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  display: none;
  z-index: 50;
  padding: 18px;
}
.lightbox.is-open{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.lightbox__figure{
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.lightbox img{
  max-width: min(980px, 92vw);
  max-height: 78vh;
  width: auto;
  height: auto;
  box-shadow: var(--shadow);
}
.lightbox figcaption{
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
.lightbox__close{
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  font-size: 18px;
  display: grid;
  place-items: center;
}
.lightbox__nav{
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px){
  .section--split{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .header{ padding: 22px 24px; }
  .nav-overlay__links a{ font-size: clamp(44px, 12vw, 80px); }
}
@media (max-width: 480px){
  .grid{ grid-template-columns: repeat(2, 1fr); gap: 2px; padding: 2px; }
  .header{ padding: 18px 20px; grid-template-columns: 1fr auto; }
  .brand{ align-items: flex-start; }
}
