:root {
  --cream: #f4ede0;
  --warm-white: #faf7f2;
  --dark-brown: #2a1a0e;
  --medium-brown: #5c3d1e;
  --gold: #9a7b2e;
  --gold-light: #c9a84c;
  --stone: #8a7a68;
  --stone-light: #d6cdbf;
  --text: #2a1a0e;
  --text-light: #6b5744;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
  background: var(--warm-white);
  color: var(--text);
  font-size: 19px;
  line-height: 1.75;
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 0 2rem;
  background: rgba(20, 10, 4, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  height: 62px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold-light); font-size: 1.25rem; font-weight: 500;
  letter-spacing: 0.06em; text-decoration: none;
}
.nav-logo span {
  color: rgba(255,255,255,0.45);
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem; letter-spacing: 0.16em;
  margin-left: 0.6em; font-weight: 300;
}
nav ul { list-style: none; display: flex; gap: 1.4rem; }
nav ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.73rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul li a:hover { color: var(--gold-light); }
nav ul li a[aria-current="page"] { color: var(--gold-light); }

/* HERO */
#hero {
  height: 100vh; min-height: 580px;
  position: relative; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('Images%20Videos/hero.webp');
  background-size: cover; background-position: center center;
  transform: scale(1.04);
  transition: transform 10s ease;
}
#hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,8,3,0.78) 0%, rgba(15,8,3,0.42) 55%, rgba(15,8,3,0.68) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: white;
  padding: 2rem; max-width: 820px;
}
.hero-eyebrow {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 1.2rem;
}
#hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.hero-subtitle {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.22rem; color: rgba(255,255,255,0.82);
  font-style: italic; margin-bottom: 2.5rem;
}
.hero-meta {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  animation: scrollbounce 2.5s infinite;
}
.scroll-hint::after {
  content: ''; display: block;
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes scrollbounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* SECTIONS */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 400; line-height: 1.2;
  color: var(--dark-brown); margin-bottom: 1.2rem;
}
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem; font-weight: 400;
  color: var(--medium-brown);
  margin-bottom: 0.9rem; margin-top: 2.8rem;
}
h3:first-child { margin-top: 0; }
p { margin-bottom: 1.15rem; }
.lead {
  font-size: 1.13rem; color: var(--text-light); font-style: italic;
}
.divider {
  width: 56px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.3rem 0 2.4rem;
}

/* ABOUT */
#about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%; height: 510px;
  object-fit: cover; display: block;
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.about-image img:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.22); }
.about-image::before {
  content: '';
  position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(201,168,76,0.45);
  pointer-events: none;
}

/* HISTORY */
#history { background: var(--warm-white); }
.family-tree {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem; margin: 2.5rem 0;
}
.family-tree h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08rem; font-weight: 500;
  color: var(--dark-brown); margin-bottom: 1.3rem;
}
.family-member {
  display: flex; align-items: flex-start; gap: 1.1rem;
  margin-bottom: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--stone-light);
}
.family-member:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.member-years {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem; color: var(--gold);
  white-space: nowrap; padding-top: 0.2rem;
  min-width: 88px; letter-spacing: 0.04em;
}
.member-info strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem; font-weight: 500;
  color: var(--medium-brown); display: block;
  margin-bottom: 0.1rem;
}
.member-info p {
  font-size: 0.9rem; margin-bottom: 0; color: var(--text-light);
}

/* MAYOR TABLE */
.mayor-table {
  width: 100%; border-collapse: collapse;
  margin: 2rem 0;
}
.mayor-table th {
  background: var(--dark-brown); color: var(--gold-light);
  padding: 0.8rem 1.2rem; text-align: left;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 400;
}
.mayor-table td {
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid var(--stone-light);
  font-size: 1rem;
}
.mayor-table tr:nth-child(even) td { background: var(--cream); }
.mayor-table td:first-child {
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem; font-weight: 500;
}

