/* ============================================
   CHANA MIREL PHOTOGRAPHY - V3 DESIGN SYSTEM
   A+C Hybrid: Editorial Grid + Gallery
   ============================================ */

/* Fonts: Playfair Display (display), Cormorant Garamond (body), Outfit (ui) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* ---- Color Variables (overridden per version) ---- */
:root {
  --accent: #58A6D8;
  --accent-hover: #3f8fc4;
  --accent-light: #F4B6C0;
  --accent-glow: rgba(88, 166, 216, 0.22);
  --accent-subtle: rgba(88, 166, 216, 0.06);
  --bg: #FFFFFF;
  --bg-warm: #FAF8F5;
  --text-primary: #1a1a1a;
  --text-body: #4a4a4a;
  --text-muted: #888;
  --border-light: rgba(0,0,0,0.04);
  --footer-bg: #2a2a2a; /* charcoal per Chana's feedback, not black */
  --footer-text: #b8b4b0;
  --stats-bg: #2a2a2a;
  --stats-number: var(--accent-light);
}

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.home-page {
  background:
    radial-gradient(circle at top left, rgba(88, 166, 216, 0.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fdfbf8 52%, #ffffff 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-light);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  font-weight: 400;
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 65ch;
}

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Editorial italic accent — pair with .label for Kutner-style magazine voice */
.label-script {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--text-body);
  letter-spacing: 0.01em;
}

/* ---- Layout ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.section {
  padding: clamp(40px, 4.5vw, 72px) 0;
}

.section-warm {
  padding: clamp(40px, 4.5vw, 72px) 0;
  background: var(--bg-warm);
}

.text-center {
  text-align: center;
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 30px var(--accent-subtle);
  border-bottom-color: transparent;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 76px;
}

.nav-logo { flex: 0 0 auto; }

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.7;
  color: var(--text-primary);
}

.nav-logo small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3a3a3a;
  position: relative;
  padding-bottom: 2px;
}

.nav-phone {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-body);
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--accent); }
.nav-phone::after { display: none; }

.nav-instagram {
  display: inline-flex;
  align-items: center;
  color: #3a3a3a;
  padding: 0 !important;
}
.nav-instagram svg { display: block; }
.nav-instagram:hover { color: var(--accent); }
.nav-instagram::after { display: none; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-light);
  transition: width 0.4s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  margin: 5px auto;
  transition: all 0.35s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #FFFFFF;
  box-shadow: 0 6px 24px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-text {
  background: none;
  color: var(--accent);
  padding: 0;
  letter-spacing: 0.18em;
  border-bottom: 1px solid rgba(139, 111, 94, 0.3);
  padding-bottom: 4px;
}

.btn-text:hover {
  border-bottom-color: var(--accent);
}

/* ---- Divider ---- */
.divider {
  width: 36px;
  height: 1px;
  background: var(--accent-light);
  margin: 24px 0;
  position: relative;
}
.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--accent-light);
  transform: translateY(-50%) rotate(45deg);
}
.divider::before { left: -8px; }
.divider::after { right: -8px; }

.divider-center {
  width: 36px;
  height: 1px;
  background: var(--accent-light);
  margin: 24px auto;
  position: relative;
}
.divider-center::before,
.divider-center::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--accent-light);
  transform: translateY(-50%) rotate(45deg);
}
.divider-center::before { left: -8px; }
.divider-center::after { right: -8px; }

/* ---- Hero: Asymmetric Grid (from C) ---- */
.hero {
  padding-top: 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.hero-grid .large {
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(42, 54, 75, 0.08);
  grid-row: span 2;
}

.hero-grid .small {
  overflow: hidden;
}

.hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.7s ease;
}

.hero-grid .large:hover img,
.hero-grid .small:hover img {
  transform: scale(1.03);
}

.hero-grid .large img {
  aspect-ratio: 4/5;
  height: 100%;
}

.hero-grid .small img {
  aspect-ratio: 4/3;
}

.hero-intro {
  max-width: 720px;
  margin: 56px auto;
  text-align: center;
  padding: 0 clamp(24px, 4vw, 60px);
}

.hero-intro .tagline {
  margin-bottom: 16px;
}

