:root {
  --cream: #fbf5ec;
  --ivory: #fffaf3;
  --blush: #d9a6a1;
  --rose: #b77670;
  --sage: #9caf94;
  --soft-sage: #dfe8d8;
  --pale-sage: #eef4e9;
  --deep-green: #3d5448;
  --gold: #c7a35a;
  --charcoal: #2e2a25;
  --brown: #5c4638;
  --line: rgba(92, 70, 56, 0.18);
  --shadow: 0 22px 60px rgba(46, 42, 37, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 245, 236, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--deep-green), var(--sage));
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  box-shadow: 0 8px 24px rgba(61, 84, 72, 0.16);
}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--deep-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--deep-green);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 166, 161, 0.32), transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(199, 163, 90, 0.20), transparent 30%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep-green);
  line-height: 1.06;
}

h1,
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(3.15rem, 7vw, 5.9rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.hero-text {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: 1.12rem;
  color: var(--brown);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ivory);
  background: var(--deep-green);
  box-shadow: 0 14px 32px rgba(61, 84, 72, 0.16);
}

.button.primary.light {
  background: var(--ivory);
  color: var(--deep-green);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 250, 243, 0.68);
  color: var(--deep-green);
}

.hero-card {
  background: rgba(255, 250, 243, 0.7);
  border: 1px solid rgba(199, 163, 90, 0.28);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--deep-green);
  text-align: center;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(217, 166, 161, 0.42), rgba(255, 250, 243, 0.72)),
    repeating-linear-gradient(45deg, rgba(199, 163, 90, 0.18) 0 12px, transparent 12px 24px);
  border: 1px dashed rgba(92, 70, 56, 0.28);
}

.image-placeholder span {
  max-width: 260px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
}

.hero-image {
  min-height: 520px;
}

.hero-note {
  display: grid;
  gap: 2px;
  padding: 18px 8px 4px;
  color: var(--brown);
}

.hero-note strong {
  color: var(--deep-green);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.split p:last-child {
  margin: 0;
  color: var(--brown);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 650px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--brown);
}

.cards {
  display: grid;
  gap: 20px;
}

.four-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.step,
.contact-card,
.inquiry-form {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 38px rgba(46, 42, 37, 0.06);
}

.service-card {
  padding: 26px;
  min-height: 320px;
}

.service-card p {
  color: var(--brown);
}

.card-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
}

.accent-card {
  background: linear-gradient(135deg, var(--pale-sage), rgba(255, 250, 243, 0.88));
  color: var(--charcoal);
  border-color: rgba(156, 175, 148, 0.42);
}

.accent-card h3,
.accent-card p {
  color: var(--brown);
}

.accent-card .card-number {
  color: var(--gold);
}

.price {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(199, 163, 90, 0.18);
  color: var(--deep-green);
  font-weight: 700;
}

.pricing-note {
  margin: 24px 0 0;
  color: var(--brown);
  font-size: 0.95rem;
}

.process {
  background: var(--ivory);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  padding: 24px;
}

.step span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 50%;
  background: rgba(217, 166, 161, 0.3);
  color: var(--deep-green);
  font-weight: 800;
}

.step p {
  color: var(--brown);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-item {
  min-height: unset;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.about {
  background:
    linear-gradient(180deg, var(--cream), rgba(217, 166, 161, 0.16));
}

.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  min-height: 570px;
}

.about-copy p:not(.eyebrow) {
  color: var(--brown);
  font-size: 1.03rem;
}

.text-link,
.footer-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--deep-green);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.cta-band {
  padding: 78px 0;
  background: linear-gradient(135deg, var(--pale-sage), rgba(217, 166, 161, 0.18));
  color: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-content {
  display: grid;
  grid-template-columns: 0.95fr 1fr auto;
  gap: 34px;
  align-items: center;
}

.cta-content h2 {
  color: var(--deep-green);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-content p {
  color: var(--brown);
  margin: 0;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  align-items: start;
}

.contact-card {
  margin-top: 28px;
  padding: 24px;
}

.contact-card p {
  margin: 0 0 18px;
  color: var(--brown);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.inquiry-form {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--deep-green);
  font-size: 0.88rem;
  font-weight: 700;
}

.inquiry-form .full,
.inquiry-form button,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  background: #fffdf8;
  color: var(--charcoal);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--brown);
  font-size: 0.82rem;
}

