/* ============================================================
   BK Photo Projects — Main Stylesheet
   Palette: warm near-white · dusty blue · sophisticated rose
   ============================================================ */

:root {
  /* Backgrounds */
  --bg:        #FDFAF7;   /* barely-warm white — photos pop against this */
  --bg-soft:   #F4EDE5;   /* warm tone for secondary panels */
  --white:     #FFFFFF;

  /* Text */
  --text:      #1C1814;   /* rich warm near-black */
  --muted:     #6A625C;   /* warm mid-gray */
  --light:     #A89F99;   /* warm light gray for labels */

  /* Brand — from logo */
  --blue:      #3D5C6E;   /* deep dusty blue */
  --blue-mid:  #6B8FA0;   /* lighter blue */
  --rose:      #B8705A;   /* sophisticated dusty rose */
  --rose-lt:   #F5E3DB;   /* very pale rose */
  --rose-dk:   #9A5944;   /* deep rose for hover */

  /* UI */
  --border:    #E8DDD6;   /* warm soft border */
  --border-md: #D0C4BB;   /* medium border */
  --shadow-sm: 0 1px 3px rgba(28, 24, 20, 0.05), 0 4px 12px rgba(28, 24, 20, 0.05);
  --shadow:    0 2px 6px rgba(28, 24, 20, 0.05), 0 8px 24px rgba(28, 24, 20, 0.07);
  --shadow-lg: 0 4px 8px rgba(28, 24, 20, 0.06), 0 20px 52px rgba(28, 24, 20, 0.11);

  /* Geometry */
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1240px;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
.serif { font-family: Georgia, "Times New Roman", serif; letter-spacing: -0.02em; }

.eyebrow {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.40em;
  color: var(--light);
  margin: 0 0 12px;
}
.dark-card .eyebrow { color: #a8a1b0; }

.hero-title {
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.98;
  margin: 0;
  color: var(--text);
}
.section-title {
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.06;
  margin: 0;
  color: var(--text);
}
.lead {
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 780px;
  margin-top: 20px;
}
.body-text {
  font-size: 17px;
  line-height: 1.88;
  color: var(--muted);
}

/* ── Layout ── */
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.section { margin-bottom: 96px; }
.stack   { display: grid; gap: 16px; }
.center  { text-align: center; }

/* ── .reveal ──
   Deliberately does nothing now. The class is left on the markup so no HTML
   or page script needed changing, and so it is available if a safe entrance
   effect is ever wanted.

   There was a scroll-reveal here that started every section at opacity 0 and
   counted on something to bring it back — first an IntersectionObserver, then
   a CSS animation. Both share the same flaw: the content's *resting* state is
   invisible, so anything that interrupts the reveal leaves a blank page
   rather than an unanimated one. It went wrong three separate ways in
   practice — a class-name mismatch, a duplicated rule later in this file, and
   an animation that registered but never advanced.

   A photography site does not need a fade to make an impression, and a
   visitor who sees nothing has no way to know they should retry. Anything
   added here later must keep opacity 1 as the resting value and animate only
   properties that cannot hide content, such as transform. */

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  margin: 14px 0 36px;
}
.header-shell {
  background: rgba(253, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 9px 16px 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}
.brand-logo { width: 44px; height: 44px; flex-shrink: 0; }
.brand-text  { display: flex; flex-direction: column; gap: 1px; }
.brand-title {
  font-size: 17px;
  margin: 0;
  line-height: 1;
  color: var(--blue);
  font-family: Georgia, serif;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 8.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--light);
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.nav-link {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 10.5px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--blue); font-weight: 600; }
.chip-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid var(--border-md);
  padding: 8px 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10.5px;
  background: #fff;
  color: var(--muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.chip-link:hover { border-color: var(--rose); color: var(--rose); }
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-md);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
}
.mobile-nav { display: none; }
.mobile-nav.show {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.mobile-nav a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--muted);
  transition: color 0.2s;
  text-decoration: none;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--blue); }