.hero-intro p {
  max-width: 560px;
  margin: 0 auto 28px;
}

.home-hero {
  padding-bottom: 18px;
}

/* 3-up hero (Chana's Apr 24 ask: 3 images side by side, heart in middle, white seams) */
.hero-grid-3up {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  grid-template-rows: auto;
  gap: 14px;
  max-width: 1180px;
  padding: 0 clamp(20px, 4vw, 60px);
  margin: 0 auto;
}
.hero-grid.hero-grid-3up .hero-cell { grid-row: auto; }
.hero-cell {
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(42, 54, 75, 0.07);
}
.hero-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  aspect-ratio: 4/5;
  transition: transform 0.7s ease;
}
.hero-cell-center img {
  aspect-ratio: 4/5.2;
}
.hero-cell:hover img { transform: scale(1.03); }
/* placeholder - rule moved to end of file to win cascade */

/* Chana 2026-04-28: single full-width hero for Maternity page */
.hero-single {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.hero-single img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  box-shadow: 0 26px 60px rgba(42, 54, 75, 0.08);
}
@media (max-width: 600px) {
  .hero-single img { aspect-ratio: 4/5; }
}

/* Chana 2026-04-28: horizontal variant for zigzag-image (e.g. Brown-8731) */
.zigzag-image.horizontal img,
.zigzag .zigzag-image.horizontal img {
  aspect-ratio: 4/3;
  object-position: center 35%;
}

/* Chana 2026-04-28: footer CALL ME button */
.footer-call-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  background: var(--accent, #58A6D8);
  color: #fff !important;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  transition: background 0.2s ease;
}
.footer-call-btn:hover { background: #c4a882; color: #fff !important; }
.footer-phone-line { margin-top: 8px; font-weight: 500; }

/* Chana 2026-04-28: gallery masonry collage (replaces even grid) */
.gallery-masonry {
  column-count: 3;
  column-gap: 12px;
  padding: 0 clamp(24px, 4vw, 60px);
  max-width: 1280px;
  margin: 0 auto;
}
.gallery-masonry img {
  width: 100%;
  display: block;
  margin: 0 0 12px;
  break-inside: avoid;
  box-shadow: 0 12px 28px rgba(42, 54, 75, 0.06);
}
@media (max-width: 900px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 480px) { .gallery-masonry { column-count: 1; } }

/* Chana 2026-04-28: Process / What to Expect 4-step section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.process-step {
  text-align: left;
}
.process-step .step-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--accent, #58A6D8);
  margin-bottom: 6px;
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.process-step p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.04rem;
  line-height: 1.55;
  color: var(--text-body, #4a4a4a);
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* Chana 2026-04-28: Haelleli (sitter) carousel */
.carousel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}
.carousel-track {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #faf8f5;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--accent, #58A6D8); }

.hero-panel {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 32px auto 0;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: end;
}

.hero-panel-copy {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(88, 166, 216, 0.1);
  box-shadow: 0 22px 48px rgba(42, 54, 75, 0.08);
  padding: clamp(28px, 5vw, 48px);
}

.hero-panel-copy h1 {
  max-width: 10ch;
  margin-bottom: 18px;
}

.hero-panel-copy p {
  max-width: 50ch;
  margin-bottom: 0;
}

.hero-panel-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-notes div {
  padding: 18px 20px;
  background: rgba(250, 248, 245, 0.92);
  border-top: 1px solid rgba(88, 166, 216, 0.18);
}

.hero-notes strong,
.editorial-trust-kicker,
.review-proof-chip strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-notes span,
.review-proof-chip span {
  display: block;
  margin-top: 8px;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.5;
}

.editorial-trust {
  max-width: 1160px;
  margin: 32px auto 0;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.editorial-trust-intro {
  padding-top: 10px;
}

.editorial-trust-intro h2 {
  margin-bottom: 0;
  max-width: 14ch;
}

.editorial-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(88, 166, 216, 0.12);
}

.editorial-trust-grid article {
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(24px, 4vw, 34px);
}

.editorial-trust-grid h3 {
  font-size: 1.1rem;
  margin: 12px 0 10px;
}

.editorial-trust-grid p {
  margin: 0;
  max-width: none;
  font-size: 0.98rem;
}

/* ---- Session Picker (from A, Kutner-inspired) ---- */
.session-picker {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 1000px;
  margin: 44px auto 0;
  padding: 0 clamp(24px, 4vw, 60px);
}

.picker-card {
  position: relative;
  overflow: hidden;
  display: block;
}

.picker-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.picker-card:hover img {
  transform: scale(1.04);
}

.picker-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  text-align: center;
}