.site-footer {
  padding: 46px 0;
  color: var(--charcoal);
  background: var(--soft-sage);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}

.footer-brand .brand-text,
.site-footer h3,
.site-footer a {
  color: var(--deep-green);
}

.site-footer p {
  color: var(--brown);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .about-grid,
  .inquiry-grid,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .four-card-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-item.wide {
    grid-column: span 1;
  }

  .cta-content {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 72px 0;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--ivory);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .hero-image,
  .about-image {
    min-height: 380px;
  }

  .four-card-grid,
  .timeline,
  .gallery-grid,
  .footer-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .inquiry-form .full,
  .inquiry-form button,
  .form-note {
    grid-column: auto;
  }
}


/* CapeNTiara clean package additions */
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}

.footer-logo {
  width: 230px;
  height: auto;
  margin-bottom: 10px;
}

.image-placeholder.has-image {
  border-style: solid;
  background: var(--ivory);
  padding: 0;
}

.image-placeholder.has-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.image-placeholder.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(61, 84, 72, 0.28));
  pointer-events: none;
}

.image-placeholder.has-image span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: none;
  width: fit-content;
  color: var(--deep-green);
  background: rgba(255, 250, 243, 0.86);
  backdrop-filter: blur(10px);
}

.hero-image.has-image::after,
.about-image.has-image::after {
  background: linear-gradient(180deg, transparent 58%, rgba(61, 84, 72, 0.18));
}

.page-hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 166, 161, 0.30), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(199, 163, 90, 0.18), transparent 28%),
    var(--cream);
}

.page-hero .container {
  max-width: 930px;
}

.page-hero p:not(.eyebrow) {
  color: var(--brown);
  font-size: 1.1rem;
  max-width: 760px;
}

/* About page spacing: keep the founder intro from feeling like a giant blank scroll gap. */
.about-page-hero {
  padding-bottom: 42px;
}

.about-page-main {
  padding-top: 36px;
}

.about-page-hero h1 {
  max-width: 980px;
}

@media (max-width: 720px) {
  .about-page-hero {
    padding-bottom: 30px;
  }

  .about-page-main {
    padding-top: 26px;
  }
}

.menu-preview-grid,
.creative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.menu-preview-card,
.creative-card,
.menu-section-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 38px rgba(46, 42, 37, 0.06);
  overflow: hidden;
}

.menu-preview-card .image-placeholder,
.menu-section-card .image-placeholder,
.creative-card .image-placeholder {
  border-radius: 0;
  border: 0;
  min-height: 240px;
}

.menu-preview-card-content,
.menu-section-content,
.creative-card-content {
  padding: 26px;
}

.menu-preview-card-content p,
.menu-section-content p,
.creative-card-content p {
  color: var(--brown);
}

.menu-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.menu-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.menu-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.menu-item h4 {
  margin: 0 0 4px;
  color: var(--deep-green);
  font-size: 1rem;
}

.menu-item .starting-price {
  display: inline-flex;
  margin: 4px 0 8px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--deep-green);
  background: rgba(199, 163, 90, 0.20);
  font-weight: 800;
  font-size: 0.86rem;
}

.pricing-box {
  margin-top: 44px;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 163, 90, 0.36);
  background: rgba(255, 250, 243, 0.72);
}

.pricing-box p {
  margin: 0;
  color: var(--brown);
}

.color-story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.color-story {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid var(--line);
}

.swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.swatches span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}

.gallery-page-grid .image-placeholder {
  min-height: unset;
  height: 100%;
}

