/* ============================================================
   SAGE & SPUR PHOTOGRAPHY
   Brand: K Brand Studio 2025
   Fonts: Old Claude Lp Std (old-claude-lp-expert) — Adobe Fonts
          Old Man Eloquent (old-man-eloquent) — Adobe Fonts
          Open Sans (body)
   ============================================================ */

/* ---- Variables ------------------------------------------- */
:root {
  --river-blue:  #25485D;
  --light-sky:   #B4BFCA;
  --evergreen:   #435239;
  --sage:        #6A7866;
  --brown:       #473729;
  --tan:         #CDC4AA;
  --cream:       #F7F5F1;
  --white:       #FFFFFF;
  --black:       #000000;

  --font-display: old-claude-lp-expert, Georgia, serif;
  --font-script:  old-man-eloquent, cursive;
  --font-body:    'Open Sans', system-ui, sans-serif;

  --nav-h:     80px;
  --max-w:     1200px;
  --ease:      0.3s ease;
}

/* ---- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--brown);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---- Typography ------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  color: var(--evergreen);
}
h1 { font-size: clamp(2.75rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem,   4vw, 3rem);    }
h3 { font-size: clamp(1.5rem, 3vw, 2rem);    }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.script {
  font-family: var(--font-script);
  font-size: 1.6em;
  color: var(--sage);
  display: block;
}
.divider {
  width: 50px;
  height: 1px;
  background: var(--tan);
  margin: 1.25rem auto;
}

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid currentColor;
  cursor: pointer;
  transition: var(--ease);
  text-align: center;
  background: transparent;
}
.btn-primary {
  background: var(--evergreen);
  color: var(--cream);
  border-color: var(--evergreen);
}
.btn-primary:hover  { background: var(--river-blue); border-color: var(--river-blue); }

.btn-outline        { color: var(--cream); border-color: rgba(247,245,241,.7); }
.btn-outline:hover  { background: var(--cream); color: var(--evergreen); border-color: var(--cream); }

.btn-dark           { color: var(--evergreen); border-color: var(--evergreen); }
.btn-dark:hover     { background: var(--evergreen); color: var(--cream); }

.btn-light          { background: var(--cream); color: var(--evergreen); border-color: var(--cream); }
.btn-light:hover    { background: transparent; color: var(--cream); border-color: var(--cream); }

/* ---- Layout ---------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 2rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  background: transparent;
  box-shadow: none;
  transition: background var(--ease), box-shadow var(--ease);
}
.site-nav.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 24px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; }
.nav-transparent .logo-scrolled { display: none; }
.nav-transparent .logo-default  { display: block; }
.nav-transparent.scrolled .logo-default  { display: none; }
.nav-transparent.scrolled .logo-scrolled { display: block; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--evergreen);
}
.nav-transparent .nav-logo-text { color: var(--cream); }
.nav-transparent.scrolled .nav-logo-text { color: var(--evergreen); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--evergreen);
  position: relative;
  transition: color var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--tan);
  transition: width var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--river-blue); }

.nav-transparent .nav-links a      { color: var(--cream); }
.nav-transparent .nav-links a::after { background: var(--tan); }
.site-nav.scrolled .nav-links a { color: var(--evergreen); }

.nav-book { margin-left: 1.5rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--evergreen);
  transition: var(--ease);
}
.nav-transparent .nav-toggle span      { background: var(--cream); }
.nav-transparent.scrolled .nav-toggle span { background: var(--evergreen); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--evergreen);
}
/* Override for the Book Now button inside mobile nav so text is visible on the green background */
.nav-mobile a.btn.btn-primary {
  color: var(--cream);
  background: var(--evergreen);
  border-color: var(--evergreen);
  padding: 0.85rem 2rem;
  margin-top: 1rem;
}
.nav-mobile a.btn.btn-primary:hover {
  background: var(--river-blue);
  border-color: var(--river-blue);
  color: var(--cream);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--brown);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(67,82,57,.55) 0%,
    rgba(37,72,93,.35) 60%,
    rgba(71,55,41,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 780px;
  padding: 2rem;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tan);
  display: block;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--tan);
  display: block;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(247,245,241,.8);
  max-width: 480px;
  margin: 0 auto 3rem;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(247,245,241,.6);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px; height: 44px;
  background: var(--cream);
  animation: lineGrow 2s ease-in-out infinite;
}
@keyframes lineGrow {
  0%,100% { opacity: .2; transform: scaleY(.4); transform-origin: top; }
  50%      { opacity: .9; transform: scaleY(1); }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-hd {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.section-hd h2  { margin-bottom: 0.75rem; }
.section-hd p   { font-size: 0.9rem; color: var(--sage); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section {
  background: var(--white);
  padding: 6rem 2rem;
}
.services-list {
  max-width: var(--max-w);
  margin: 0 auto;
}
.svc-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2fr auto 1.5rem;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 1.25rem;
  border-top: 1px solid var(--tan);
  text-decoration: none;
  color: inherit;
  transition: background var(--ease), padding-left var(--ease);
}
.svc-row:last-child { border-bottom: 1px solid var(--tan); }
.svc-row:hover { background: var(--cream); padding-left: 2rem; }
.svc-num {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--tan);
}
.svc-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown);
}
.svc-desc {
  font-size: .82rem;
  color: var(--sage);
  line-height: 1.6;
}
.svc-price {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--evergreen);
  white-space: nowrap;
}
.svc-arrow {
  font-size: 1.1rem;
  color: var(--tan);
  transition: transform var(--ease), color var(--ease);
  display: block;
  text-align: right;
}
.svc-row:hover .svc-arrow { transform: translateX(5px); color: var(--evergreen); }

