/* ============================================================
   ERIC GOLDSTEIN PHOTOGRAPHY — Main Stylesheet
   ============================================================ */

:root {
  --black: #111111;
  --white: #ffffff;
  --off-white: #f9f8f6;
  --light-gray: #f2f0ee;
  --mid-gray: #888888;
  --gold: #c9a96e;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --nav-height: 80px;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nav-logo img {
  height: 92px;
  width: auto;
  transition: height 0.3s ease;
}
.nav.scrolled .nav-logo img { height: 72px; }

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }
/* Invisible hover bridge so the cursor can travel from the "Work" link
   down to the dropdown without leaving the .has-dropdown hover area. */
.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 22px;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-width: 180px;
  padding: 8px 0;
  list-style: none;
  z-index: 100;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dropdown li a:hover { background: var(--off-white); color: var(--gold); }

/* Social icons in nav */
.nav-social { display: flex; gap: 16px; align-items: center; }
.nav-social a { font-size: 17px; color: var(--black); transition: color 0.2s; }
.nav-social a:hover { color: var(--gold); }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.65) 100%);
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 800px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-nav {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}

.hero-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: #333; }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--off-white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #b8925a; }

/* ============================================================
   SECTION BASICS
   ============================================================ */
section { padding: 100px 32px; }

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

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 560px;
  line-height: 1.8;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}

/* 2x2 layout — wider/shorter cards, text overlays the image */
.services-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.services-grid-2x2 .service-card { aspect-ratio: 3/2; }
.services-grid-2x2 .service-card-img { aspect-ratio: 3/2; height: 100%; }
/* Subtle dark fade only at the very bottom so the photo stays visible top-to-bottom
   and the text sits on a soft shadow rather than a big gray strip */
.services-grid-2x2 .service-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 18%, transparent 32%);
}
.services-grid-2x2 .service-card-body {
  padding: 24px 32px 28px;
}
.services-grid-2x2 .service-card-body h3 {
  font-size: 2.1rem;
  margin-bottom: 4px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
/* Description hidden until hover — title is always visible on the image */
.services-grid-2x2 .service-card-body p {
  font-size: 15.5px;
  margin-bottom: 6px;
  color: #ffffff;
  opacity: 0;
  max-height: 0;
  max-width: 92%;
  line-height: 1.5;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  overflow: hidden;
  transition: opacity 0.35s ease, max-height 0.35s ease, margin-bottom 0.35s ease;
}
.services-grid-2x2 .service-card:hover .service-card-body p {
  opacity: 1;
  max-height: 120px;
  margin-bottom: 10px;
}
.services-grid-2x2 .service-card-link { font-size: 12px; letter-spacing: 0.18em; }

/* Sister-studio one-liner — obvious but understated */
.sister-studio-note {
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 18px 28px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal, #1a1a1a);
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  letter-spacing: 0.01em;
}
.sister-studio-note strong {
  font-weight: 500;
  color: var(--black);
}
.sister-studio-note a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  margin-left: 4px;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.sister-studio-note a:hover { opacity: 0.7; }

@media (max-width: 700px) {
  .services-grid-2x2 { grid-template-columns: 1fr; }
  .sister-studio-note { font-size: 14px; padding: 16px 20px; }
}

/* ============================================================
   WORK PAGE — alternating two-column category rows
   ============================================================ */
.work-categories .container { max-width: 1200px; }
.work-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--light-gray);
}
.work-row:last-child { border-bottom: 0; }
.work-row-reverse { direction: rtl; }
.work-row-reverse > * { direction: ltr; }

.work-row-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 2px;
}
.work-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}
.work-row-image:hover img { transform: scale(1.03); }

.work-row-body { padding: 4px 0; }
.work-row-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.work-row-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--black);
}
.work-row-body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 24px;
  max-width: 560px;
}

.work-row-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 26px;
  max-width: 560px;
}
.work-row-thumbs a {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 2px;
}
.work-row-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.4s ease, opacity 0.2s;
}
.work-row-thumbs a:hover img { transform: scale(1.06); opacity: 0.92; }

