:root {
  --terracotta: #C4622D; --gold: #C9963A; --sand: #F0E2C4;
  --cream: #FAF6EE; --forest: #1E3D2F; --forest-light: #2D5A42;
  --ink: #1A1A18; --mist: #7A8C7E; --white: #FFFFFF;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Josefin Sans', sans-serif; background: var(--ink); color: var(--ink); overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 3px; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 4rem; background: rgba(26,26,24,0.96); backdrop-filter: blur(8px); transition: padding 0.4s; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--white); letter-spacing: 0.04em; text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; background: var(--terracotta); color: var(--white); border: none; padding: 0.65rem 1.6rem; cursor: pointer; transition: background 0.25s; text-decoration: none; }
.nav-cta:hover { background: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; display: block; }

.page-hero { position: relative; height: 52vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; width: 100%; margin: 0 auto; padding: 3rem 4rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.breadcrumb a, .breadcrumb span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.page-hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: block; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; color: white; line-height: 1.1; }
.page-hero-title em { font-style: italic; color: var(--sand); }

/* FILTER */
.filter-bar { background: rgba(255,255,255,0.04); padding: 1.5rem 4rem; border-bottom: 1px solid rgba(255,255,255,0.06); position: sticky; top: 64px; z-index: 100; backdrop-filter: blur(8px); }
.filter-bar-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.filter-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.filter-btn { font-family: 'Josefin Sans', sans-serif; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.5rem 1.1rem; border: 1px solid rgba(255,255,255,0.15); background: transparent; cursor: pointer; transition: all 0.2s; color: rgba(255,255,255,0.6); }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--terracotta); border-color: var(--terracotta); color: white; }

/* GALLERY */
.gallery-section { padding: 3rem 4rem 5rem; }
.gallery-inner { max-width: 1400px; margin: 0 auto; }
.gallery-count { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 2rem; }
.gallery-grid { columns: 4; column-gap: 6px; }
.gallery-item { break-inside: avoid; margin-bottom: 6px; overflow: hidden; cursor: pointer; position: relative; display: block; }
.gallery-item.hidden { display: none; }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.5s ease, filter 0.3s ease; filter: brightness(0.92); }
.gallery-item:hover img { transform: scale(1.03); filter: brightness(1); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: flex-end; padding: 1rem; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.gallery-item-zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); opacity: 0; width: 44px; height: 44px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: white; transition: all 0.3s ease; backdrop-filter: blur(4px); }
.gallery-item:hover .gallery-item-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img-wrap { position: relative; max-width: 90vw; max-height: 88vh; display: flex; align-items: center; justify-content: center; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 80vh; object-fit: contain; box-shadow: 0 0 60px rgba(0,0,0,0.6); }
.lightbox-close { position: fixed; top: 1.5rem; right: 2rem; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 2rem; cursor: pointer; transition: color 0.2s; z-index: 10; }
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: white; width: 52px; height: 52px; cursor: pointer; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; z-index: 10; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--terracotta); border-color: var(--terracotta); }
.lightbox-caption { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; }
.lightbox-caption-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.3rem; }
.lightbox-caption-counter { font-size: 0.65rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); }

/* CTA */
.cta-section { background: var(--forest); padding: 5rem 4rem; text-align: center; }
.cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--sand); margin-bottom: 1rem; }
.cta-section p { font-size: 0.85rem; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.9; font-weight: 300; }
.btn-gold { font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 1rem 2.8rem; background: var(--gold); color: white; border: none; cursor: pointer; text-decoration: none; transition: background 0.25s, transform 0.2s; display: inline-block; margin: 0 0.5rem; }
.btn-gold:hover { background: var(--terracotta); transform: translateY(-2px); }
.btn-outline-light { font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; padding: 1rem 2.4rem; border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85); background: transparent; cursor: pointer; text-decoration: none; transition: all 0.25s; display: inline-block; margin: 0 0.5rem; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* FOOTER */
footer { background: var(--ink); padding: 5rem 4rem 2rem; color: rgba(255,255,255,0.6); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 2.75rem; align-items: start; margin-bottom: 4rem; }
.footer-brand .nav-logo { font-size: 1.9rem; display: inline-block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.8rem; line-height: 1.8; font-weight: 300; max-width: 280px; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-col ul a:hover { color: var(--sand); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.8rem; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.5); cursor: pointer; transition: border-color 0.2s, color 0.2s; text-decoration: none; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.footer-bottom .legal { display: flex; gap: 2rem; }
.footer-bottom .legal a { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom .legal a:hover { color: var(--sand); }

.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(26,26,24,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--sand); text-decoration: none; letter-spacing: 0.06em; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 2rem; right: 2rem; font-size: 1.5rem; color: rgba(255,255,255,0.5); cursor: pointer; background: none; border: none; }

@media (max-width: 1024px) {
  .gallery-grid { columns: 3; }
  .gallery-section { padding: 2.5rem 2rem 4rem; }
  nav { padding: 1.2rem 2rem; }
  .filter-bar { padding: 1.2rem 2rem; top: 56px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .page-hero-content { padding: 2rem 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { columns: 2; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
}