/* ============================================================
   ABOUT SPLIT
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  margin: 6rem auto;
  max-width: 1200px;
  padding: 0 2rem;
  gap: 2rem;
}
@media (max-width: 900px) {
  .about-split {
    margin: 4rem auto;
    padding: 0 1.25rem;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
.split-photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(145deg, var(--evergreen), var(--sage));
}
.split-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0;
  transition: opacity 1.4s ease, transform 0.8s ease;
}
.split-photo img.active {
  opacity: 1;
}
.split-photo:hover img.active { transform: scale(1.03); }
.split-photo .img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(247,245,241,.35);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.split-copy {
  background: var(--cream);
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-copy h2  { margin-bottom: 1.5rem; }
.split-copy p   { font-size: 0.92rem; line-height: 1.9; margin-bottom: 1rem; }
.signature {
  font-family: var(--font-script);
  font-size: 2.75rem;
  color: var(--sage);
  display: block;
  margin: 1rem 0 2rem;
  line-height: 1;
}

/* ============================================================
   SERVICES CTA — View Portfolio button below the prices list
   ============================================================ */
.services-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 0 2rem;
}

/* OLD PHOTO STRIP — kept for any legacy references */
.photo-strip {
  overflow: hidden;
  padding: .8rem 0;
  background: var(--white);
  cursor: pointer;
}
.strip-track {
  display: flex;
  gap: .8rem;
  width: max-content;
  will-change: transform;
  animation: marquee-left 45s linear infinite;
}
.photo-strip:hover .strip-track,
.photo-strip.paused .strip-track { animation-play-state: paused; }
.strip-track img {
  height: 420px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  transition: filter .4s ease;
}
.photo-strip:hover .strip-track img { filter: brightness(.92); }
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.portfolio-section {
  background: var(--cream);
  padding: 6rem 0;
}
.portfolio-hd {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 3rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  max-width: 1400px;
  margin: 0 auto 3rem;
}
.port-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--tan);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(28px);
}
.port-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease, box-shadow .4s ease;
}
.port-item:nth-child(1).visible { transition-delay: 0s; }
.port-item:nth-child(2).visible { transition-delay: .08s; }
.port-item:nth-child(3).visible { transition-delay: .16s; }
.port-item:nth-child(4).visible { transition-delay: .24s; }
.port-item:nth-child(5).visible { transition-delay: .32s; }
.port-item:nth-child(6).visible { transition-delay: .40s; }
.port-item:nth-child(2) { aspect-ratio: 3/4; grid-row: span 1; }
.port-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.port-item:hover img { transform: scale(1.05); }
.port-item:hover { box-shadow: 0 18px 48px rgba(0,0,0,.18); }
.port-item .img-placeholder {
  width: 100%; height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(71,55,41,.3);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.portfolio-cta { text-align: center; }

/* ============================================================
   INSTAGRAM FEED
   ============================================================ */
.instagram-section {
  background: var(--white);
  padding: 5rem 2rem;
}
.ig-feed-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}
.ig-feed-wrap behold-widget {
  display: block;
  width: 100%;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--evergreen);
  padding: 6rem 2rem;
}
.testimonials-section .section-hd h2 { color: var(--cream); }
.testimonials-section .section-hd p  { color: var(--cream); opacity: 0.85; }
.testimonials-section .divider        { background: var(--sage); }