.work-row-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  margin-right: 28px;
  transition: color 0.2s;
}
.work-row-link:hover { color: var(--gold); }
.work-row-link-secondary {
  color: #888;
  border-bottom-color: #ccc;
}

@media (max-width: 900px) {
  .work-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0;
  }
  .work-row-reverse { direction: ltr; }
  .work-row-image { aspect-ratio: 3/2; }
  .work-row-link { display: block; margin: 8px 0 0; }
}

/* Prevent cropping faces on portrait/vertical imagery */
.service-card-img,
.gallery-strip-item img,
.blog-preview-img {
  background-position: center 30%;
  object-position: center 30%;
}

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

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}

.service-card p {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-card .card-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.service-card:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ABOUT SNIPPET
   ============================================================ */
.about-section {
  background: var(--white);
  padding: 120px 32px;
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

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

.about-text .section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); }

.about-text p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ============================================================
   WALL OF LOVE (TESTIMONIALS)
   ============================================================ */
.testimonials-section { background: var(--black); color: var(--white); }

.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.testimonial-card {
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CONTACT / BOOK SECTION
   ============================================================ */
.contact-section { background: var(--off-white); }

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.2;
}

.contact-info p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #444;
}

.contact-detail i { color: var(--gold); width: 20px; text-align: center; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

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

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

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1px solid #ddd;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

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

.form-group textarea { resize: vertical; min-height: 120px; }

/* Checkbox group */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--black);
  font-weight: 400;
  padding: 10px 14px;
  border: 1px solid #ddd;
  transition: border-color 0.2s, background 0.2s;
}

.checkbox-item:hover { border-color: var(--gold); background: #fdfaf6; }

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  padding: 0;
  -webkit-appearance: checkbox;
  appearance: checkbox;
  border: none;
}

.checkbox-item input[type="checkbox"]:checked + span { color: var(--gold); font-weight: 500; }

@media (max-width: 480px) {
  .checkbox-group { grid-template-columns: 1fr; }
}

.form-consent {
  font-size: 11px;
  color: #999;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-consent input { width: auto; margin-top: 2px; }

.form-submit .btn { width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 60px 32px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 280px; }

.footer-nav h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { color: rgba(255,255,255,0.5); font-size: 18px; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   GALLERY GRID (Work pages)
   ============================================================ */
.gallery-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.gallery-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: white;
}

.gallery-hero-overlay h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 12px;
}

.gallery-hero-overlay p {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.masonry-grid {
  columns: 3;
  column-gap: 12px;
  max-width: var(--max-width);
  margin: 60px auto;
  padding: 0 32px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img { transform: scale(1.03); }

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

.lightbox.open { display: flex; }

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

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 60px;
  background: var(--off-white);
  text-align: center;
  padding-left: 32px;
  padding-right: 32px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--mid-gray);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 60px auto 0; }

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
  color: var(--mid-gray);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer { max-height: 400px; padding-top: 16px; }

.faq-answer p { color: #666; line-height: 1.85; font-size: 0.95rem; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.blog-card { cursor: pointer; }

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 20px;
}

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

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

.blog-card-meta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 16px;
}

.blog-card .read-more {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.blog-card:hover .read-more { gap: 12px; color: var(--gold); }

/* Blog post page */
.blog-post-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}

.blog-post-content h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 48px 0 20px;
  line-height: 1.3;
}

.blog-post-content p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1rem;
}

.blog-post-content img {
  width: 100%;
  margin: 36px 0;
}

.blog-post-header {
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 32px 0;
  max-width: 860px;
  margin: 0 auto 40px;
}

.blog-post-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog-post-hero {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-post-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-inner { gap: 48px; }
  .masonry-grid { columns: 2; }
}