.gallery-page-grid .feature {
  grid-row: span 2;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.thank-you-card {
  width: min(760px, calc(100% - 40px));
  padding: 46px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card .footer-logo {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .menu-preview-grid,
  .creative-grid,
  .color-story-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    height: 46px;
  }
  .menu-preview-grid,
  .creative-grid,
  .color-story-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }
  .gallery-page-grid .feature {
    grid-row: span 1;
  }
}

/* ==========================================================================
   Luxury Gallery Curation Effect (Safe & Enhanced)
   ========================================================================== */

/* 1. Prepares the inner image to smoothly transition on hover */
.gallery-item.image-placeholder img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
  transform: scale(1.001); /* Eliminates pixel jitter */
}

/* 2. Prepares the elegant lower shadow vignette to deepen */
.gallery-item.image-placeholder::after {
  transition: background 0.5s ease !important;
  background: linear-gradient(180deg, transparent 40%, rgba(61, 84, 72, 0.35)) !important;
  z-index: 1;
}

/* 3. Prepares the category text span to lift seamlessly */
.gallery-item.image-placeholder span {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s ease !important;
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(46, 42, 37, 0.04);
}

/* ==========================================================================
   Hover States (Desktop Only - Prevents Mobile Sticky Hover Glitches)
   ========================================================================== */
@media (min-width: 981px) {
  /* Gently zooms the installation photo */
  .gallery-item.image-placeholder:hover img {
    transform: scale(1.05);
  }

  /* Deepens the rich green vignette for better text contrast */
  .gallery-item.image-placeholder:hover::after {
    background: linear-gradient(180deg, transparent 30%, rgba(61, 84, 72, 0.65)) !important;
  }

  /* Lifts your luxury label beautifully */
  .gallery-item.image-placeholder:hover span {
    transform: translateY(-6px);
    background: var(--ivory) !important; /* Polishes contrast */
    color: var(--deep-green) !important;
  }
}


/* ============================================================================
   Dynamic Gallery Page
   Keeps real event photos visible while adding gentle movement and lightbox view.
   ============================================================================ */
.gallery-page-section {
  background: linear-gradient(180deg, var(--cream), rgba(217, 166, 161, 0.12));
}

.gallery-note {
  max-width: 760px;
  margin: 0 0 34px;
}

.gallery-note p:not(.eyebrow) {
  color: var(--brown);
}

.gallery-masonry {
  column-width: 310px;
  column-gap: 22px;
}

.gallery-masonry-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  break-inside: avoid;
}

.gallery-lightbox-trigger {
  width: 100%;
  display: block;
  padding: 0;
  border: 1px solid rgba(199, 163, 90, 0.24);
  border-radius: 28px;
  overflow: hidden;
  background: var(--ivory);
  box-shadow: 0 18px 42px rgba(46, 42, 37, 0.09);
  cursor: zoom-in;
}

.gallery-lightbox-trigger img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 700ms cubic-bezier(0.25, 1, 0.5, 1), filter 700ms ease;
}

.gallery-masonry-item figcaption {
  margin: 10px 10px 0;
  color: var(--brown);
  font-size: 0.88rem;
  font-weight: 700;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(46, 42, 37, 0.82);
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  max-width: min(1060px, 92vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox p {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.92);
  color: var(--deep-green);
  font-weight: 800;
  text-align: center;
}

.gallery-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 243, 0.5);
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.92);
  color: var(--deep-green);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