/* PERSECUTION BLOCK */
.persecution-block {
  background: #120c06; color: #d4c5a9;
  padding: 3rem 3.5rem; margin: 3rem 0;
  position: relative;
}
.persecution-block::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px; background: #8b1a1a;
}
.persecution-block h3 { color: #c9a070; margin-top: 0; }
.persecution-block p { color: #c4b49a; }
.persecution-list { list-style: none; margin: 1.5rem 0; }
.persecution-list li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.98rem; position: relative; color: #c4b49a;
}
.persecution-list li::before {
  content: '—'; position: absolute; left: 0; color: #8b1a1a;
}
.persecution-list li strong { color: #ddd0ba; }

/* RESTORATION TIMELINE */
#restoration { background: var(--cream); }
.timeline { position: relative; padding-left: 3rem; }
.timeline::before {
  content: ''; position: absolute;
  left: 0.8rem; top: 0.4rem; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-light), rgba(154,123,46,0.1));
}
.timeline-entry { position: relative; margin-bottom: 5rem; }
.timeline-dot {
  position: absolute; left: -2.3rem; top: 0.5rem;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--cream);
  box-shadow: 0 0 0 3px var(--gold-light);
}
.timeline-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem; font-weight: 400; color: var(--gold);
  line-height: 1;
}
.timeline-period {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--stone);
  margin: 0.3rem 0 1rem;
}
.timeline-text { margin-bottom: 1.5rem; font-size: 1.02rem; }
.timeline-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.6rem;
}
.timeline-photos img {
  width: 100%; height: 175px;
  object-fit: cover; cursor: pointer; display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-photos img:hover {
  transform: scale(1.025);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

/* GALLERY */
#gallery { background: var(--dark-brown); padding: 6rem 2rem; }
#gallery .section-label { color: rgba(201,168,76,0.8); }
#gallery h2 { color: var(--gold-light); }
#gallery .lead { color: rgba(255,255,255,0.55); }
#gallery .divider { background: linear-gradient(to right, var(--gold-light), transparent); }
.gallery-tabs {
  display: flex; gap: 0.6rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.gallery-tab {
  background: none;
  border: 1px solid rgba(201,168,76,0.35);
  color: rgba(255,255,255,0.55);
  padding: 0.35rem 1.1rem; cursor: pointer;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--dark-brown);
}
.gallery-grid {
  columns: 4 200px; column-gap: 0.5rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 0.5rem;
  overflow: hidden; cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item.hidden { display: none; }

/* BOOK */
#book {
  background: var(--dark-brown);
  text-align: center;
}
#book .section-label { color: rgba(201,168,76,0.7); }
#book h2 { color: var(--gold-light); }
#book .lead { color: rgba(255,255,255,0.55); max-width: 540px; margin: 0 auto 2.5rem; }
#book .divider { margin: 1.3rem auto 2rem; background: linear-gradient(to right, transparent, var(--gold), transparent); width: 80px; }
.book-buttons {
  display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap;
  margin-top: 0.5rem;
}
.book-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2.2rem;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.book-btn-airbnb {
  background: #FF5A5F; color: #fff;
  border-color: #FF5A5F;
}
.book-btn-airbnb:hover {
  background: transparent; color: #FF5A5F;
}
.book-btn-booking {
  background: #003580; color: #fff;
  border-color: #003580;
}
.book-btn-booking:hover {
  background: transparent; color: #6fa8e8; border-color: #6fa8e8;
}
.book-btn svg {
  width: 18px; height: 18px; flex-shrink: 0; fill: currentColor;
}
.book-note {
  margin-top: 2rem;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.7rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}

/* INQUIRY FORM */
.book-divider {
  display: flex; align-items: center; gap: 1.2rem;
  margin: 3rem auto 2.5rem; max-width: 560px;
}
.book-divider::before, .book-divider::after {
  content: ''; flex: 1;
  height: 1px; background: rgba(201,168,76,0.2);
}
.book-divider span {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.inquiry-form {
  max-width: 660px; margin: 0 auto; text-align: left;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  color: #fff; padding: 0.7rem 0.9rem;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,168,76,0.7); }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.6); cursor: pointer; }
.form-group select option { background: #2a1a0e; color: #fff; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-full { margin-bottom: 1rem; }
.form-submit {
  width: 100%; margin-top: 0.5rem;
  background: var(--gold); color: var(--dark-brown);
  border: none; padding: 1rem 2rem;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.8rem; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.form-submit:hover { background: var(--gold-light); }
.form-submit:disabled { opacity: 0.5; cursor: default; }
.form-status {
  margin-top: 1rem; text-align: center;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.8rem; letter-spacing: 0.1em;
  min-height: 1.4rem;
}
.form-status.success { color: #7ec87e; }
.form-status.error { color: #e07070; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* LIGHTBOX */
#lightbox {
  display: none; position: fixed; inset: 0;
  z-index: 9999; background: rgba(0,0,0,0.96);
  align-items: center; justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.7);
}
.lb-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  color: white; font-size: 2.2rem; cursor: pointer;
  opacity: 0.6; background: none; border: none;
  font-family: Arial, sans-serif; line-height: 1;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; font-size: 2.8rem; cursor: pointer;
  opacity: 0.4; background: none; border: none;
  font-family: Arial, sans-serif; padding: 1rem;
  line-height: 1; transition: opacity 0.2s;
}
.lb-prev { left: 0.5rem; }
.lb-next { right: 0.5rem; }
.lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-caption {
  position: absolute; bottom: 1.2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; white-space: nowrap;
}

/* FOOTER */
footer {
  background: #0d0804; color: rgba(255,255,255,0.65);
  padding: 3.5rem 2rem; text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem; color: var(--gold-light);
  margin-bottom: 0.8rem; letter-spacing: 0.04em;
}
footer p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.76rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6); margin-bottom: 0.4rem;
}
footer em { color: rgba(201,168,76,0.75); font-style: italic; }
.heritage-badge {
  display: inline-block; margin-top: 1.8rem;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.45rem 1.5rem;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(201,168,76,0.55);
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 1.8rem;
}
.cta-button:hover {
  background: var(--gold);
  color: var(--dark-brown);
  border-color: var(--gold);
}

/* FAMILY PORTRAITS */
.family-portrait {
  width: 110px; height: 140px;
  object-fit: cover; border-radius: 4px;
  border: 2px solid var(--gold-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.izedin-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}
.izedin-photos figure { margin: 0; }
.izedin-photos img {
  width: 100%; height: 200px;
  object-fit: cover; cursor: pointer;
  border-radius: 3px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.izedin-photos img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.izedin-photos figcaption {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem; color: var(--text-light);
  letter-spacing: 0.06em; margin-top: 0.45rem;
  font-style: italic;
}

/* NEVIN BLOCK */
.nevin-block {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 2.5rem 3rem;
  margin-top: 3rem;
  border-radius: 0 4px 4px 0;
}
.nevin-block h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; color: var(--medium-brown);
  margin-bottom: 0.8rem;
}
.nevin-block p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
}

/* HERITAGE PHOTOS */
.heritage-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 1.8rem 0 0;
}
.heritage-photos figure { margin: 0; }
.heritage-photos img {
  width: 100%; height: 220px;
  object-fit: cover; cursor: pointer;
  border-radius: 3px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.heritage-photos img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.heritage-photos figcaption {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem; color: var(--text-light);
  letter-spacing: 0.06em; margin-top: 0.45rem;
  font-style: italic;
}

/* VISION SECTION */
.vision-section {
  background: var(--dark-brown);
  color: rgba(255,255,255,0.85);
}
.vision-section .section-label { color: var(--gold); }
.vision-section h2 { color: var(--gold-light); }
.vision-section .divider { background: linear-gradient(90deg, var(--gold-light), transparent); }
.vision-section .lead { color: rgba(255,255,255,0.65); }
.vision-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 3.5rem 0 3rem;
}
.vision-feature h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.vision-feature ul {
  list-style: none; padding: 0; margin: 0;
}
.vision-feature ul li {
  padding: 0.45rem 0 0.45rem 1.3rem;
  position: relative;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}
.vision-feature ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
}
.vision-cta {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  margin-top: 1rem;
}
.vision-cta p {
  color: rgba(255,255,255,0.45);
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

/* VISION SPECS */
.vision-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.spec-item { text-align: center; }
.spec-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem; font-weight: 400;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.spec-unit {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.spec-label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
}

/* PAGE HERO (sub-pages) */
.page-hero {
  padding: 10rem 2rem 5rem;
  background: var(--dark-brown);
  text-align: center;
  position: relative;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400; line-height: 1.2;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.page-hero .hero-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* HAMBURGER MENU */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem; flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gold-light);
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* INQUIRY TYPE */
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* FADE-IN */
.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(20,10,4,0.98);
    flex-direction: column;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  nav ul.nav-open { display: flex; }
  nav ul li { width: 100%; }
  nav ul li a {
    display: block;
    padding: 0.9rem 2rem;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image::before { display: none; }
  .gallery-grid { columns: 2 150px; }
  .timeline-photos { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 1.25rem; }
  .persecution-block { padding: 2rem 1.5rem; }
  .nevin-block { padding: 1.8rem 1.5rem; }
  .vision-features { grid-template-columns: 1fr; gap: 2rem; }
  .vision-specs { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .heritage-photos { grid-template-columns: 1fr; }
  .heritage-photos img { height: 260px; }
  .izedin-photos { grid-template-columns: 1fr; }
  .izedin-photos img { height: 260px; }
  .family-portrait { width: 80px; height: 100px; }
  .form-row-3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 2 110px; }
  .vision-specs { grid-template-columns: 1fr 1fr; }
}
