/*
 * Lumière Photography Theme — Main Stylesheet
 * Version: 1.0.0
 */

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

:root {
  --charcoal:  #1A1A1A;
  --off-white: #F8F5F0;
  --rose:      #C9957A;
  --sage:      #8A9E8C;
  --warm-grey: #E8E2DC;
  --mid-grey:  #6B6560;
  --light-text:#9E9892;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

/* ── ANNOUNCEMENT BANNER ──────────────────────────────────────────── */
.theme-banner {
  background: var(--rose);
  padding: 0.6rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}
.theme-banner a { color: white; font-weight: 500; text-decoration: underline; }

/* ── NAVIGATION ───────────────────────────────────────────────────── */
.lumiere-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  background: rgba(248,245,240,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,149,122,0.15);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-decoration: none;
}
.nav-logo span,
.nav-logo .footer-logo span { color: var(--rose); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  text-decoration: none;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--charcoal); color: var(--off-white); }

/* Mobile hamburger (hidden on desktop) */
.nav-mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 3rem;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mid-grey);
  max-width: 400px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  min-height: 500px;
}
.hero-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 3px;
  padding: 3px;
}
.hg-cell { overflow: hidden; position: relative; cursor: pointer; }
.hg-cell:first-child { grid-row: span 2; }
.hg-cell img,
.hg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9);
}
.hg-cell:hover .hg-img,
.hg-cell:hover img { transform: scale(1.04); filter: brightness(1); }
.hg-label {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-family: 'DM Sans', sans-serif;
  pointer-events: none;
}