.picker-card-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* ---- Gallery Grid (from C) ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.gallery-grid .img-wrap {
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.7s ease;
}

.gallery-grid .img-wrap:hover img {
  transform: scale(1.04);
}

/* ---- Testimonial ---- */
.testimonial-section {
  position: relative;
  overflow: hidden;
}

.testimonial-section::before { content: none; }

.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.testimonial blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.9;
  color: #3a3a3a;
  margin-bottom: 1.5rem;
}

.testimonial cite {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.review-proof {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.review-proof-main blockquote {
  margin-bottom: 20px;
}

.review-proof-main cite {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.review-proof-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.review-proof-chip {
  background: rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(88, 166, 216, 0.18);
  padding: 18px 20px;
}

/* ---- About Strip ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
}

.about-text {
  padding: clamp(30px, 5vw, 80px);
}

.about-text .label {
  margin-bottom: 14px;
}

.about-text h2 {
  margin-bottom: 18px;
}

.about-text p {
  margin-bottom: 20px;
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: clamp(40px, 6vw, 70px) clamp(24px, 4vw, 60px);
  background: var(--stats-bg);
}

.stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--stats-number);
  margin-bottom: 6px;
}

.stat p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  max-width: none;
}

/* ---- CTA Band ---- */
.cta-band {
  padding: clamp(50px, 7vw, 90px) 0;
  text-align: center;
  background: var(--bg-warm);
}

.cta-band h2 {
  margin-bottom: 12px;
}

.cta-band > .container > p {
  margin: 0 auto 32px;
}

.curated-services-section {
  padding-top: 28px;
}

.curated-services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.05fr) minmax(260px, 0.8fr);
  gap: 12px;
  align-items: stretch;
}

.curated-services-intro,
.curated-service-note {
  background: transparent;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.curated-services-intro h2 {
  max-width: 13ch;
}

.curated-services-intro .divider {
  margin: 22px 0;
}

.curated-services-intro p,
.curated-service-note p {
  font-size: 0.98rem;
}

.curated-service-note {
  background: transparent;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 100%;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .35s ease;
}

.service-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.02);
}

.service-card-featured img {
  aspect-ratio: 4 / 5;
}

.service-card-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.service-card-compact img {
  aspect-ratio: 1.45 / 1;
}

.service-card-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 18px 20px;
  background: linear-gradient(transparent, rgba(19, 18, 20, 0.55));
  text-align: center;
}

.service-card-label span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
}

.service-card-label small {
  display: block;
  margin-top: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

/* ---- Image Strip ---- */
.image-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.image-strip img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center 30%;
}

/* ---- Studio Strip ---- */
.studio-strip {
  position: relative;
  overflow: hidden;
}

.studio-strip img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 40%;
}

.studio-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30,30,30,0.45) 0%, rgba(30,30,30,0.2) 100%);
}

.studio-overlay h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* ---- Contact Form ---- */
.contact-section {
  padding: clamp(60px, 8vw, 120px) 0;
  background: var(--bg-warm);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  padding: 14px 18px;
  border: 1px solid #ddd;
  background: #FFFFFF;
  color: #2a2a2a;
  outline: none;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-full {
  margin-bottom: 20px;
}

/* ---- Footer ---- */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 70px 0 30px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.footer p, .footer a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--footer-text);
  line-height: 2;
}

.footer a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px clamp(24px, 4vw, 60px) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: #666;
  max-width: none;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.social-links a:hover {
  border-color: rgba(196, 168, 130, 0.3);
  background: rgba(196, 168, 130, 0.05);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: var(--footer-text);
  transition: fill 0.3s ease;
}

.social-links a:hover svg {
  fill: var(--accent-light);
}

