/* ================================================
   James X Wedding Photography — Shared CSS
   Light, airy, romantic, premium design
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Great+Vibes&family=Montserrat:wght@300;400;500&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --white: #ffffff;
  --off-white: #faf9f7;
  --cream: #f7f4ef;
  --blush: #f2ebe6;
  --gold: #c9a96e;
  --gold-dark: #a8854a;
  --gold-light: #e8d5b0;
  --rose: #d4a89a;
  --rose-light: #eadfd8;
  --charcoal: #2c2c2c;
  --gray: #888888;
  --light-gray: #e8e6e3;
  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }

/* ─── NAVIGATION ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
  padding: 14px 60px;
}

.header-logo {
  font-family: var(--font-script);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color 0.3s;
}

.site-header.scrolled .header-logo { color: var(--charcoal); }
.header-logo span { color: var(--rose); }

.site-nav { display: flex; align-items: center; gap: 40px; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  position: relative;
}

.site-header.scrolled .nav-links a { color: var(--charcoal); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-links a.active { color: var(--gold) !important; }
.nav-links a.active::after { width: 100%; }

.nav-phone {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}

.site-header.scrolled .nav-phone { color: var(--charcoal); }
.nav-phone:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s;
}

.site-header.scrolled .hamburger span { background: var(--charcoal); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 22px; right: 28px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
  padding: 8px;
}

/* ─── HERO (page-level, not homepage slideshow) ─── */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

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

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.page-hero-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.page-hero-title {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.page-hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  margin-top: 10px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

/* ─── SECTION STYLES ─── */
.section { padding: 90px 60px; }
.section--offwhite { background: var(--off-white); }
.section--cream { background: var(--cream); }
.section--blush { background: var(--blush); }
.section--dark { background: var(--charcoal); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.container { max-width: 1200px; margin: 0 auto; }
.container--narrow { max-width: 860px; margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 15px 40px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-gold {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 15px 38px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-gold:hover { background: var(--gold-dark); }

.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 15px 38px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ─── GALLERY GRID ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item-label {
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}

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

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  padding: 20px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

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

/* ─── PORTFOLIO FILTER ─── */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  background: none;
  border: 1px solid transparent;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--charcoal);
  border-color: var(--gold);
  background: var(--gold-light);
  background: none;
}

.filter-btn.active { color: var(--gold); border-color: var(--gold); }

/* ─── INTRO SECTION ─── */
.intro-text {
  background: var(--off-white);
  text-align: center;
  padding: 100px 60px;
}

.intro-text p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto;
}

/* ─── SPLIT SECTION ─── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 65vh;
}

.split-image {
  overflow: hidden;
}

.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-section:hover .split-image img { transform: scale(1.03); }

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--cream);
}

.split-content .section-label { text-align: left; }

.split-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.2;
}

.split-content h2 em {
  font-family: var(--font-script);
  font-size: 1.3em;
  font-style: normal;
  color: var(--rose);
}

.split-content p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ─── ABOUT GRID ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 50% 35%;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 1px solid var(--gold-light);
  z-index: -1;
}

.about-text .section-label { text-align: left; }

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.2;
}

.about-text h2 em {
  font-family: var(--font-script);
  font-size: 1.15em;
  font-style: normal;
  color: var(--rose);
}

.about-location {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 24px;
}

.about-text p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-equipment {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--light-gray);
}

.about-equipment p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

.about-equipment strong {
  color: var(--charcoal);
  font-weight: 400;
}

/* ─── STATS ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--light-gray);
}

.stat-item {
  background: var(--cream);
  padding: 40px 20px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ─── PACKAGES ─── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 48px 36px;
  text-align: center;
  transition: box-shadow 0.4s, transform 0.4s;
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.package-card.featured {
  border-color: var(--gold);
  background: var(--cream);
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px; right: -32px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
}

.package-name {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.package-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 4px;
}

.package-price span {
  font-size: 0.9rem;
  color: var(--gray);
}

.package-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.package-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-light);
  margin: 0 auto 28px;
}

.package-features {
  text-align: left;
  margin-bottom: 36px;
}

.package-features li {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--charcoal);
}

.contact-section .section-label { color: var(--gold-light); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-subtitle { color: rgba(255,255,255,0.45); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-item { margin-bottom: 36px; }

.contact-info-label {
  font-family: var(--font-sans);
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

.contact-info-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-value a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group select option { background: var(--charcoal); color: var(--white); }

.btn-submit {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  border: none;
  padding: 18px 48px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s;
}

.btn-submit:hover { background: var(--gold-dark); }

/* ─── TESTIMONIAL ─── */
.testimonials { background: var(--off-white); text-align: center; }

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  max-width: 780px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 36px 30px;
  border: 1px solid var(--light-gray);
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card cite {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #1a1a1a;
  padding: 56px 60px 40px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-logo span { color: var(--rose); }

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-social a {
  font-family: var(--font-sans);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--gold); }

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.1em;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ─── PAGE-SPECIFIC ─── */

/* CTA Banner */
.cta-banner {
  background: var(--cream);
  text-align: center;
  padding: 90px 60px;
}

.cta-banner h2 {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--charcoal);
  margin-bottom: 10px;
}

.cta-banner p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 32px;
}

/* Timeline */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--gold-light);
}

.timeline-item {
  margin-bottom: 44px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -45px;
  top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
}

.timeline-year {
  font-family: var(--font-sans);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.timeline-item p {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--light-gray);
  padding: 24px 0;
  cursor: pointer;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
}

.faq-question::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-top: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 12px;
}

/* IG feed preview */
.ig-preview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.ig-preview a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.ig-preview a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.ig-preview a:hover img { transform: scale(1.08); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; max-width: 780px; }
}

@media (max-width: 900px) {
  .site-header { padding: 18px 28px; }
  .site-header.scrolled { padding: 12px 28px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }

  .section { padding: 70px 28px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .split-section { grid-template-columns: 1fr; min-height: auto; }
  .split-image { height: 55vw; }
  .split-content { padding: 50px 28px; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-image-wrap::after { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 50px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .page-hero { height: 55vh; min-height: 380px; }

  .footer-tagline { font-size: 0.85rem; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .intro-text { padding: 70px 28px; }
  .cta-banner { padding: 70px 28px; }
  .site-footer { padding: 40px 28px 30px; }
  .footer-links { gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .ig-preview { grid-template-columns: repeat(3, 1fr); }
}

/* ===========================================
   BLOG STYLES
   =========================================== */

.page-header {
  background: linear-gradient(135deg, #faf9f6 0%, #f5f3ef 100%);
  padding: 80px 5% 60px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}

.page-header p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #666;
  font-weight: 300;
}

.blog-section {
  padding: 60px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #2c2c2c;
  margin: 10px 0 12px;
  line-height: 1.3;
}

.blog-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.blog-read-more:hover {
  color: #b8956b;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  padding: 80px 5%;
  text-align: center;
}

.newsletter-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.newsletter-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid #444;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #333;
}

.newsletter-form button {
  padding: 15px 30px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: #b8956b;
}

/* Responsive Blog */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

/* Hero title stacking */
.hero-title {
  text-align: center;
}
.hero-title-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.22em;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.5em;
  opacity: 0.85;
}
