*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root { --cream: #f7f4ef; --ink: #1a1814; --muted: #7a7570; --accent: #b8a898; --border: #e0dbd4; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); font-weight: 300; overflow-x: hidden; }

/* NAV */
nav.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 0 4rem; height: 64px; background: var(--cream); border-bottom: 1px solid var(--border); }
.nav-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; letter-spacing: 0.05em; color: var(--ink); text-decoration: none; white-space: nowrap; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-insta { display: flex; align-items: center; color: var(--muted); transition: color 0.2s; }
.nav-insta:hover { color: var(--ink); }
.nav-insta svg { width: 17px; height: 17px; }
.hamburger-btn { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger-btn span { width: 20px; height: 1.5px; background: var(--muted); display: block; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 56px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); z-index: 99; padding: 1.5rem 2rem; flex-direction: column; gap: 1.2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
.mobile-menu-insta { display: flex; align-items: center; gap: 8px; color: var(--muted); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.05em; margin-top: 0.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.mobile-menu-insta svg { width: 16px; height: 16px; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 4rem 3rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #e8e0d5 0%, var(--cream) 55%); z-index: 0; }
.hero-img-wrap { position: absolute; top: 0; right: 0; width: 52%; height: 100%; background: #d4c9bc; z-index: 1; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-content { position: relative; z-index: 2; max-width: 52%; padding-top: 80px; }
.hero-eyebrow { font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 300; line-height: 1.0; color: var(--ink); margin-bottom: 2rem; }
.hero-title em { font-style: italic; color: var(--muted); }
.hero-sub { font-size: 0.95rem; color: var(--muted); max-width: 400px; line-height: 1.75; margin-bottom: 2.5rem; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.9rem 2.4rem; border: 1px solid var(--ink); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); text-decoration: none; transition: all 0.25s; cursor: pointer; background: transparent; font-family: 'DM Sans', sans-serif; font-weight: 300; }
.btn:hover { background: var(--ink); color: var(--cream); }
.btn-light { display: inline-block; padding: 0.9rem 2.4rem; border: 1px solid var(--cream); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); background: transparent; font-family: 'DM Sans', sans-serif; font-weight: 300; cursor: pointer; transition: all 0.25s; margin-top: 0.5rem; }
.btn-light:hover { background: var(--cream); color: var(--ink); }
.btn-light:disabled { opacity: 0.5; cursor: not-allowed; }

/* SECTIONS */
.site-section { padding: 5rem 4rem; }
.section-label { font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; color: #3a3530; margin-bottom: 3rem; display: flex; align-items: center; gap: 1rem; }
.section-label::after { content: ''; height: 1px; background: var(--border); width: 60px; }

/* GALLERY */
.gallery-section { background: #fff; margin-top: 0; padding-top: 4rem; padding-bottom: 4rem; }
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.gallery-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; line-height: 1.1; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 1.5rem; }
.gallery-item { cursor: pointer; overflow: hidden; position: relative; }
.gallery-item.tall { grid-row: span 2; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 1.2rem; position: relative; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.02); }
.gallery-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item.tall .gallery-placeholder img { object-fit: contain; background: #d4c4b0; }
.gallery-tag { position: absolute; bottom: 1rem; left: 1rem; background: rgba(247,244,239,0.92); padding: 0.3rem 0.8rem; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); opacity: 0; transition: opacity 0.3s; z-index: 2; }
.gallery-item:hover .gallery-tag { opacity: 1; }

/* NEWS & EVENTS */
.news-section { background: var(--cream); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card { background: #fff; border: 1px solid var(--border); padding: 1.8rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; transition: border-color 0.25s; }
.news-card:hover { border-color: var(--ink); }
.news-type { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.news-date { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.news-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 300; line-height: 1.3; color: var(--ink); flex: 1; }
.news-location { font-size: 0.78rem; color: var(--muted); margin-top: 0.4rem; }
.news-empty { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: var(--muted); font-style: italic; }

/* PRESS */
.press-section { background: var(--cream); padding-top: 3.5rem; padding-bottom: 3.5rem; }
.press-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.press-card { border: 1px solid var(--border); padding: 1.8rem 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; text-decoration: none; color: inherit; transition: border-color 0.25s; background: #fff; }
.press-card:hover { border-color: var(--ink); }
.press-source { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.press-headline { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 300; line-height: 1.3; color: var(--ink); flex: 1; }
.press-type { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 0.4rem; }
.press-type svg { width: 14px; height: 14px; flex-shrink: 0; }
.book-card { display: flex; align-items: center; gap: 2.5rem; background: var(--ink); padding: 2rem 2.5rem; margin-top: 1.5rem; text-decoration: none; transition: opacity 0.2s; }
.book-card:hover { opacity: 0.9; }
.book-spine { width: 3px; height: 60px; background: var(--accent); flex-shrink: 0; }
.book-text { flex: 1; }
.book-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.book-title-text { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.2; margin-bottom: 0.3rem; }
.book-sub { font-size: 0.82rem; color: #7a7570; }
.book-cta { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); border: 1px solid #3a3530; padding: 0.7rem 1.4rem; flex-shrink: 0; white-space: nowrap; }

/* ABOUT */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-portrait { width: 100%; aspect-ratio: 3/4; background: #c8b8a8; overflow: hidden; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; line-height: 1.1; margin-bottom: 2rem; }
.about-title em { font-style: italic; color: var(--muted); }
.about-text { font-size: 0.95rem; line-height: 1.85; color: var(--muted); margin-bottom: 1.2rem; }
.about-stats { display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; display: block; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* CONTACT */
.contact-section { background: var(--ink); color: var(--cream); }
.contact-section .section-label { color: var(--accent); }
.contact-section .section-label::after { background: #3a3530; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
.contact-title { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem; }
.contact-title em { font-style: italic; color: var(--accent); }
.contact-info-text { font-size: 0.95rem; color: var(--accent); line-height: 1.75; margin-bottom: 2rem; }
.contact-divider { height: 1px; background: #2a2520; margin: 1.2rem 0; }
.contact-insta { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--accent); font-size: 0.82rem; letter-spacing: 0.05em; transition: color 0.2s; }
.contact-insta:hover { color: #e0d8cc; }
.contact-insta svg { width: 15px; height: 15px; flex-shrink: 0; }
.contact-insta-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #4a4540; margin-bottom: 0.6rem; }
.form-group { margin-bottom: 1.8rem; }
.form-label { display: block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem; }
.form-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid #3a3530; padding: 0.6rem 0; font-size: 0.95rem; color: var(--cream); font-family: 'DM Sans', sans-serif; font-weight: 300; outline: none; transition: border-color 0.2s; }
.form-input::placeholder { color: #4a4540; }
.form-input:focus { border-color: var(--accent); }
textarea.form-input { resize: none; height: 120px; }

/* FOOTER */
footer.site-footer { background: var(--ink); padding: 1.8rem 4rem; border-top: 1px solid #2a2520; display: flex; justify-content: space-between; align-items: center; }
.footer-left { display: flex; align-items: center; gap: 1.2rem; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; color: var(--accent); letter-spacing: 0.05em; }
.footer-insta { display: flex; align-items: center; color: #4a4540; transition: color 0.2s; }
.footer-insta:hover { color: var(--accent); }
.footer-insta svg { width: 15px; height: 15px; }
.footer-copy { font-size: 0.72rem; color: #4a4540; letter-spacing: 0.08em; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: fadeUp 0.9s ease both; animation-delay: 0.1s; }
.hero-title   { animation: fadeUp 0.9s ease both; animation-delay: 0.28s; }
.hero-sub     { animation: fadeUp 0.9s ease both; animation-delay: 0.45s; }
.hero .btn    { animation: fadeUp 0.9s ease both; animation-delay: 0.62s; }

/* GALLERY PAGE */
.gallery-page-section { background: var(--cream); }
.gallery-page-filters { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn { padding: 0.5rem 1.4rem; border: 1px solid var(--border); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); background: transparent; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.filter-btn:hover, .filter-btn.active { border-color: var(--ink); color: var(--ink); }
.gallery-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.gallery-page-item { cursor: pointer; overflow: hidden; position: relative; aspect-ratio: 1; }
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-page-item:hover img { transform: scale(1.04); }
.gallery-page-tag { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(26,24,20,0.75); padding: 0.6rem 0.8rem; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); opacity: 0; transition: opacity 0.3s; }
.gallery-page-item:hover .gallery-page-tag { opacity: 1; }

/* LIGHTBOX */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(26,24,20,0.95); z-index: 1000; align-items: center; justify-content: center; }
.lightbox-overlay.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lightbox-inner img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox-caption { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: var(--cream); font-style: italic; text-align: center; }
.lightbox-close { position: absolute; top: -2.5rem; right: 0; background: none; border: none; color: var(--accent); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--accent); font-size: 2rem; cursor: pointer; padding: 1rem; z-index: 1001; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* MOBILE */
@media (max-width: 768px) {
  nav.site-nav { padding: 0 1.5rem; height: 56px; }
  .nav-links { display: none; }
  .hamburger-btn { display: flex; }
  .hero { min-height: unset; padding: 0; flex-direction: column; justify-content: flex-start; }
  .hero-bg { display: none; }
  .hero-img-wrap { position: relative; width: 100%; height: 75vw; min-height: 300px; max-height: 480px; top: auto; right: auto; order: 2; }
  .hero-img-wrap img { object-position: center 35% !important; }
  .hero-content { position: relative; max-width: 100%; padding: 5rem 1.5rem 2rem; z-index: 2; order: 1; background: var(--cream); }
  .hero-sub { max-width: 100%; }
  .site-section { padding: 3rem 1.5rem; }
  .press-section { padding-top: 3rem; padding-bottom: 3rem; }
  .gallery-grid { display: flex; flex-direction: column; gap: 1rem; }
  .gallery-item { width: 100%; }
  .gallery-item.tall { grid-row: unset; }
  .gallery-placeholder { min-height: 280px; padding: 0; }
  .gallery-item:nth-child(3) .gallery-placeholder { min-height: 420px; }
  .gallery-tag { opacity: 1; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; margin-bottom: 2rem; }
  .news-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .press-card { padding: 1.2rem 1rem; }
  .book-card { flex-direction: column; align-items: flex-start; gap: 1.2rem; padding: 1.5rem; }
  .book-cta { align-self: flex-start; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-portrait { aspect-ratio: 3/4; }
  .about-stats { gap: 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  footer.site-footer { padding: 1.5rem; flex-direction: column; gap: 0.8rem; text-align: center; }
  .footer-left { flex-direction: column; gap: 0.5rem; }
}