/* ---- Scroll Reveal ---- */
/* v0: reveal defaults to fully visible. JS adds .visible to all on load. */
/* Safe for screenshots, crawlers, and JS-disabled users. */
.reveal, .reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
  }
  .hero-grid .large {
    grid-row: span 1;
    grid-column: 1 / -1;
  }
  .hero-grid .large img { aspect-ratio: 4/5; }

  .picker-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .picker-card img { aspect-ratio: 3/2; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    padding: clamp(24px, 4vw, 40px);
  }

  .image-strip {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Chana 2026-04-28: drop hamburger on mobile. Nav wraps horizontally and stays visible. */
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
    padding: 8px 12px 12px;
    width: 100%;
  }
  .nav-links li { line-height: 1.1; }
  .nav-links li a { font-size: 0.66rem; letter-spacing: 0.18em; }
  .nav-links li a.nav-phone { font-size: 0.7rem; letter-spacing: 0.04em; }
  .nav-links li a.btn { padding: 8px 18px !important; font-size: 0.6rem !important; }
  .nav-inner { flex-wrap: wrap; padding-bottom: 6px; }
}

@media (max-width: 480px) {
  .hero-grid .large img { aspect-ratio: 4/5; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   COMPONENTS — added for production build
   ============================================ */

/* ---- Nav logo (was per-page before, now centralized) ---- */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* ---- Nav links: prevent "Cake Smash" from wrapping ---- */
.nav-links a { white-space: nowrap; }

/* ---- What to Expect: 3-card grid ---- */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 44px auto 0;
  padding: 0 clamp(24px, 4vw, 60px);
  background: transparent;
}
.expect-card {
  padding: clamp(20px, 3vw, 36px) clamp(20px, 3vw, 32px);
  border-right: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}
.expect-card:last-child { border-right: none; }
.expect-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1;
}
.expect-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.expect-card p {
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) {
  .expect-grid { grid-template-columns: 1fr; }
  .expect-card { border-right: none; border-bottom: 1px solid var(--border-light); }
  .expect-card:last-child { border-bottom: none; }
}

/* ---- Count-up stats widget ---- */
.stats-countup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 60px);
  background: var(--bg);
  position: relative;
}
.stats-countup::before,
.stats-countup::after {
  content: '';
  position: absolute;
  left: clamp(24px, 4vw, 60px);
  right: clamp(24px, 4vw, 60px);
  height: 1px;
  background: var(--accent-light);
  opacity: 0.45;
}
.stats-countup::before { top: 0; }
.stats-countup::after { bottom: 0; }
.stats-countup > div {
  position: relative;
  padding: 8px 0;
}
.stats-countup > div + div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: rgba(0,0,0,0.06);
}
.stats-countup .stat-num-wrap {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.015em;
  line-height: 1;
}
.stats-countup .stat-plus {
  color: var(--accent);
  font-style: normal;
  font-weight: 300;
  margin-left: 2px;
}
.stats-countup .stat-label {
  margin-top: 0.85rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-style: italic;
  color: var(--text-body);
  font-weight: 400;
  text-transform: none;
}
@media (max-width: 768px) {
  .stats-countup { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; padding: 56px 20px; }
}

/* ---- Zigzag picture-text sections (revived per Chana's feedback) ---- */
.zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 4.5vw, 60px) clamp(24px, 4vw, 60px);
}
.zigzag.reversed { direction: rtl; }
.zigzag.reversed > * { direction: ltr; }
.zigzag-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.zigzag-text .label { margin-bottom: 12px; }
.zigzag-text h2 {
  margin-bottom: 18px;
  max-width: 11ch;
}
.zigzag-text p { margin-bottom: 20px; }
@media (max-width: 768px) {
  .zigzag, .zigzag.reversed { grid-template-columns: 1fr; direction: ltr; gap: 24px; padding: 48px 20px; }
  .zigzag.reversed .zigzag-image { order: 0; }
  .zigzag-image img { aspect-ratio: 3/4; }
}