.testimonial-carousel {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.tq-slides { position: relative; min-height: 160px; }
.tq-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.tq-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.tq-slide p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(247,245,241,.85);
  font-style: italic;
}
.tq-author {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
}
.tq-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.tq-prev, .tq-next {
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.6);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: border-color .2s, color .2s;
}
.tq-prev:hover, .tq-next:hover {
  border-color: var(--tan);
  color: var(--tan);
}
.tq-dots { display: flex; gap: .5rem; }
.tq-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background .3s;
}
.tq-dot.active { background: var(--tan); }

/* ============================================================
   AREAS SERVED
   ============================================================ */
.areas-section {
  background: var(--white);
  padding: 3.5rem 2rem;
  text-align: center;
}
.areas-section h3 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
  font-family: var(--font-body);
  margin-bottom: 1.25rem;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.areas-list li {
  font-size: 0.85rem;
  color: var(--brown);
  padding: 0.3rem 0;
  white-space: nowrap;
}
.areas-list li + li::before {
  content: '·';
  margin-right: 2rem;
  color: var(--tan);
}
/* Mobile: compact 2-column grid, no dots, no dividers */
@media (max-width: 640px) {
  .areas-section { padding: 2rem 1rem; }
  .areas-section h3 { font-size: 0.6rem; margin-bottom: 0.75rem; }
  .areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 1.25rem;
    text-align: center;
    max-width: 300px;
    padding: 0;
  }
  .areas-list li {
    padding: 0.15rem 0;
    border-bottom: none;
    white-space: normal;
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .areas-list li::before { content: none !important; display: none; }
  .areas-list li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--river-blue);
  padding: 7rem 2rem;
  text-align: center;
  color: var(--cream);
}
.cta-section h2 { color: var(--cream); margin-bottom: 0.75rem; }
.cta-section > p {
  color: var(--cream);
  opacity: 0.85;
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0 auto 2.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--tan);
  padding: 1.5rem 2rem 1rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.footer-logo {
  height: 32px;
  width: auto;
  opacity: .75;
  filter: invert(1) sepia(1) saturate(0) brightness(0.35);
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: .55;
  transition: opacity var(--ease);
}
.footer-nav a:hover { opacity: 1; }
.footer-contact {
  display: flex;
  gap: .75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: .7rem;
  color: rgba(0,0,0,.3);
}
.footer-contact a {
  font-size: .7rem;
  color: var(--brown);
  opacity: .45;
  transition: opacity var(--ease);
}
.footer-contact a:hover { opacity: .9; }
.footer-bottom {
  max-width: var(--max-w);
  margin: .75rem auto 0;
  text-align: center;
  font-size: .6rem;
  color: rgba(0,0,0,.25);
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 2rem 4.5rem;
  background: var(--evergreen);
  text-align: center;
  color: var(--cream);
}
.page-hero h1   { color: var(--cream); margin-bottom: 0.75rem; }
.page-hero .sub { color: var(--cream); opacity: 0.85; font-size: 0.92rem; max-width: 500px; margin: 0 auto; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.about-feature-img {
  aspect-ratio: 4/5;
  max-width: 540px;
  margin: 0 auto 3.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--evergreen), var(--sage));
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(67, 55, 41, 0.4);
}
.about-feature-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.about-feature-img img.active {
  opacity: 1;
}
@media (max-width: 640px) {
  .about-feature-img {
    max-width: 100%;
  }
}
.about-body h2 { font-size: 1.85rem; margin: 2.5rem 0 1rem; }
.about-body p  { font-size: 0.92rem; line-height: 1.9; margin-bottom: 1rem; }

.brands-section {
  margin: 3.5rem 0;
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--tan);
  border-bottom: 1px solid var(--tan);
}
.brands-section .eyebrow {
  display: block;
  margin-bottom: 2rem;
}
.brands-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 4rem;
}
.brands-list li {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brown);
  opacity: .55;
  letter-spacing: .04em;
  transition: opacity .25s ease;
}
.brands-list li:hover { opacity: 1; }

/* ============================================================
   INVESTMENT / PRICING PAGE
   ============================================================ */
.packages-section {
  padding: 5rem 2rem;
  background: var(--cream);
}
.package-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 0;
  border-bottom: 1px solid var(--tan);
  align-items: start;
}
.package-row:last-child { border-bottom: none; }
.pkg-info h2  { font-size: 2.25rem; margin-bottom: 1rem; }
.pkg-info p   { font-size: 0.9rem; line-height: 1.85; color: var(--brown); }

