:root {
  --cream: #faf7f4;
  --rose: #b8806a;
  --rose-light: #e8d5ca;
  --dark: #2d2526;
  --medium: #7a6868;
  --white: #ffffff;
  --max-width: 1100px;
}

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

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

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 128, 106, 0.18);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 1px;
}

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

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--medium);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--rose);
}

/* ── Hero (homepage) ── */
.hero {
  padding-top: 58px; /* clear the fixed nav */
  line-height: 0;
  background: var(--cream);
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0.88;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.hero-date {
  font-size: 0.95rem;
  letter-spacing: 2px;
  opacity: 0.85;
}

/* ── Home link cards ── */
.home-links {
  padding: 5rem 2rem;
  background: var(--white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--rose-light);
  text-decoration: none;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.link-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(184, 128, 106, 0.15);
}

.link-card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--rose);
}

.link-card h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.link-card p {
  font-size: 0.875rem;
  color: var(--medium);
}

/* ── Page header (inner pages) ── */
.page-header {
  padding: 8rem 2rem 3rem;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--rose-light);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1rem;
  color: var(--medium);
  max-width: 520px;
  margin: 0 auto;
  font-style: italic;
}

/* ── Charity cards ── */
.charity-section {
  padding: 4rem 2rem;
}

.charity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.charity-card {
  display: block;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--rose-light);
  text-decoration: none;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.charity-card:hover {
  border-color: var(--rose);
  box-shadow: 0 4px 20px rgba(184, 128, 106, 0.13);
  transform: translateY(-2px);
}

.charity-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.charity-card p {
  font-size: 0.875rem;
  color: var(--medium);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.donate-label {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
}

/* ── Location ── */
.location-section {
  padding: 4rem 2rem;
}

.map-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  border: 1px solid var(--rose-light);
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.location-address {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.location-address h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.location-address p {
  color: var(--medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--rose-light);
  background: var(--white);
  color: var(--medium);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── FAQ ── */
.faq-section {
  padding: 4rem 2rem;
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--rose-light);
  padding: 2rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--rose-light);
}

.faq-q {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.85rem;
  letter-spacing: 0.5px;
}

.faq-a p {
  font-size: 0.95rem;
  color: var(--medium);
  line-height: 1.8;
}

.faq-a a {
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid var(--rose-light);
  transition: color 0.2s, border-color 0.2s;
}

.faq-a a:hover {
  color: var(--dark);
  border-color: var(--dark);
}

/* ── Photos ── */
.photos-section {
  padding: 4rem 2rem;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.photo-item {
  overflow: hidden;
  border: 1px solid var(--rose-light);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.photo-item:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 20px rgba(184, 128, 106, 0.2);
}

.photo-item img {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2.25rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ── Contacts ── */
.contacts-section {
  padding: 4rem 2rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.contact-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--rose-light);
  text-align: center;
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--medium);
  min-width: 50px;
  text-align: right;
}

.contact-row a {
  color: var(--rose);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-row a:hover {
  color: var(--dark);
}

/* ── Mobile hamburger ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.3rem;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .nav-hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 247, 244, 0.98);
    flex-direction: column;
    padding: 0.75rem 1.5rem 1.25rem;
    gap: 0.85rem;
    border-bottom: 1px solid var(--rose-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding: 0.875rem 1.25rem;
  }

  .home-links {
    padding: 3rem 1.25rem;
  }

  .charity-section,
  .location-section,
  .photos-section,
  .contacts-section {
    padding: 3rem 1.25rem;
  }

  .map-container iframe {
    height: 320px;
  }
}