/* ════════════════════════════════════════
   CARDS
════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease;
}
.card.pad    { padding: 32px; }
.card.pad-lg { padding: 44px; }
.soft-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.dark-card {
  background: #201E1B;
  color: #EDE8E3;
  border-radius: var(--radius-xl);
  border: 1px solid #3A3530;
  box-shadow: var(--shadow-lg);
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 10.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary   { background: var(--blue);  color: #fff; border-color: var(--blue); }
.btn-primary:hover   { background: #2E4D5E; border-color: #2E4D5E; }
.btn-rose      { background: var(--rose);  color: #fff; border-color: var(--rose); }
.btn-rose:hover      { background: var(--rose-dk); border-color: var(--rose-dk); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border-md); }
.btn-secondary:hover { border-color: var(--blue); }
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.muted-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
.muted-link:hover { color: var(--blue); }

/* ════════════════════════════════════════
   IMAGE SLOTS (placeholder areas)
════════════════════════════════════════ */
.img-slot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #dbd4cc, #f6f2ee 55%, #e9e2da);
  min-height: 240px; /* placeholder height — cleared when image loads */
}
.img-slot.has-photo {
  min-height: 0; /* image sets its own height — no forced crop */
}
.img-slot img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  border-radius: inherit;
}
.img-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.85), transparent 35%),
    radial-gradient(circle at bottom right, rgba(184,112,90,0.08), transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.img-slot.has-photo::before { display: none; }
.img-slot.has-photo .img-label { display: none; }
.img-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(180,168,160,0.55);
  background: rgba(253,250,247,0.84);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 9.5px;
  color: var(--light);
  z-index: 2;
}

/* ════════════════════════════════════════
   ROSE STRIP ACCENT
════════════════════════════════════════ */
.rose-strip {
  display: block;
  width: 32px; height: 2.5px;
  background: var(--rose);
  border-radius: 2px;
  margin-bottom: 18px;
}
.center .rose-strip { margin: 0 auto 18px; }

/* ════════════════════════════════════════
   HOME — HERO
════════════════════════════════════════ */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

/* ════════════════════════════════════════
   HOME — TESTIMONIALS
════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.star-row {
  display: flex; gap: 3px;
  color: var(--rose);
  margin-bottom: 14px;
  font-size: 13px;
}
.testimonial-quote {
  font-size: 17.5px;
  line-height: 1.82;
  color: var(--text);
  margin: 0;
  font-style: italic;
}
.testimonial-name {
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 10.5px;
  color: var(--light);
}

/* ════════════════════════════════════════
   HOME — STORY / APPROACH
════════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* ════════════════════════════════════════
   NICHE CARDS
════════════════════════════════════════ */
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.niche-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.niche-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(28, 24, 20, 0.11);
}
.niche-thumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #DDD4CA, #F5EFE8 55%, #EAE2DA);
  min-height: 200px; /* placeholder when no image */
}
.niche-thumb.has-image {
  min-height: 0; /* image sets its own height */
}
.niche-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.niche-card:hover .niche-thumb img { transform: scale(1.04); }
.niche-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.42) 0%, transparent 60%);
  pointer-events: none;
}
.niche-thumb-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(200,188,182,0.65);
  background: rgba(253,250,247,0.88);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 9.5px;
  color: var(--muted);
  backdrop-filter: blur(6px);
}
.niche-body { padding: 22px 24px 26px; }
.niche-title { margin: 0; font-size: 28px; line-height: 1.06; color: var(--text); }
.niche-short { font-size: 15.5px; color: var(--muted); margin: 10px 0 0; line-height: 1.72; }

/* ════════════════════════════════════════
   INSTAGRAM SECTION
════════════════════════════════════════ */
.insta-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
}
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.insta-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s;
}
.insta-thumb:hover { transform: scale(1.02); }

/* ════════════════════════════════════════
   MASONRY PHOTO GALLERY (niche detail page)
════════════════════════════════════════ */
.photo-grid {
  columns: 3 220px;
  column-gap: 14px;
}
.photo-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ddd4cc, #f6f2ee 55%, #e9e2da);
  min-height: 160px;
}
.photo-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
  border-radius: var(--radius);
}
.photo-item:hover .photo-wrap img { transform: scale(1.04); }
.photo-caption {
  margin: 7px 4px 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
}
.photo-placeholder {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}
.photo-placeholder-icon  { font-size: 28px; opacity: 0.25; }
.photo-placeholder-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--light); }

/* ════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
#lightbox.open { display: flex; }
.lb-content {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
#lb-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  user-select: none;
}
#lb-caption {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
}
#lb-counter {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.lb-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(253,250,247,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 201;
}
.lb-btn:hover { background: rgba(255,255,255,0.18); }
#lb-prev { left: 20px; }
#lb-next { right: 20px; }
.lb-close {
  position: fixed;
  top: 18px; right: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 201;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
  align-items: center;
}
.three-grid-even {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
  align-items: start;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.field { display: grid; gap: 6px; }
label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--light);
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--border-md);
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61, 92, 110, 0.08);
}
textarea { min-height: 110px; resize: vertical; }
.form-note { margin-top: 10px; font-size: 13px; color: var(--light); }
.info-list {
  display: grid; gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.contact-link {
  display: flex; align-items: center; gap: 10px;
  transition: color 0.2s;
  text-decoration: none;
  color: var(--muted);
}
.contact-link:hover { color: var(--blue); }

/* ════════════════════════════════════════
   PORTFOLIO / NICHE DETAIL
════════════════════════════════════════ */
.niche-bottom {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 22px;
  align-items: start;
}
.bullet-list {
  list-style: none; padding: 0;
  margin: 18px 0 0;
  display: grid; gap: 12px;
}
.bullet-list li {
  display: flex; gap: 12px;
  color: var(--muted);
  line-height: 1.8; font-size: 16.5px;
}
.bullet-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose);
  margin-top: 11px;
  flex-shrink: 0;
}
.page-intro { margin-bottom: 52px; }
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--light);
  text-transform: uppercase; letter-spacing: 0.24em; font-size: 10.5px;
  margin-bottom: 18px;
  transition: color 0.2s;
  text-decoration: none;
}
.back-btn:hover { color: var(--blue); }
.niche-route-title {
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: 1.04; margin: 0;
}