@media (hover: hover) and (min-width: 981px) {
  .gallery-lightbox-trigger:hover img {
    transform: scale(1.025);
    filter: saturate(1.04) contrast(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .gallery-lightbox-trigger img {
    transition: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .gallery-masonry {
    column-width: auto;
    column-count: 1;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox p {
    width: calc(100% - 36px);
    white-space: normal;
  }
}


/* ============================================================================
   Homepage Gallery Preview: photo-friendly collage
   Shows more of real phone/event photos and keeps labels off the work.
   ============================================================================ */
.gallery-preview-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 22px;
  align-items: start;
}

.gallery-preview-collage .gallery-item {
  display: block;
  min-height: 0;
  padding: 10px 10px 14px;
  border: 1px solid rgba(199, 163, 90, 0.24);
  border-radius: 30px;
  border-style: solid;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 18px 42px rgba(46, 42, 37, 0.08);
  text-align: left;
}

.gallery-preview-collage .gallery-item::after {
  display: none;
}

.gallery-preview-collage .gallery-item img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  background: var(--cream);
}

.gallery-preview-collage .gallery-item span {
  position: static;
  display: inline-flex;
  margin: 12px 8px 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--deep-green);
  box-shadow: none;
  backdrop-filter: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gallery-preview-collage .preview-balloons,
.gallery-preview-collage .preview-details {
  grid-column: span 7;
}

.gallery-preview-collage .preview-event,
.gallery-preview-collage .preview-porch {
  grid-column: span 5;
}

@media (hover: hover) and (min-width: 981px) {
  .gallery-preview-collage .gallery-item:hover img {
    transform: translateY(-3px) scale(1.012);
  }

  .gallery-preview-collage .gallery-item:hover span {
    transform: none;
    background: transparent !important;
  }
}

@media (max-width: 900px) {
  .gallery-preview-collage .gallery-item {
    grid-column: 1 / -1;
  }
}

/* ============================================================================
   Final visual polish + cleanup
   ============================================================================ */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -60%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg) translateX(0);
  transition: transform 620ms ease;
  pointer-events: none;
}

.button:hover::after,
.button:focus-visible::after {
  transform: skewX(-18deg) translateX(390%);
}

.section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(217, 166, 161, 0.55));
}

.menu-preview-card .image-placeholder.has-image::after,
.menu-section-card .image-placeholder.has-image::after {
  display: none;
}

.menu-preview-card,
.menu-section-card,
.creative-card {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.menu-preview-card img,
.menu-section-card img,
.creative-card img {
  transition: transform 480ms cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) and (min-width: 981px) {
  .menu-preview-card:hover,
  .menu-section-card:hover,
  .creative-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 163, 90, 0.44);
    box-shadow: 0 24px 56px rgba(46, 42, 37, 0.12);
  }

  .menu-preview-card:hover img,
  .menu-section-card:hover img,
  .creative-card:hover img {
    transform: scale(1.018);
  }
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: rgba(199, 163, 90, 0.78);
  box-shadow: 0 0 0 4px rgba(199, 163, 90, 0.16);
}

.gallery-preview-collage .gallery-item {
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.gallery-preview-collage .gallery-item img {
  transition: transform 560ms cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-preview-collage .gallery-item span {
  font-size: clamp(1rem, 1.15vw, 1.28rem);
  letter-spacing: 0.065em;
  line-height: 1.1;
}

@media (hover: hover) and (min-width: 981px) {
  .gallery-preview-collage .gallery-item:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 163, 90, 0.52);
    box-shadow: 0 28px 64px rgba(46, 42, 37, 0.14);
  }

  .gallery-preview-collage .gallery-item:hover img {
    transform: scale(1.04);
  }
}

.process-mini {
  margin-top: 18px;
  border: 1px solid rgba(199, 163, 90, 0.28);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.74);
  overflow: hidden;
}

.process-mini summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 800;
  color: var(--deep-green);
}

.mini-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 18px 18px;
}

.mini-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(199, 163, 90, 0.16);
  color: var(--brown);
  font-weight: 800;
  font-size: 0.88rem;
}

@media (prefers-reduced-motion: reduce) {
  .nav-links a::after,
  .button::after,
  .menu-preview-card,
  .menu-section-card,
  .creative-card,
  .gallery-preview-collage .gallery-item,
  .gallery-preview-collage .gallery-item img,
  .menu-preview-card img,
  .menu-section-card img,
  .creative-card img {
    transition: none !important;
  }
}

/* ==========================================================================
   Final tweak: balanced homepage gallery preview + menu inquiry links
   ========================================================================== */