.pkg-price {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 300;
  color: var(--evergreen);
  line-height: 1;
  margin-bottom: 1.75rem;
}
.pkg-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--sage);
  vertical-align: middle;
  margin-left: 0.25rem;
}
.pkg-list { margin-bottom: 2.25rem; }
.pkg-list li {
  font-size: 0.85rem;
  color: var(--brown);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(205,196,170,.4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pkg-list li::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--tan);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-simple {
  max-width: 620px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.contact-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  font-size: .75rem;
  color: var(--tan);
}
.contact-bar a {
  font-size: .75rem;
  color: var(--sage);
  transition: color var(--ease);
}
.contact-bar a:hover { color: var(--evergreen); }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--tan);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--brown);
  border-radius: 0;
  appearance: none;
  transition: border-color var(--ease), background var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Contact routing: two-path layout (quick book + wedding inquiry) */
.contact-routing {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.path-card {
  background: var(--cream);
  border: 1px solid var(--tan);
  padding: 3rem 2rem;
  text-align: center;
}
.path-card .eyebrow {
  color: var(--sage);
  margin-bottom: 1rem;
  display: block;
}
.path-card h2 {
  margin-bottom: 1rem;
  color: var(--brown);
  font-size: 2rem;
}
.path-card p {
  color: var(--brown);
  margin: 0 auto 2rem;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}
.contact-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 3rem 0;
  color: var(--sage);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--tan);
}
.contact-divider span { padding: 0 1.5rem; }

.wedding-path-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.wedding-path-header .eyebrow {
  color: var(--sage);
  margin-bottom: 1rem;
  display: block;
}
.wedding-path-header h2 {
  margin-bottom: 1rem;
  color: var(--brown);
  font-size: 2rem;
}
.wedding-path-header p {
  color: var(--brown);
  margin: 0 auto;
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.hb-embed {
  background: var(--cream);
  border: 1px solid var(--tan);
  overflow: hidden;
}
.hb-embed iframe {
  width: 100%;
  min-height: 1200px;
  border: 0;
  display: block;
  background: var(--cream);
}

/* ============================================================
   SCRIPTURE VERSE SECTION — homepage
   ============================================================ */
.verse-section,
.about-body .verse-section {
  padding: 4rem 0;
  margin: 3.5rem 0 0;
  text-align: center;
  border-top: 1px solid var(--tan);
  border-bottom: 1px solid var(--tan);
}
.verse-section .verse-script,
.about-body .verse-section .verse-script {
  font-family: old-man-eloquent, cursive !important;
  font-size: 3.4rem !important;
  line-height: 1.3 !important;
  color: var(--evergreen) !important;
  max-width: 720px;
  margin: 0 auto 1.5rem !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0.01em;
}
.verse-section .verse-ref {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
}
@media (max-width: 640px) {
  .verse-section,
  .about-body .verse-section { padding: 3rem 0; margin-top: 2.5rem; }
  .verse-section .verse-script,
  .about-body .verse-section .verse-script { font-size: 2.2rem !important; }
}

/* ============================================================
   SCRIPT EYEBROW — decorative section accent
   Replaces small-caps .eyebrow for emotional/personal section intros
   ============================================================ */
.script-eyebrow {
  display: block;
  font-family: var(--font-script);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--sage);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 640px) {
  .script-eyebrow { font-size: 1.45rem; }
}

/* ============================================================
   WEDDING INTRO STYLE LINE
   ============================================================ */
.style-line {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--tan);
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--brown);
}
.style-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-right: 0.5rem;
}

/* ============================================================
   TRUST BAND — what every wedding includes
   ============================================================ */
.trust-band {
  background: var(--brown);
  padding: 3.5rem 2rem;
  color: var(--cream);
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: start;
}
.trust-item {
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(247, 245, 241, 0.18);
}
.trust-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}
.trust-item p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--tan);
  max-width: 280px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .trust-band { padding: 3rem 1.25rem; }
  .trust-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .trust-item:not(:last-child)::after {
    display: none;
  }
  .trust-item:not(:last-child) {
    border-bottom: 1px solid rgba(247, 245, 241, 0.18);
    padding-bottom: 2rem;
  }
}

/* ============================================================
   CATEGORY GALLERY PAGES — masonry layout
   ============================================================ */