/* Placeholder gradients for cells without images */
.img-ph { width: 100%; height: 100%; display: block; }
.ph-1 { background: linear-gradient(135deg, #6B5E5E 0%, #3D2F2F 40%, #8A7070 100%); }
.ph-2 { background: linear-gradient(160deg, #4A5E52 0%, #2C3E35 60%, #6A8070 100%); }
.ph-3 { background: linear-gradient(120deg, #7A6855 0%, #4A3D2E 50%, #9A8870 100%); }
.ph-4 { background: linear-gradient(140deg, #5E5A6B 0%, #3A3545 60%, #7A7590 100%); }
.ph-5 { background: linear-gradient(110deg, #6B4E4E 0%, #3D2A2A 50%, #9A7575 100%); }

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--charcoal);
  color: var(--off-white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
  font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--rose); color: white; }
.btn-ghost {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--mid-grey);
  text-decoration: none;
  border-bottom: 1px solid var(--warm-grey);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--rose); border-color: var(--rose); }

/* ── SHARED SECTION STYLES ────────────────────────────────────────── */
.lumiere-section { padding: 6rem 3rem; }
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--mid-grey);
  max-width: 520px;
}

/* ── GALLERY SECTION ──────────────────────────────────────────────── */
.section-gallery { background: var(--charcoal); padding: 5rem 0; }
.gallery-header { padding: 0 3rem 3rem; }
.gallery-header .section-title { color: var(--off-white); }
.gallery-header .section-body  { color: rgba(248,245,240,0.55); }

.gallery-tabs {
  display: flex; padding: 0 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-tabs::-webkit-scrollbar { display: none; }

.gallery-tab {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.35);
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  white-space: nowrap;
  background: none;
  font-family: 'DM Sans', sans-serif;
}
.gallery-tab:hover { color: rgba(248,245,240,0.7); }
.gallery-tab.active { color: var(--off-white); border-bottom-color: var(--rose); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 3px;
  padding: 0 3px;
}
.gm-cell { overflow: hidden; cursor: pointer; position: relative; }
.gm-cell:nth-child(3n+1) { grid-row: span 2; }
.gm-cell .img-ph,
.gm-cell img.gm-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gm-cell:hover img.gm-img { transform: scale(1.05); }
.gm-cell:nth-child(1) .img-ph { background: linear-gradient(135deg, #704E4E 0%, #3D2020 100%); }
.gm-cell:nth-child(2) .img-ph { background: linear-gradient(160deg, #3A5A48 0%, #1E3028 100%); }
.gm-cell:nth-child(3) .img-ph { background: linear-gradient(120deg, #5A4E3A 0%, #2E2A1A 100%); }
.gm-cell:nth-child(4) .img-ph { background: linear-gradient(140deg, #4A4860 0%, #24223A 100%); }
.gm-cell:nth-child(5) .img-ph { background: linear-gradient(130deg, #602E2E 0%, #3A1818 100%); }
.gm-cell:nth-child(6) .img-ph { background: linear-gradient(150deg, #2A4840 0%, #14281E 100%); }
.gm-cell:nth-child(7) .img-ph { background: linear-gradient(125deg, #5A4832 0%, #2E2418 100%); }
.gm-cell[data-hidden="true"] { display: none; }
.gm-caption {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  color: transparent;
  display: flex; align-items: flex-end; padding: 1rem;
  font-size: 0.75rem; letter-spacing: 0.08em;
  transition: background 0.3s, color 0.3s;
}
.gm-cell:hover .gm-caption { background: rgba(0,0,0,0.4); color: rgba(255,255,255,0.8); }

/* ── SERVICES SECTION ─────────────────────────────────────────────── */
.section-services { background: var(--off-white); }
.services-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.services-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.service-card {
  padding: 2rem;
  border: 1px solid var(--warm-grey);
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
  background: var(--off-white);
}
.service-card:hover { border-color: var(--rose); transform: translateY(-3px); }
.service-card.featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}
.service-icon { font-size: 1.4rem; margin-bottom: 1rem; display: block; }
.service-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.4rem; font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.service-card.featured .service-name { color: var(--off-white); font-size: 1.8rem; }
.service-desc { font-size: 0.82rem; line-height: 1.7; color: var(--mid-grey); }
.service-card.featured .service-desc { color: rgba(248,245,240,0.5); }
.service-tag {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(201,149,122,0.1);
  padding: 0.3rem 0.6rem;
}

/* ── PRICING SECTION ──────────────────────────────────────────────── */
.section-pricing { background: var(--warm-grey); }
.pricing-header  { text-align: center; margin-bottom: 4rem; }
.pricing-header .section-body { margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  background: var(--off-white);
  padding: 2.5rem;
  border: 1px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}
.price-card:hover { border-color: var(--rose); transform: translateY(-4px); }
.price-card.highlight { background: var(--charcoal); color: var(--off-white); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: white;
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 1rem;
  white-space: nowrap;
}
.price-tier { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.8rem; }
.price-amount { font-family: 'Cormorant Garant', serif; font-size: 3.2rem; font-weight: 300; line-height: 1; margin-bottom: 0.3rem; }
.price-period { font-size: 0.78rem; color: var(--light-text); margin-bottom: 1.8rem; }
.price-card.highlight .price-period { color: rgba(248,245,240,0.4); }
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li {
  font-size: 0.82rem; padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--mid-grey);
  display: flex; align-items: center; gap: 0.6rem;
}
.price-card.highlight .price-features li { color: rgba(248,245,240,0.55); border-bottom-color: rgba(255,255,255,0.06); }
.price-features li::before { content: '—'; color: var(--rose); font-size: 0.8rem; }
.btn-plan {
  display: block; width: 100%; padding: 0.85rem;
  text-align: center; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  transition: all 0.25s;
  cursor: pointer; background: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-plan:hover { background: var(--charcoal); color: var(--off-white); }
.price-card.highlight .btn-plan { background: var(--rose); border-color: var(--rose); color: white; }
.price-card.highlight .btn-plan:hover { background: #b07d62; border-color: #b07d62; }

/* ── ABOUT SECTION ────────────────────────────────────────────────── */
.section-about { background: var(--off-white); }
.about-layout  { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-stack { position: relative; height: 520px; }
.about-img-main {
  position: absolute; top: 0; left: 0; right: 40px; bottom: 40px;
  background: linear-gradient(145deg, #5A4A3A 0%, #2E2418 100%);
  z-index: 1; overflow: hidden;
}
.about-img-main .about-photo { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; right: 0; bottom: 0; width: 55%; height: 55%;
  background: linear-gradient(135deg, var(--rose) 0%, #a06a4e 100%);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.about-stat { text-align: center; color: white; }
.about-stat-num { font-family: 'Cormorant Garant', serif; font-size: 3rem; font-weight: 300; display: block; line-height: 1; }
.about-stat-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.75; }
.about-text .section-body { margin-bottom: 1.5rem; }
.signature {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.6rem; font-style: italic; font-weight: 300;
  color: var(--rose);
  margin-top: 2rem;
  border-top: 1px solid var(--warm-grey);
  padding-top: 1.2rem;
}

/* ── TESTIMONIALS SECTION ─────────────────────────────────────────── */
.section-testimonials { background: var(--charcoal); }
.testimonials-title   { color: var(--off-white); }
.testimonials-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.25s;
}
.testi-card:hover { border-color: rgba(201,149,122,0.4); }
.testi-stars   { color: var(--rose); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testi-quote   { font-family: 'Cormorant Garant', serif; font-size: 1.05rem; font-weight: 300; font-style: italic; line-height: 1.65; color: rgba(248,245,240,0.75); margin-bottom: 1.5rem; }
.testi-author  { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar  { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testi-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.testi-av-1 { background: linear-gradient(135deg, #9A7070 0%, #6A4040 100%); }
.testi-av-2 { background: linear-gradient(135deg, #709A85 0%, #404A6A 100%); }
.testi-av-3 { background: linear-gradient(135deg, #9A8570 0%, #6A5540 100%); }
.testi-name    { font-size: 0.8rem; color: rgba(248,245,240,0.8); font-weight: 500; }
.testi-role    { font-size: 0.68rem; color: rgba(248,245,240,0.35); letter-spacing: 0.05em; }

/* ── CONTACT SECTION ──────────────────────────────────────────────── */
.section-contact { background: var(--off-white); }
.contact-layout  { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info    { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.contact-item    { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-label   { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); }
.contact-val     { font-family: 'Cormorant Garant', serif; font-size: 1.1rem; color: var(--charcoal); }
.contact-val a   { text-decoration: none; color: inherit; }
.contact-val a:hover { color: var(--rose); }
.contact-form    { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row        { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field      { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label      { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-grey); }
.form-input,
.form-select,
.form-textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--warm-grey);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--rose); }
.form-textarea { min-height: 100px; }
.form-message.success { background: rgba(138,158,140,0.1); color: var(--sage); border: 1px solid var(--sage); }
.form-message.error   { background: rgba(201,149,122,0.1); color: #b05a3a; border: 1px solid #b05a3a; }

/* ── FOOTER ───────────────────────────────────────────────────────── */
.lumiere-footer { background: #111; }
.footer-inner {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-logo   { font-size: 1.4rem !important; color: var(--off-white) !important; }
.footer-tagline{ font-size: 0.78rem; color: rgba(248,245,240,0.3); margin-top: 0.4rem; }
.footer-links  { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a,
.footer-links li a { font-size: 0.78rem; color: rgba(248,245,240,0.35); text-decoration: none; transition: color 0.2s; list-style: none; }
.footer-links a:hover,
.footer-links li a:hover { color: var(--rose); }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-social { display: flex; gap: 1rem; justify-content: flex-end; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(248,245,240,0.35);
  font-size: 0.75rem; font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--rose); color: var(--rose); }
.footer-copy {
  padding: 1.5rem 3rem;
  font-size: 0.68rem;
  color: rgba(248,245,240,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  letter-spacing: 0.08em;
}
.footer-copy a { color: rgba(248,245,240,0.35); text-decoration: none; }
.footer-copy a:hover { color: var(--rose); }

/* ── SCROLL REVEAL ────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.35s; }

/* ── LOADING SPINNER ──────────────────────────────────────────────── */
.lumiere-submit-btn.loading { opacity: 0.6; pointer-events: none; }
.lumiere-submit-btn.loading::after { content: '…'; }

/* ── WORDPRESS SPECIFIC ───────────────────────────────────────────── */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.78rem; color: var(--light-text); margin-top: 0.4rem; }
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin-left: auto; margin-right: auto; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.skip-link { position: absolute; top: -40px; left: 0; background: var(--rose); color: white; padding: 0.5rem 1rem; z-index: 999; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 50vw; position: relative; }
  .hero-grid { position: relative; height: 50vw; }
  .services-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-social { justify-content: flex-start; }
}

@media (max-width: 768px) {
  nav, .lumiere-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--off-white);
    padding: 3rem 2rem;
    gap: 2rem; z-index: 99;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .nav-mobile-toggle { display: flex; }
  .nav-cta { display: none; }

  .lumiere-section { padding: 4rem 1.5rem; }
  .hero-left { padding: 3rem 1.5rem; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-img-stack { height: 300px; }
  .theme-banner { padding: 0.6rem 1.5rem; font-size: 0.65rem; }

  .gallery-header { padding: 0 1.5rem 2rem; }
  .gallery-tabs { padding: 0 1.5rem; }
  .gallery-masonry { padding: 0 1.5px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hg-cell:hover .hg-img,
  .gm-cell:hover img { transform: none; }
}

/* ─────────────────────────────────────────────
   Page Template (page.php)
   Used for [lumiere_booking], [lumiere_dashboard],
   and any standard WordPress page.
───────────────────────────────────────────── */

/* Push content below the fixed nav (nav is ~80px tall + announcement bar ~40px) */
.lumiere-page {
    min-height: 80vh;
    background: #F8F5F0;
    padding-top: 120px; /* fixed nav height + announcement bar */
}

/* Standard pages: constrained centered content */
.lumiere-page-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

/* Shortcode pages: give the plugin wizard room to breathe */
.lumiere-page--shortcode .lumiere-page-inner {
    max-width: 860px;
    padding: 0 24px 80px;
}

@media (max-width: 768px) {
    .lumiere-page {
        padding-top: 100px;
    }
    .lumiere-page-inner {
        padding: 0 20px 60px;
    }
    .lumiere-page--shortcode .lumiere-page-inner {
        padding: 0 16px 60px;
    }
}
/* Page heading for shortcode pages */
.lumiere-page-heading {
    margin-bottom: 32px;
}
.lumiere-page-title {
    font-family: 'Cormorant Garant', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}
@media (max-width: 768px) {
    .lumiere-page-title { font-size: 1.8rem; }
}