/* ════════════════════════════════════════
   PRICING
════════════════════════════════════════ */
.pricing-card-highlight { border-color: var(--rose) !important; }
.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--rose); color: #fff;
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.28em;
  padding: 4px 14px; border-radius: 999px;
}
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-item { padding: 26px; }
.faq-q { font-size: 19px; line-height: 1.3; margin: 0 0 12px; color: var(--text); }

/* ════════════════════════════════════════
   CTA DARK BANNER
════════════════════════════════════════ */
.cta-banner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 28px; align-items: center; padding: 44px 48px;
}
.cta-banner h2 { color: #EDE8E3; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer { margin: 64px 0 32px; padding: 36px 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.footer-links { display: grid; gap: 8px; }
.footer-links a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--blue); }
.footer-copy {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--light);
}

/* Lightbox meta row (caption + counter) */
.lb-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

/* ════════════════════════════════════════
   RESPONSIVE — 1080px
════════════════════════════════════════ */
@media (max-width: 1080px) {
  .hero-grid, .story-grid, .insta-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid   > :first-child,
  .story-grid  > :first-child,
  .insta-grid  > :first-child,
  .about-grid  > :first-child,
  .contact-grid > :first-child { grid-column: span 2; }

  .testimonials-grid,
  .niche-grid,
  .three-grid,
  .three-grid-even { grid-template-columns: repeat(2, 1fr); }

  .photo-grid { columns: 2 180px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: span 2; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 760px (mobile)
════════════════════════════════════════ */
@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }

  .hero-grid, .story-grid, .insta-grid, .about-grid, .contact-grid,
  .niche-bottom, .testimonials-grid, .niche-grid, .three-grid,
  .three-grid-even, .footer-grid, .form-grid-2, .faq-grid, .mini-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid > :first-child, .story-grid > :first-child,
  .insta-grid > :first-child, .about-grid > :first-child,
  .contact-grid > :first-child, .footer-grid > :first-child {
    grid-column: auto;
  }
  .card.pad, .card.pad-lg { padding: 22px; }
  .section { margin-bottom: 64px; }
  .lead { font-size: 17px; }
  .cta-banner { grid-template-columns: 1fr; padding: 28px; }
  .cta-banner .btn { width: 100%; }
  .photo-grid { columns: 2; }
  #lb-prev { left: 8px; }
  #lb-next { right: 8px; }
}
@media (max-width: 480px) {
  .photo-grid { columns: 1; }
}

/* ============================================================
   LOGO — always rendered as a circle so any square upload works
   ============================================================ */
.brand-logo,
.footer-logo {
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
}

/* Pricing packages and About value cards are both add/delete in the admin, so
   neither can assume a fixed three across. This flows to whatever count she
   ends up with and still balances the row. */
.pricing-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  align-items: start;
}

/* ============================================================
   CLIENT GALLERY LOOKUP PAGE (/client-gallery)
   ============================================================ */
.gallery-page {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}
.gallery-page-card {
  width: 100%;
  max-width: 560px;
}
.gallery-page-title {
  font-size: 40px;
  line-height: 1.08;
  margin: 14px 0 0;
  color: var(--blue);
}
.gallery-page-card .body-text { margin-top: 16px; }

.gallery-page-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.gallery-page-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
}
.gallery-page-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-md);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.gallery-page-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-lt);
}
.gallery-page-submit { margin-top: 8px; width: 100%; }

.gallery-page-msg {
  display: none;
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--bg-soft);
  font-size: 15px;
  line-height: 1.65;
  color: var(--blue);
}
.gallery-page-msg.show     { display: block; }
.gallery-page-msg.is-error {
  background: var(--rose-lt);
  color: var(--rose-dk);
}

.gallery-page-help {
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.gallery-page-help a { color: var(--rose-dk); text-decoration: underline; }

@media (max-width: 560px) {
  .gallery-page-title { font-size: 31px; }
}