.gallery-count {
  margin-top: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  opacity: 0.7;
}
.gallery-page {
  padding: 4rem 1.5rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-grid {
  column-count: 3;
  column-gap: 0.75rem;
}
.gallery-grid img {
  width: 100%;
  height: auto;          /* respect the new width/height HTML attrs */
  margin-bottom: 0.75rem;
  display: block;
  break-inside: avoid;
  background: var(--tan); /* placeholder while loading */
  transition: filter .35s ease, transform .5s ease, opacity .5s ease;
  cursor: zoom-in;
  opacity: 0;
}
.gallery-grid img.loaded,
.gallery-grid img[complete] { opacity: 1; }
/* Fallback: even if JS doesn't fire, show after a moment */
@keyframes gallery-img-fade-in { to { opacity: 1; } }
.gallery-grid img { animation: gallery-img-fade-in 0.8s ease forwards 0.2s; }
.gallery-grid img:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}
.gallery-cta {
  text-align: center;
  margin-top: 5rem;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--tan);
}
.gallery-cta h2 {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.gallery-cta .back-link {
  margin-bottom: 2rem;
}
.gallery-cta .back-link a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color var(--ease);
}
.gallery-cta .back-link a:hover { color: var(--evergreen); }

@media (max-width: 900px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 540px) {
  .gallery-page { padding: 2.5rem 1rem 3rem; }
  .gallery-grid { column-count: 1; column-gap: 0.5rem; }
  .gallery-grid img { margin-bottom: 0.5rem; }
  .gallery-cta h2 { font-size: 1.5rem; }
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 8, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  cursor: zoom-out;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 1px solid rgba(247, 245, 241, 0.4);
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.lightbox-close:hover {
  background: rgba(247, 245, 241, 0.15);
  border-color: var(--cream);
}
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--tan);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(247, 245, 241, 0.3);
  color: var(--cream);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(247, 245, 241, 0.15); }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.1rem; }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
}

/* ============================================================
   CATEGORY TILES — pricing portfolio
   ============================================================ */
.category-tiles {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cat-tile {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  text-decoration: none;
  background: var(--brown);
  border: none;
  cursor: pointer;
}
.cat-imgs {
  position: absolute;
  inset: 0;
}
.cat-imgs img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.cat-imgs img.active {
  opacity: 1;
}
/* Dark gradient overlay for label readability */
.cat-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  transition: background .5s ease;
}
.cat-tile:hover::after {
  background: linear-gradient(to top, rgba(67, 82, 57, 0.78) 0%, rgba(67, 82, 57, 0.25) 60%, rgba(67, 82, 57, 0.1) 100%);
}
.cat-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  z-index: 2;
  transition: transform .4s ease, letter-spacing .4s ease;
}
.cat-tile:hover .cat-label {
  transform: translateY(-6px);
  letter-spacing: 0.14em;
}
.cat-tile:hover .cat-imgs img.active {
  transform: scale(1.05);
}
.cat-imgs img {
  transition: opacity 1.2s ease, transform 1.5s ease;
}
@media (max-width: 900px) {
  .category-tiles { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .cat-label { font-size: 1.2rem; bottom: 1rem; letter-spacing: 0.04em; }
  .cat-tile { aspect-ratio: 4/5; }
}
@media (max-width: 500px) {
  .category-tiles { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .cat-tile { aspect-ratio: 4/5; }
  .cat-label { font-size: 0.95rem; bottom: 0.7rem; }
}

/* ============================================================
   WEDDING PORTFOLIO — embedded gallery
   ============================================================ */
.wed-portfolio {
  background: var(--cream);
  padding: 5rem 2rem;
}
.wed-portfolio-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.wp-item {
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.wp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
}
.wp-item:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
  .wed-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .wed-portfolio { padding: 3.5rem 1rem; }
  .wed-portfolio-grid { gap: 0.5rem; }
}

/* ============================================================
   WEDDING FAQ
   ============================================================ */
.faq-section {
  background: var(--white);
  padding: 5rem 2rem;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--tan);
}
.faq-row {
  border-bottom: 1px solid var(--tan);
}
.faq-row summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  color: var(--brown);
  transition: color .25s ease, padding .25s ease;
}
.faq-row summary::-webkit-details-marker { display: none; }
.faq-row summary:hover {
  color: var(--evergreen);
  padding-left: 0.75rem;
}
.faq-row[open] summary {
  color: var(--evergreen);
  padding-left: 0.75rem;
}
.faq-question {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
}
.faq-toggle {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--sage);
  transition: transform .3s ease, background .3s ease;
}
.faq-toggle::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-toggle::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%) scaleY(1);
}
.faq-row[open] .faq-toggle::after {
  transform: translateX(-50%) scaleY(0);
}
.faq-row[open] .faq-toggle::before,
.faq-row[open] .faq-toggle::after,
.faq-row summary:hover .faq-toggle::before,
.faq-row summary:hover .faq-toggle::after {
  background: var(--evergreen);
}
.faq-answer {
  padding: 0 0.25rem 1.6rem;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--brown);
  max-width: 640px;
  animation: addonFade .35s ease both;
}
@media (max-width: 640px) {
  .faq-section { padding: 3.5rem 1.25rem; }
  .faq-question { font-size: 0.92rem; }
  .faq-row summary { padding: 1.15rem 0.15rem; gap: 0.8rem; }
  .faq-row summary:hover,
  .faq-row[open] summary { padding-left: 0.35rem; }
  .faq-answer { font-size: 0.88rem; padding-bottom: 1.3rem; }
}

