/* =============================================
   SEDMAN BAR MITZVAH PHOTOGRAPHY
   Aesthetic: Refined luxury editorial — warm cream,
   deep charcoal, gold accents, Cormorant Garamond
   ============================================= */

:root {
  --cream: #f8f4ee;
  --cream-dark: #ede7db;
  --charcoal: #1c1916;
  --charcoal-mid: #2e2a26;
  --charcoal-light: #4a453f;
  --gold: #b8923a;
  --gold-light: #d4ab5a;
  --gold-pale: #f0e0b8;
  --text: #2e2a26;
  --text-light: #6b6259;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --max-w: 1280px;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

.btn-ghost-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-ghost-gold:hover { background: var(--gold-light); color: var(--charcoal); }

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

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

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover { background: var(--gold); border-color: var(--gold); }

.btn-large { padding: 1.1rem 3rem; font-size: 0.8rem; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(28, 25, 22, 0.97);
  backdrop-filter: blur(8px);
  padding: 0.9rem 3rem;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-direction: column;
}

.logo-s {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

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

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  letter-spacing: 0.12em;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--charcoal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background-image: url("public/images/hero.jpg");
  background-size: cover;
  background-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 12, 8, 0.75) 0%,
    rgba(15, 12, 8, 0.4) 60%,
    rgba(15, 12, 8, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: 8rem;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 16ch;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 46ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s ease forwards;
}

.hero-scroll {
  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.5);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ---- STATS ---- */
.stats {
  background: var(--charcoal);
  padding: 3.5rem 3rem;
}

.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-num sup {
  font-size: 0.5em;
  vertical-align: super;
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* ---- ABOUT ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--max-w);
  margin: 6rem auto;
  padding: 0 3rem;
  align-items: center;
  gap: 5rem;
}

.about-img-box {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--charcoal-light) 100%);
  /* Replace with: background-image: url('/images/stephen.jpg'); background-size: cover; */
}

.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-credentials {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.cred-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---- GALLERY PREVIEW ---- */
.gallery-preview {
  background: var(--charcoal-mid);
  padding: 6rem 3rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header .section-title { color: var(--white); }
.gallery-header .section-eyebrow { color: var(--gold-light); }

.gallery-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 8px;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-cell.tall { grid-row: span 2; }
.gallery-cell.wide { grid-column: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a3028 0%, #5a4a38 50%, #2a2018 100%);
  transition: transform 0.6s ease;
  /* Replace with actual photo background images */
}

.gallery-cell:hover .gallery-placeholder { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-cell:hover .gallery-caption { opacity: 1; transform: translateY(0); }

.gallery-footer {
  text-align: center;
  margin-top: 2.5rem;
}
.gallery-footer .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.5); }
.gallery-footer .btn-outline:hover { background: var(--white); color: var(--charcoal); }

/* ---- COVERAGE ---- */
.coverage {
  padding: 6rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.coverage-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
}

.coverage-item { position: relative; }

.coverage-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.coverage-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.coverage-item p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--cream-dark);
  padding: 6rem 3rem;
}

.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.testimonial {
  background: var(--white);
  padding: 2.25rem;
  border-top: 2px solid var(--gold);
}

.testimonial.featured {
  grid-row: span 2;
  background: var(--charcoal);
  border-top: 2px solid var(--gold);
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.testimonial.featured p { color: var(--cream); font-size: 1.3rem; }

.testimonial footer {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
}

/* ---- PACKAGES TEASER ---- */
.packages-teaser {
  padding: 6rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.packages-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.packages-intro p {
  max-width: 55ch;
  margin: 0 auto;
  color: var(--text-light);
  line-height: 1.7;
}

.packages-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.package-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--cream-dark);
  position: relative;
  transition: var(--transition);
}

.package-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.package-card.featured {
  background: var(--charcoal);
  border-color: var(--gold);
  transform: scale(1.03);
}

.package-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pkg-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.pkg-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.package-card.featured .pkg-label { color: var(--white); }

.pkg-hours {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.pkg-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pkg-features li {
  font-size: 0.875rem;
  color: var(--text-light);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.package-card.featured .pkg-features li { color: rgba(255,255,255,0.7); }

.pkg-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ---- JEWISH WEDDINGS CTA ---- */
.jewish-weddings-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a2a18 100%);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jewish-weddings-cta::before {
  content: '✡';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18rem;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
}

.jw-content {
  position: relative;
  z-index: 1;
  max-width: 55ch;
  margin: 0 auto;
}

.jw-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.jw-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ---- PROCESS ---- */
.process {
  padding: 6rem 3rem;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.process-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}

.process-line {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: var(--gold-pale);
  margin-top: 26px; /* aligns with center of circle */
  align-self: flex-start;
}

/* ---- FINAL CTA ---- */
.final-cta {
  background: var(--charcoal);
  padding: 7rem 3rem;
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  max-width: 22ch;
  margin: 0 auto 1rem;
  line-height: 1.3;
}

.final-cta h2 em { font-style: italic; color: var(--gold-light); }

.final-cta p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.final-contact-info {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.final-contact-info a { color: var(--gold-light); }
.final-contact-info a:hover { color: var(--white); }

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal-mid);
  color: rgba(255,255,255,0.6);
  padding: 4rem 3rem 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-s { font-size: 2.5rem; }
.footer-brand .logo-text { font-size: 1.1rem; }

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact p { font-size: 0.875rem; margin-bottom: 0.5rem; }
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.75rem;
  transition: var(--transition);
}

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

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  justify-content: center;
}

.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-box { max-width: 480px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial.featured { grid-column: span 2; grid-row: span 1; }
  .packages-cards { gap: 1rem; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-4px); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 75vw; background: var(--charcoal); padding: 5rem 2rem 2rem; gap: 1.5rem; align-items: flex-start; transform: translateX(100%); transition: transform 0.35s ease; }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 1.5rem; padding-top: 8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about { padding: 0 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-cell.tall { grid-row: span 1; }
  .gallery-cell.wide { grid-column: span 2; }
  .coverage { padding: 4rem 1.5rem; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { padding: 4rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.featured { grid-column: span 1; }
  .packages-teaser { padding: 4rem 1.5rem; }
  .packages-cards { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-line { width: 1px; height: 40px; margin: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .gallery-preview { padding: 4rem 1.5rem; }
  .jewish-weddings-cta { padding: 4rem 1.5rem; }
}