/* ---- Blog teaser (home) + blog card grid ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 clamp(24px, 4vw, 60px);
}
.blog-card { display: block; text-decoration: none; color: inherit; }
.blog-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center 25%;
  margin-bottom: 16px;
  transition: opacity .3s ease;
}
.blog-card:hover img { opacity: 0.88; }
.blog-card .label { font-size: 0.62rem; margin-bottom: 8px; }
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.blog-card p {
  color: var(--text-body);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

/* ---- Intro paragraph block (Chana's explicit ask: before services) ---- */
.intro-block {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 4vw, 60px);
  text-align: center;
}
.intro-block .label { margin-bottom: 16px; }
.intro-block h2 { margin-bottom: 24px; }
.intro-block .divider-center { margin: 0 auto 28px; }
.intro-block p { font-size: 1.05rem; line-height: 1.7; color: var(--text-body); }

/* ---- Nav mobile menu (ensure it works well on phone) ---- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    gap: 14px;
    transform: translateY(-120%);
    transition: transform .35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  }
  .nav-links.active { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 8px 0; font-size: 0.95rem; }
  .nav-toggle { display: flex; }

}

/* ---- Tighter services grid per Chana's feedback ("too much white space") ---- */
.section + .section,
.section + .section-warm,
.section-warm + .section { padding-top: clamp(64px, 8vw, 96px); }

@media (max-width: 1100px) {
  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .hero-panel-copy {
    box-shadow: none;
    border: 1px solid rgba(88, 166, 216, 0.12);
  }

  .hero-panel-copy h1,
  .editorial-trust-intro h2,
  .curated-services-intro h2 {
    max-width: none;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .editorial-trust,
  .review-proof,
  .curated-services {
    grid-template-columns: 1fr;
  }

  .editorial-trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-stack {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
  }
}

@media (max-width: 900px) {
  .home-hero {
    padding-bottom: 0;
  }

  .hero-panel {
    margin-top: 0;
  }

  .hero-panel-copy,
  .curated-services-intro,
  .curated-service-note {
    padding: 24px;
  }

  .editorial-trust {
    margin-top: 24px;
  }

  .editorial-trust-grid,
  .service-card-stack {
    grid-template-columns: 1fr;
  }

  .service-card-featured img,
  .service-card-compact img {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 768px) {
  .hero-panel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-panel-actions .btn {
    width: 100%;
    text-align: center;
  }

  .editorial-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Reduced motion safety net ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---- Mobile hero overrides (keep side-by-side, declared last to win cascade) ---- */
@media (max-width: 900px) {
  .hero-grid.hero-grid-3up {
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 6px;
    padding: 0 12px;
    max-width: none;
  }
  .hero-grid.hero-grid-3up .hero-cell img,
  .hero-grid.hero-grid-3up .hero-cell-center img { aspect-ratio: 3/4; }

  /* Inner-page hero: large image on top, 2 small side-by-side below */
  .hero-grid:not(.hero-grid-3up) {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
    padding: 0 12px;
  }
  .hero-grid:not(.hero-grid-3up) .large {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .hero-grid:not(.hero-grid-3up) .large img { aspect-ratio: 4/5; }
  .hero-grid:not(.hero-grid-3up) .small img { aspect-ratio: 1/1; }
}

/* ===== Google reviews module (homepage) ===== */
.greviews { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.greviews-head { text-align: center; margin-bottom: 40px; }
.greviews-score {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 14px 0 10px;
}
.greviews-rating {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  color: var(--text-primary); font-style: italic;
}
.greviews-stars { display: inline-flex; gap: 2px; }
.greviews-stars svg { width: 20px; height: 20px; fill: #FABB05; }
.greviews-head h2 { margin-top: 4px; }
.greviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.greviews-card {
  background: var(--bg); border: 1px solid rgba(0,0,0,0.07);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px;
  text-align: left;
}
.greviews-card-stars { color: #FABB05; font-size: 0.85rem; letter-spacing: 3px; }
.greviews-card blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.06rem;
  line-height: 1.55; color: var(--text-body); margin: 0; flex: 1;
}
.greviews-card footer { display: flex; flex-direction: column; gap: 2px; }
.greviews-card footer strong {
  font-size: 0.82rem; letter-spacing: 0.04em; color: var(--text-primary);
}
.greviews-card footer span {
  font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.08em;
  text-transform: uppercase;
}
.greviews-actions {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-top: 36px;
}
@media (max-width: 860px) {
  .greviews-grid { grid-template-columns: 1fr; }
  .greviews-card blockquote { font-size: 1.12rem; }
}