/* ============================================================
   WHAT TO EXPECT — VERTICAL TIMELINE
   ============================================================ */
.expect-timeline {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  position: relative;
}
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 18px 70px 1fr;
  align-items: start;
  column-gap: 1.5rem;
  padding-bottom: 3rem;
}
.tl-step:last-child { padding-bottom: 0; }

/* Vertical line connecting nodes — drawn through the first column */
.tl-step::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 14px;
  width: 1.5px;
  height: calc(100% + 0px);
  background: var(--tan);
}
.tl-step:last-child::before { display: none; }

/* The circle node on the line */
.tl-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--sage);
  position: relative;
  z-index: 1;
  margin-top: 8px;
  transition: background .35s ease, transform .35s ease;
}
.tl-step:hover .tl-node {
  background: var(--evergreen);
  border-color: var(--evergreen);
  transform: scale(1.15);
}

/* Large display number */
.tl-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--evergreen);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

/* Body content */
.tl-body { padding-top: 0.2rem; }
.tl-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--brown);
}
.tl-body p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--brown);
  max-width: 560px;
  margin: 0;
}

@media (max-width: 640px) {
  .tl-step {
    grid-template-columns: 14px 48px 1fr;
    column-gap: 1rem;
    padding-bottom: 2.25rem;
  }
  .tl-step::before { left: 6px; }
  .tl-node {
    width: 11px;
    height: 11px;
    margin-top: 6px;
  }
  .tl-num { font-size: 1.9rem; }
  .tl-body h3 { font-size: 1.15rem; }
  .tl-body p { font-size: 0.88rem; line-height: 1.75; }
}

/* ============================================================
   WEDDING ADD-ONS — ACCORDION
   ============================================================ */
.addons-section {
  background: var(--cream);
  padding: 5rem 2rem;
}
.addons-list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--tan);
}
.addon-row {
  border-bottom: 1px solid var(--tan);
}
.addon-row summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--brown);
  transition: color .25s ease, padding .25s ease;
}
.addon-row summary::-webkit-details-marker { display: none; }
.addon-row summary:hover {
  color: var(--evergreen);
  padding-left: 0.75rem;
}
.addon-row[open] summary {
  color: var(--evergreen);
  padding-left: 0.75rem;
}
.addon-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}
.addon-meta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.addon-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--evergreen);
  font-weight: 400;
}
.addon-chevron {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.addon-chevron::before,
.addon-chevron::after {
  content: '';
  position: absolute;
  background: var(--sage);
  transition: transform .3s ease, background .3s ease;
}
.addon-chevron::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}
.addon-chevron::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%) scaleY(1);
}
.addon-row[open] .addon-chevron::after {
  transform: translateX(-50%) scaleY(0);
}
.addon-row[open] .addon-chevron::before,
.addon-row[open] .addon-chevron::after {
  background: var(--evergreen);
}
.addon-row summary:hover .addon-chevron::before,
.addon-row summary:hover .addon-chevron::after {
  background: var(--evergreen);
}
.addon-detail {
  padding: 0 0.25rem 1.5rem;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--brown);
  max-width: 580px;
  animation: addonFade .35s ease both;
}
@keyframes addonFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
  .addons-section { padding: 3.5rem 1.25rem; }
  .addon-name { font-size: 1.1rem; }
  .addon-price { font-size: 1.05rem; }
  .addon-row summary { padding: 1.1rem 0.15rem; gap: 0.6rem; }
  .addon-row summary:hover,
  .addon-row[open] summary { padding-left: 0.35rem; }
  .addon-meta { gap: 0.65rem; }
  .addon-detail { font-size: 0.88rem; padding-bottom: 1.25rem; }
}