@media (max-width: 768px) {
  section { padding: 70px 20px; }
  .nav-links, .nav-social { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    padding: 24px 32px;
    gap: 24px;
    border-bottom: 1px solid #eee;
  }

  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .masonry-grid { columns: 2; }
  .hero-arrow { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
}

/* ============================================================
   NEW COMPONENT STYLES (index.html + inner pages)
   ============================================================ */

/* NAV — new class system */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 112px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, height 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  height: var(--nav-height);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* CTA link in nav */
.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--gold) !important; }
.nav-cta::after { display: none !important; }

/* CONTAINER */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 860px; }

/* SECTION base */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header-light .section-title { color: var(--white); }
.section-header-light .section-eyebrow { color: var(--gold); }
.section-cta { text-align: center; margin-top: 48px; }
.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* BUTTONS — new names */
.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  border: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold); }

.btn-secondary {
  background: transparent;
  color: var(--black);
  padding: 13px 34px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--black); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  padding: 13px 34px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: white; }

.btn-full { width: 100%; text-align: center; }

/* HERO — background-image variant */
.hero-slide {
  background-size: cover;
  background-position: center;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-headline em { font-style: italic; }
.hero-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.hero-dot.active { background: var(--white); transform: scale(1.3); }

.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* SERVICES — new structure */
.services { background: var(--off-white); }
.services .section-header { margin-bottom: 0; }

.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
}
.service-card-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
}
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.service-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.service-card-body p { font-size: 13px; opacity: 0.8; margin-bottom: 12px; line-height: 1.5; }
.service-card-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
  display: block;
}
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }

/* ABOUT SNIPPET (homepage) */
.about-snippet { background: var(--white); }
.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-snippet-img { position: relative; }
.about-snippet-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-snippet-img::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-snippet-text .section-eyebrow { margin-bottom: 12px; }
.about-snippet-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-snippet-text p { color: #555; line-height: 1.9; margin-bottom: 20px; }

/* TESTIMONIALS — new class */
.testimonials { background: var(--black); color: var(--white); }
.testimonial-card {
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.testimonial-author { display: flex; flex-direction: column; gap: 4px; }
.testimonial-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-event { font-size: 12px; color: rgba(255,255,255,0.4); }

/* GALLERY STRIP (recent work) — landscape-friendly grid */
.recent-work { background: var(--white); }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-strip-item {
  aspect-ratio: 3/2;
  overflow: hidden;
  display: block;
}
.gallery-strip-item:nth-child(5) { display: none; }
.gallery-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s;
}
.gallery-strip-item:hover img { transform: scale(1.04); }

/* BLOG PREVIEW (homepage) */
.blog-preview { background: var(--off-white); }
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.blog-preview-card { background: var(--white); }
.blog-preview-img-link { display: block; overflow: hidden; }
.blog-preview-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.blog-preview-img-placeholder { background: var(--light-gray); }
.blog-preview-img-link:hover .blog-preview-img { transform: scale(1.04); }
.blog-preview-body { padding: 24px; }
.blog-preview-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-preview-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog-preview-body h3 a { color: var(--black); transition: color 0.2s; }
.blog-preview-body h3 a:hover { color: var(--gold); }
.blog-preview-body p { font-size: 14px; color: #666; line-height: 1.75; margin-bottom: 16px; }
.blog-read-more {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
}
.blog-read-more:hover { color: var(--gold); }

/* CONTACT — new class */
.contact { background: var(--off-white); }
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.2;
}
.contact-info p { color: #666; line-height: 1.9; margin-bottom: 28px; }
.contact-details { list-style: none; margin-bottom: 28px; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #444;
}
.contact-details svg { color: var(--gold); flex-shrink: 0; }
.contact-details a { color: #444; transition: color 0.2s; }
.contact-details a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 16px; }
.contact-social a { color: var(--black); transition: color 0.2s; }
.contact-social a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--white); padding: 40px; }
.form-note { font-size: 12px; color: var(--mid-gray); margin-top: 12px; text-align: center; }
.form-success { text-align: center; padding: 48px 24px; }
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin: 16px 0 12px;
}
.form-success p { color: #666; }
.form-error { color: #c0392b; font-size: 13px; margin-top: 12px; }

/* FOOTER — new class */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}
.footer-logo img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 280px; }
.footer-contact h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-contact p { font-size: 13px; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }

