/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #FDFAF6;
  --text:      #2C2416;
  --muted:     #7A6E61;
  --gold:      #C9A96E;
  --gold-dark: #9E7A3E;
  --white:     #FFFFFF;
  --nav-h:     64px;
  --radius:    4px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =====================
   NAVIGATION
   ===================== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  z-index: 100;
}

.brand {
  font-family: 'Amiri', serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.2s;
}
.brand:hover { color: var(--gold-dark); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-dark); }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 5vw 4rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('IMG_5504.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.38;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B4F1E;
}

.hero h1 {
  font-family: 'Amiri', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: 0.02em;
}

.hero-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.65rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.25s, color 0.25s;
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* =====================
   SECTIONS
   ===================== */
.section {
  padding: 5rem 5vw;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Amiri', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.6rem;
}

/* =====================
   GALLERY
   ===================== */
.gallery {
  columns: 3;
  column-gap: 1rem;
}

.gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  break-inside: avoid;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.97);
}

.gallery img:hover {
  transform: scale(1.015);
  filter: brightness(1.04);
}

/* =====================
   ABOUT
   ===================== */
.about {
  background: linear-gradient(135deg, rgba(201,169,110,0.05) 0%, transparent 60%), var(--bg);
  max-width: 100%;
  padding: 5rem 5vw;
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  flex-shrink: 0;
}

.avatar {
  width: 280px;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(44, 36, 22, 0.12);
}

.about-text p {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 520px;
}

.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.25s, color 0.25s;
}
.ig-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* =====================
   FOOTER
   ===================== */
footer {
  text-align: center;
  padding: 3.5rem 5vw;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-ig:hover { color: var(--gold-dark); }

.copyright {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.94);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 4px 60px rgba(0,0,0,0.5);
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: color 0.2s;
  padding: 0.5rem;
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover { color: var(--gold); }

.lb-close { top: 1.2rem;  right: 1.5rem; font-size: 2.2rem; }
.lb-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .gallery { columns: 2; }

  .about-inner {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .about-text p { max-width: 100%; }

  .section-title::after { margin: 0.6rem auto 0; }
}

@media (max-width: 600px) {
  .gallery { columns: 1; }

  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.8rem; }

  .avatar {
    width: 220px;
    height: 270px;
  }

  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
}