/* Dedicated wedding inquiry page */
.inquiry-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.inquiry-back {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.inquiry-back a {
  color: var(--sage);
  font-weight: 600;
  transition: color var(--ease);
}
.inquiry-back a:hover { color: var(--evergreen); }
@media (max-width: 640px) {
  .inquiry-page { padding: 3rem 1.25rem 4rem; }
}
@media (max-width: 640px) {
  .contact-routing { padding: 3rem 1.25rem 4rem; }
  .path-card { padding: 2.25rem 1.25rem; }
  .path-card h2,
  .wedding-path-header h2 { font-size: 1.6rem; }
  .hb-embed iframe { min-height: 1400px; }
}

/* ============================================================
   WEDDINGS SERVICE PAGE
   ============================================================ */
.wedding-intro {
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}
.wedding-intro h2  { margin-bottom: 1rem; }
.wedding-intro p   { font-size: 0.92rem; color: var(--brown); line-height: 1.9; }

/* Full-bleed cycling wedding feature photo + CTA */
.wedding-feature {
  margin: 0 0 5rem;
  padding: 0;
}
.wedding-feature-img {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 2/1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--evergreen), var(--sage));
}
.wedding-feature-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.wedding-feature-img img.active {
  opacity: 1;
}
.wedding-feature-cta {
  text-align: center;
  padding: 2.5rem 1rem 0;
}
@media (max-width: 640px) {
  .wedding-feature-img { aspect-ratio: 4/3; }
  .wedding-feature { margin-bottom: 3.5rem; }
}

