/* ═══════════════════════════════════════════
   GABIO — Fine Art Photography
   Design: Dark Luxury Editorial
   Fonts: Cormorant Garamond + DM Sans
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ── */
:root {
  --bg:          #0c0b09;
  --bg-2:        #131210;
  --bg-3:        #1c1a17;
  --accent:      #b8956a;
  --accent-dim:  #8a6e4f;
  --text:        #f0ece4;
  --text-muted:  #7a7268;
  --border:      #2a2520;
  --nav-h:       72px;
  --ease:        cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: background .4s var(--ease), backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(12,11,9,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
}
.nav__logo {
  height: 38px;
  width: auto;
  display: block;
  /* Logo has black bg — mix-blend-mode makes it blend on dark nav */
  mix-blend-mode: lighten;
}
.nav__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.nav__brand-name em {
  font-style: normal;
  color: var(--accent);
}
.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--text); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

/* ── Burger (mobile) ── */
.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 1px; background: var(--text); transition: .3s; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, #1e1810 0%, #0c0b09 70%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .06;
  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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.hero__line-top {
  position: absolute;
  top: 38%; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  opacity: .4;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .3s var(--ease) forwards;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--text);
  opacity: 0;
  animation: fadeUp .9s .5s var(--ease) forwards;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__tagline {
  margin-top: 2rem;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp .8s .8s var(--ease) forwards;
}
.hero__cta {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  animation: fadeUp .8s 1s var(--ease) forwards;
  transition: gap .3s;
}
.hero__cta:hover { gap: 1.25rem; }
.hero__cta::after { content: '→'; font-size: 1rem; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--text-muted); z-index: 2;
  animation: fadeUp .8s 1.2s var(--ease) both;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.3)} }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

/* ── Page wrapper ── */
.page {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 6rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.page--wide { max-width: 1300px; }

/* ── Section header ── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}
.section-header__eyebrow {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}
.section-header__rule {
  width: 60px; height: 1px;
  background: var(--accent);
  margin-top: 1.5rem;
  opacity: .6;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(.2) contrast(1.05);
}
.about-photo__frame {
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  right: 1.5rem; bottom: 1.5rem;
  border: 1px solid var(--border);
  z-index: -1;
}
.about-photo__label {
  position: absolute;
  bottom: -1rem; right: -1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .85rem;
  color: var(--accent);
  letter-spacing: .08em;
  white-space: nowrap;
}
.about-text__eyebrow {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.about-text__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--text);
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: .95rem;
}
.about-text p strong { color: var(--text); font-weight: 400; }
.about-quote {
  margin-top: 2.5rem;
  padding: 1.5rem 0 1.5rem 1.75rem;
  border-left: 1px solid var(--accent);
}
.about-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
}

/* ── Gallery ── */
.albums-list {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
.album-section { display: flex; flex-direction: column; gap: 1.25rem; }
.album-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.album-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
  margin: 0;
  letter-spacing: .02em;
}
.album-section__right {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-shrink: 0;
}
.album-section__date {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}
.album-section__meta {
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--text-muted);
}

/* ── Gallery grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px;
}
.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 2/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
  filter: grayscale(.15);
}
.gallery-item:hover img { transform: scale(1.05); filter: grayscale(0); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: .85rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  opacity: .8;
}

/* ── Age gate ── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.age-gate__box {
  max-width: 480px;
  text-align: center;
}
.age-gate__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.age-gate__text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.age-gate__rule {
  width: 40px; height: 1px;
  background: var(--accent);
  margin: 0 auto 2.5rem;
}
.age-gate__buttons { display: flex; gap: 1rem; justify-content: center; }
.btn {
  display: inline-block;
  padding: .85rem 2.25rem;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover { background: #d4b48a; }
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--text-muted); color: var(--text); }

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info__label {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.contact-info__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.contact-info__text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.contact-detail__item { font-size: .82rem; color: var(--text-muted); }
.contact-detail__item span { color: var(--accent); display: block; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .2rem; }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  padding: .9rem 1.1rem;
  outline: none;
  transition: border-color .25s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent-dim); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-notice {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--bg-2);
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--border);
}
.form-success .checkmark {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: .75rem;
}
.form-success p { font-size: .88rem; color: var(--text-muted); }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8,7,6,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); transition: color .2s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { color: var(--text); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__img-wrap { text-align: center; max-width: 90vw; max-height: 90vh; }
.lightbox__img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain;
}
.lightbox__caption { margin-top: .75rem; font-size: .8rem; color: var(--text-muted); }
.lightbox__counter { margin-top: .3rem; font-size: .72rem; color: #4a4540; }

/* ── Empty gallery ── */
.empty-gallery {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}
.empty-gallery .empty-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__brand {
  display: flex;
  align-items: center;
}
.footer__logo {
  height: 44px;
  width: auto;
  mix-blend-mode: lighten;
  opacity: .7;
  transition: opacity .25s;
}
.footer__logo:hover { opacity: 1; }
.footer__copy { font-size: .72rem; letter-spacing: .1em; color: var(--text-muted); opacity: .6; }
.footer__social { display: flex; gap: 1.25rem; }
.footer__social a { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); transition: color .2s; }
.footer__social a:hover { color: var(--accent); }

/* ── Home featured strip ── */
.home-strip {
  padding: 7rem 0;
  overflow: hidden;
}
.home-strip__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.home-strip__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.home-strip__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.home-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.home-strip__item {
  aspect-ratio: 2/3;
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
}
.home-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.2);
  transition: transform .7s var(--ease), filter .5s;
}
.home-strip__item:hover img { transform: scale(1.04); filter: grayscale(0); }
.home-strip__cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-end;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 0 1.5rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: var(--bg); padding: 3rem 2rem;
    gap: 1.5rem;
  }
  .nav__links.open a { font-size: 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .home-strip__grid { grid-template-columns: 1fr 1fr; }
  .footer { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .home-strip__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .age-gate__buttons { flex-direction: column; }
}