/* PAGE HEADER (inner pages) */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-height);
  text-align: center;
  color: var(--white);
}
.page-header-short { height: 34vh; min-height: 260px; }
.page-header-text-only {
  background: var(--off-white);
  color: var(--black);
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.page-header-content {
  position: relative;
  z-index: 1;
  padding: 0 32px;
}
.page-header-eyebrow {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.5);
}
.page-header-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 12px;
}
.page-header-content p {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}
.page-header-text-only .page-header-content h1 { color: var(--black); }
.page-header-text-only .page-header-content p { color: var(--mid-gray); opacity: 1; }

/* STATS BAR */
.stats-bar {
  background: var(--black);
  padding: 60px 0;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ABOUT (full page) */
.about-main { background: var(--white); }
.about-main-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-main-img { position: relative; }
.about-main-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-main-img::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-main-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.2;
}
.about-main-text h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 36px 0 16px;
}
.about-main-text p { color: #555; line-height: 1.9; margin-bottom: 18px; }

/* FAQ PAGE */
.faqs-page { background: var(--white); }
.faq-group { margin-bottom: 60px; }
.faq-group-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--black);
  padding: 24px 0;
}
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s;
  color: var(--mid-gray);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p { color: #666; line-height: 1.85; font-size: 0.95rem; padding-bottom: 20px; }
.faqs-cta { text-align: center; padding: 60px 0 20px; }
.faqs-cta p { font-size: 1.1rem; color: var(--mid-gray); margin-bottom: 20px; }

/* BLOG LISTING PAGE */
.blog-listing { background: var(--off-white); }
.blog-card { background: var(--white); overflow: hidden; }
.blog-card-img-link { display: block; overflow: hidden; }
.blog-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center 20%;
  transition: transform 0.5s;
}
.blog-card-img-placeholder { background: var(--light-gray); }
.blog-card-img-link:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 28px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.blog-card-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card-date {
  font-size: 11px;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
}
.blog-card h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog-card h2 a { color: var(--black); transition: color 0.2s; }
.blog-card h2 a:hover { color: var(--gold); }
.blog-card > .blog-card-body > p { font-size: 14px; color: #666; line-height: 1.75; margin-bottom: 16px; }

/* LAZY IMAGE */
.lazy-img { opacity: 0; transition: opacity 0.5s; }
.lazy-img.visible { opacity: 1; }

/* ============================================================
   RESPONSIVE — new components
   ============================================================ */
@media (max-width: 1024px) {
  .about-snippet-inner { gap: 48px; }
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 2fr); gap: 40px; }
  .about-main-inner { gap: 48px; }
  .gallery-strip { gap: 2px; }
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid #eee;
    z-index: 999;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-social { display: none; }

  .about-snippet-inner { grid-template-columns: 1fr; }
  .about-snippet-img::before { display: none; }
  .about-main-inner { grid-template-columns: 1fr; }
  .about-main-img::before { display: none; }
  .contact-form-wrap { padding: 24px; }
  .contact-inner { grid-template-columns: 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .gallery-strip { display: grid; grid-template-columns: repeat(2, 1fr); }
  .hero-arrow-prev, .hero-arrow-next { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .blog-preview-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   LOCATION DETAILS BOX (engagement/location blog posts)
   ============================================================ */

.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  background: var(--light-gray);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 16px 0 32px;
  font-size: 14px;
  line-height: 1.6;
  font-family: var(--font-sans);
}

.location-details span {
  display: block;
}

.location-details strong {
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 600px) {
  .location-details {
    grid-template-columns: 1fr;
  }
}


/* Sister studio cross-link */
.sister-studio {
  margin-top: 12px;
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
}
.sister-studio a {
  text-decoration: underline;
  font-weight: 500;
}
