@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --text: #e8e8e8;
  --text-muted: #999;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* NAV */
nav {
  position: fixed;
  top: 0; width: 100%;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  z-index: 1000;
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* HERO */
.hero {
  min-height: 100vh;
  background: url('photos/hero-bg.jpg') center top / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
}
.hero-content { position: relative; max-width: 700px; }
.hero-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
  margin: 0.5rem;
}
.btn:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-solid {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
}
.btn-solid:hover { background: var(--gold-light); }

/* SECTIONS */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin-bottom: 0.5rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

/* SERVICES */
.services-section { background: var(--dark-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(201,169,110,0.5);
  transform: translateY(-4px);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.donation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.donation-row:last-child { border-bottom: none; }
.donation-row .duration { color: var(--text-muted); }
.donation-row .donation { color: var(--gold); font-weight: 700; }
.service-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* SCREENING */
.screening-section { background: var(--dark); }
.screening-box {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(201,169,110,0.2);
  padding: 3rem;
  text-align: center;
}
.screening-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.screening-options {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.screening-options li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--dark-2);
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
}
.screening-options li span { color: var(--gold); font-weight: 700; min-width: 20px; }

/* PHOTOS PAGE */
.photos-intro {
  background: var(--dark-2);
  padding: 4rem 2rem;
  text-align: center;
}
/* MASONRY GALLERY */
.photos-placeholder {
  columns: 4 220px;
  column-gap: 0.75rem;
  margin-top: 3rem;
}
.photos-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(201,169,110,0.1);
  transition: transform 0.3s, border-color 0.3s, opacity 0.3s;
  cursor: zoom-in;
  break-inside: avoid;
}
.photos-placeholder img:hover {
  transform: scale(1.02);
  border-color: rgba(201,169,110,0.5);
  opacity: 0.9;
}

/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(201,169,110,0.3);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
#lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
  transition: color 0.2s;
}
#lightbox-close:hover { color: #fff; }
#lightbox-prev, #lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 1.5rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  z-index: 10000;
  transition: background 0.2s;
  user-select: none;
}
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(201,169,110,0.2); }
#lightbox-prev { left: 1rem; }
#lightbox-next { right: 1rem; }

/* REVIEWS */
.reviews-section { background: var(--dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.review-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 2rem;
}
.review-card p {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.review-author {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.review-source {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* CONTACT */
.contact-section { background: var(--dark-2); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-item {
  text-align: center;
  padding: 2rem;
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.1);
  transition: border-color 0.3s;
}
.contact-item:hover { border-color: rgba(201,169,110,0.4); }
.contact-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-item h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-item a, .contact-item p {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--gold); }

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 2rem;
  text-align: center;
}
footer p { color: var(--text-muted); font-size: 0.8rem; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.75rem; }
  section { padding: 4rem 1.5rem; }
  .screening-box { padding: 2rem 1.5rem; }
}