.wedding-packages {
  background: var(--white);
  padding: 5rem 2rem;
}
.wp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.wp-card {
  border: 1px solid var(--tan);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.wp-card h3  { font-size: 1.35rem; margin-bottom: 0.5rem; }
.wp-card .wp-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--evergreen);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.wp-card ul { margin-bottom: 2rem; flex: 1; }
.wp-card ul li {
  font-size: 0.83rem;
  color: var(--brown);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(205,196,170,.35);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.wp-card ul li::before {
  content: '—';
  color: var(--tan);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ---- Tablet (≤1024px) ----------------------------------- */
@media (max-width: 1024px) {
  .svc-row  { grid-template-columns: 2.5rem 1fr auto 1.5rem; }
  .svc-desc { display: none; }
}

/* ---- Tablet portrait (≤900px) -------------------------- */
@media (max-width: 900px) {
  .nav-links, .nav-book { display: none; }
  .nav-toggle { display: flex; }

  .hero-content h1 { font-size: 3rem; }

  .about-split { grid-template-columns: 1fr; }
  .split-copy  { padding: 3.5rem 2rem; }
  .split-photo { min-height: 380px; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }

  .package-row { grid-template-columns: 1fr; gap: 2rem; }

  .wp-grid { grid-template-columns: 1fr 1fr; }

  .strip-track img { height: 280px; }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-contact { justify-content: center; }
}

/* ---- Mobile (≤640px) ------------------------------------ */
@media (max-width: 640px) {
  :root { --nav-h: 68px; }

  .hero-content h1  { font-size: 2.2rem; }
  .hero-eyebrow     { font-size: .6rem; }
  .hero-sub         { font-size: .85rem; }
  .hero-actions     { flex-direction: column; align-items: center; }
  .btn              { max-width: 280px; width: 100%; }

  .strip-track img  { height: 200px; }

  .svc-row   { grid-template-columns: 2rem 1fr auto 1.5rem; gap: .75rem; padding: 1.1rem .5rem; }
  .svc-name  { font-size: 1.1rem; }
  .svc-price { font-size: .7rem; }
  .svc-row:hover { padding-left: 1rem; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }

  .wp-grid { grid-template-columns: 1fr; }

  .package-row { padding: 3rem 1.25rem; }

  .tq-slide p { font-size: .9rem; }

  .brands-list { gap: 1.5rem 2.5rem; }
  .brands-list li { font-size: 1.2rem; }

  .about-body { padding: 3rem 1.25rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { gap: 1.25rem; padding-bottom: 1.25rem; }
  .footer-logo  { height: 26px; }
  .footer-nav   { gap: 1.25rem; }

  .page-hero    { padding: 5rem 1.5rem 3rem; }
  .page-hero h1 { font-size: 2.4rem; }

  .section-hd h2 { font-size: 1.8rem; }
}

/* ============================================================
   SIGNATURE 1 — Hand-drawn ink underline under section H2s
   ============================================================ */
main h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.55rem;
}
main h2::after {
  content: '';
  position: absolute;
  left: 6%; right: 6%; bottom: -0.1rem;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 14' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 60 2, 120 7 T 240 6 T 298 8' fill='none' stroke='%23435239' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.85;
}
/* Opt-out: cards, package boxes, accordion items, etc. where underline would be busy */
.wp-card h2::after, .wp-card h3::after,
.pkg-info h2::after, .pkg-info h3::after,
.path-card h2::after, .path-card h3::after,
.trust-item h2::after, .trust-item h3::after,
.cat-tile h2::after, .cat-tile h3::after,
.gallery-cta h2::after, .gallery-cta h3::after,
.wedding-path-header h2::after,
.section-hd h3::after, main h3::after,
.faq-row h2::after, .addon-row h2::after,
.split-copy h2::after,
.tq-slide h2::after,
.cta-section h2::after,
.testimonials-section .section-hd h2::after { display: none; }
/* Dark-bg sections — use cream underline instead of evergreen */
.page-hero h2::after,
.testimonials-section h2::after,
.cta-section h2::after,
.trust-band h2::after,
section[style*="background:var(--evergreen)"] h2::after,
section[style*="background:var(--brown)"] h2::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 14' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 60 2, 120 7 T 240 6 T 298 8' fill='none' stroke='%23F7F5F1' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ============================================================
   ANIMATION 1 — Oversized hero typography
   ============================================================ */
.hero-content h1 {
  font-size: clamp(3rem, 8.5vw, 7.5rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.01em;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.02;
}

/* ============================================================
   ANIMATION 2 — Ken Burns slow zoom on active hero slide
   ============================================================ */
@keyframes ken-burns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-slide.active {
  animation: ken-burns 32s ease-out forwards;
}

/* ============================================================
   ANIMATION 3 — Scroll-triggered fade-up section reveals
   ============================================================ */
.reveal-section {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal-section.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Gallery pages: never hide photos via the reveal animation (they're too tall for the trigger to fire reliably) */
.gallery-page.reveal-section,
section.gallery-page {
  opacity: 1 !important;
  transform: none !important;
}
/* Reduced motion: respect user preference */
@media (prefers-reduced-motion: reduce) {
  .reveal-section { opacity: 1; transform: none; transition: none; }
  .hero-slide.active { animation: none; }
}

/* ============================================================
   ANIMATION 4 — Parallax feature photos
   ============================================================ */
.parallax-bg {
  will-change: transform;
}

/* ============================================================
   ANIMATION 7 — Gallery photo hover (scale + caption reveal)
   ============================================================ */
.gallery-grid img {
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter 0.5s !important;
}
.gallery-grid img:hover {
  transform: scale(1.04);
  filter: brightness(1.04);
}

/* ============================================================
   ABOUT PAGE CTA BUTTONS — aligned, equal width
   ============================================================ */
.about-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
.about-cta-buttons .btn {
  min-width: 180px;
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  .about-cta-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
  .about-cta-buttons .btn { width: 100%; max-width: 280px; }
}

/* ============================================================
   MOBILE — condense oversized elements site-wide
   ============================================================ */
@media (max-width: 640px) {
  /* Lightbox controls smaller on phone */
  .lightbox-close { width: 36px; height: 36px; font-size: 1.1rem; top: 1rem; right: 1rem; }
  .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 1rem; }
  .lightbox-counter { font-size: 0.6rem; bottom: 1rem; }
  .lightbox img { max-width: 96vw; max-height: 82vh; }

  /* Tighter section padding on phone */
  section[class*="section"]:not(.hero),
  .section,
  .wedding-intro,
  .wedding-packages,
  .addons-section,
  .faq-section,
  .verse-section,
  .areas-section,
  .cta-section,
  .trust-band { padding: 3rem 1.25rem; }

  /* Page hero padding tighter */
  .page-hero { padding: 4rem 1.25rem 2.5rem; }

  /* Headings tighter on phone */
  main h2 { padding-bottom: 0.4rem; }
  main h2::after { height: 9px; }

  /* Tile auto-cycle photos: ensure they cover */
  .cat-imgs img { object-fit: cover; }
}