.gallery-preview-collage {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.gallery-preview-collage .gallery-item,
.gallery-preview-collage .preview-balloons,
.gallery-preview-collage .preview-event,
.gallery-preview-collage .preview-porch,
.gallery-preview-collage .preview-details {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-preview-collage .gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.gallery-preview-collage .gallery-item span {
  margin-top: 14px;
  font-size: clamp(0.9rem, 0.95vw, 1.05rem);
}

@media (max-width: 980px) {
  .gallery-preview-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .gallery-preview-collage {
    grid-template-columns: 1fr;
  }
}

.menu-item-actions {
  margin-top: 16px;
}

.menu-item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(199, 163, 90, 0.36);
  background: rgba(255, 250, 243, 0.72);
  color: var(--deep-green);
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-item-link::after {
  content: "→";
  transform: translateX(0);
  transition: transform 180ms ease;
}

.menu-item-link:hover,
.menu-item-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(199, 163, 90, 0.68);
  background: var(--ivory);
  box-shadow: 0 12px 28px rgba(46, 42, 37, 0.10);
}

.menu-item-link:hover::after,
.menu-item-link:focus-visible::after {
  transform: translateX(3px);
}


/* ============================================================================
   Final v3 refinements: cleaner hero + balanced gallery thumbnails
   ============================================================================ */
@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 56px;
  }
}

.hero-card {
  padding: 14px;
}

.hero-image {
  min-height: clamp(560px, 52vw, 700px);
}

.hero-image.has-image::after {
  display: none;
}

/* Homepage gallery preview: keep all four previews visually balanced. */
.gallery-preview-collage {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.gallery-preview-collage .gallery-item,
.gallery-preview-collage .preview-balloons,
.gallery-preview-collage .preview-event,
.gallery-preview-collage .preview-porch,
.gallery-preview-collage .preview-details {
  grid-column: auto;
  height: 100%;
}

.gallery-preview-collage .gallery-item img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* Full gallery: uniform thumbnails; click opens full image in the lightbox. */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  column-width: unset;
  column-gap: unset;
}

.gallery-masonry-item {
  display: flex;
  flex-direction: column;
  width: auto;
  margin: 0;
  break-inside: auto;
}

.gallery-lightbox-trigger {
  aspect-ratio: 4 / 3;
}

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

.gallery-masonry-item figcaption {
  min-height: 2.8em;
}

@media (max-width: 980px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .gallery-preview-collage,
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 460px;
  }
}

/* ============================================================================
   Final v4 refinement: Services Menu jump cards
   ============================================================================ */
.services-hero .container {
  max-width: 1040px;
}

.services-hero p:not(.eyebrow) {
  max-width: 720px;
}

.category-jump-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.jump-card {
  position: relative;
  display: block;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(199, 163, 90, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 12%, rgba(199, 163, 90, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(251, 245, 236, 0.86));
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(46, 42, 37, 0.06);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.jump-card::after {
  content: "→";
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.25rem;
  transition: transform 220ms ease;
}

.jump-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(217, 166, 161, 0.22);
  color: var(--deep-green);
  font-weight: 900;
  font-size: 0.86rem;
}

.jump-card h3 {
  margin-bottom: 10px;
  color: var(--deep-green);
  font-size: 1.08rem;
}

.jump-card p {
  margin: 0;
  color: var(--brown);
  font-size: 0.95rem;
}

.menu-section-card {
  scroll-margin-top: 108px;
}

.services-hero-actions {
  margin-top: 30px;
}

@media (hover: hover) and (min-width: 981px) {
  .jump-card:hover,
  .jump-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(199, 163, 90, 0.52);
    box-shadow: 0 24px 56px rgba(46, 42, 37, 0.12);
    outline: none;
  }

  .jump-card:hover::after,
  .jump-card:focus-visible::after {
    transform: translateX(4px);
  }
}

@media (max-width: 980px) {
  .category-jump-row {
    grid-template-columns: 1fr;
  }

  .jump-card {
    min-height: auto;
  }
}
