/* ============================================================
   MyBalloons — Global Design System
   Palette: Warm ivory, deep rose, champagne gold, charcoal
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --ivory:        #FAF7F2;
  --ivory-dark:   #F2ECE3;
  --rose:         #C5626A;
  --rose-light:   #E8A0A5;
  --rose-pale:    #F5E6E7;
  --gold:         #C9A96E;
  --gold-light:   #E8D5B0;
  --charcoal:     #2C2320;
  --charcoal-mid: #5C4E49;
  --warm-grey:    #9E8E88;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --shadow-soft: 0 4px 24px rgba(30,40,28,0.08);
  --shadow-card: 0 8px 40px rgba(30,40,28,0.12);
  --shadow-hover: 0 16px 60px rgba(30,40,28,0.18);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --max-w: 1280px;
  --max-w-narrow: 760px;
  --max-w-mid: 1040px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
h5 { font-size: 1.1rem; font-weight: 500; }

p { font-size: 1rem; color: var(--charcoal-mid); line-height: 1.75; }
.lead { font-size: 1.15rem; line-height: 1.8; }

/* ---- Layout Utilities ---- */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container--narrow { max-width: var(--max-w-narrow); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.container--mid { max-width: var(--max-w-mid); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: var(--space-xl); }
.section--sm { padding-block: var(--space-lg); }
.section--lg { padding-block: var(--space-2xl); }

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1.25rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
/* At very top — transparent, white text (for hero pages) */
.site-nav:not(.scrolled) {
  background: transparent;
}
.site-nav:not(.scrolled) .nav-logo {
  color: var(--white);
}
.site-nav:not(.scrolled) .nav-logo span {
  color: rgba(255,255,255,0.75);
}
.site-nav:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.85);
}
.site-nav:not(.scrolled) .nav-links a:hover {
  color: var(--white);
}
.site-nav:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: var(--white) !important;
  backdrop-filter: blur(8px);
}
.site-nav:not(.scrolled) .nav-cta:hover {
  background: var(--white) !important;
  color: var(--rose) !important;
}
.site-nav:not(.scrolled) .nav-toggle span {
  background: var(--white);
}
/* Scrolled — ivory background */
.site-nav.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44,35,32,0.08);
  padding-block: 0.9rem;
}
/* Non-hero pages (page-hero class instead of hero) get solid nav always */
body.nav-solid .site-nav:not(.scrolled) {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
}
body.nav-solid .site-nav:not(.scrolled) .nav-logo { color: var(--charcoal); }
body.nav-solid .site-nav:not(.scrolled) .nav-logo span { color: var(--rose); }
body.nav-solid .site-nav:not(.scrolled) .nav-links a { color: var(--charcoal-mid); }
body.nav-solid .site-nav:not(.scrolled) .nav-cta {
  background: var(--rose) !important;
  border-color: var(--rose) !important;
  color: var(--white) !important;
  backdrop-filter: none;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  transition: color var(--transition-fast);
}
.nav-logo span { color: var(--rose); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color var(--transition-fast);
}
.nav-links a:hover { color: var(--rose); }
.nav-links a.active { color: var(--charcoal); }
.nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--rose);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}
.nav-cta:hover { background: var(--charcoal) !important; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}
.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); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 99;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: color var(--transition-fast);
}
.mobile-menu a:hover { color: var(--rose); }
.mobile-menu-small {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
.mobile-menu-small a { font-size: 0.85rem !important; font-family: var(--font-body) !important; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--rose);
  color: var(--white);
  border: 1.5px solid var(--rose);
}
.btn--primary:hover { background: var(--charcoal); border-color: var(--charcoal); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn--outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline-light:hover { background: var(--white); color: var(--charcoal); }
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn--gold:hover { background: var(--charcoal); border-color: var(--charcoal); transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 2.6rem; font-size: 0.85rem; }
.btn--sm { padding: 0.65rem 1.4rem; font-size: 0.75rem; }

/* ---- Hero ---- */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C2320 0%, #4A2D2A 50%, #2C2320 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,35,32,0.3) 0%, rgba(44,35,32,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 900px;
}
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s both;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.15s both;
}
.hero h1 em { font-style: italic; color: var(--rose-light); }
.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.3s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ---- Section Headings ---- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}
.section-heading { margin-bottom: 1rem; }
.section-sub { max-width: 520px; color: var(--charcoal-mid); }
.section-header { margin-bottom: var(--space-md); }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-inline: auto; }

/* ---- Divider ---- */
.divider {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.divider.center { margin-inline: auto; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory-dark);
  position: relative;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-pale), var(--gold-light));
  color: var(--rose);
  font-size: 3rem;
}
.card-body { padding: 1.5rem; }
.card-body h4 { margin-bottom: 0.4rem; }
.card-body p { font-size: 0.9rem; margin-bottom: 1rem; }
.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.5rem;
}

/* ---- Grid Layouts ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }

/* ---- Forms ---- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
}
.form-control {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--rose-light);
  box-shadow: 0 0 0 3px rgba(197,98,106,0.1);
}
.form-control.error { border-color: var(--rose); }
.form-error { font-size: 0.8rem; color: var(--rose); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-full { grid-column: 1 / -1; }
.form-hint { font-size: 0.78rem; color: var(--warm-grey); }
.form-section { margin-bottom: 2rem; }
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ivory-dark);
}

/* Checkbox & Radio */
.form-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.form-check input { accent-color: var(--rose); width: 16px; height: 16px; }
.form-check-label { font-size: 0.9rem; color: var(--charcoal-mid); }
.form-checks { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--charcoal);
  padding-block: 1.25rem;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-pale), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rose);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 500; font-size: 0.9rem; }
.testimonial-meta { font-size: 0.78rem; color: var(--warm-grey); }

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--ivory-dark);
}
/* Support both class naming conventions */
.faq-question,
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  cursor: pointer;
  transition: color var(--transition-fast);
  line-height: 1.4;
}
.faq-question:hover,
.faq-trigger:hover { color: var(--rose); }
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--rose);
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }
.faq-item.open .faq-icon { background: var(--rose); color: var(--white); border-color: var(--rose); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

/* Answer panels — JS controls max-height directly */
.faq-answer,
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-answer-inner,
.faq-body p,
.faq-body > * {
  padding-bottom: 1.25rem;
  color: var(--charcoal-mid);
  line-height: 1.85;
  margin: 0;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--ivory-dark);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,35,32,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { color: var(--white); width: 32px; height: 32px; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22,18,17,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 900px; max-height: 90vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  background: none; border: none;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  background: none; border: none;
  padding: 1rem;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ---- Feature Strip ---- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.feature-strip-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--ivory-dark);
  text-align: center;
}
.feature-strip-item:last-child { border-right: none; }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.feature-strip-item h5 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.35rem; }
.feature-strip-item p { font-size: 0.85rem; color: var(--warm-grey); }

/* ---- Image + Text Split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.split.reverse .split-img { order: 2; }
.split.reverse .split-content { order: 1; }
.split-img { aspect-ratio: 4/5; overflow: hidden; background: var(--ivory-dark); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--gold-light) 100%);
  min-height: 480px;
  font-size: 4rem;
}
.split-content { padding: clamp(2rem, 6vw, 5rem); }

/* ---- Badge ---- */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.badge--rose { background: var(--rose-pale); color: var(--rose); }
.badge--gold { background: var(--gold-light); color: #7A5C20; }
.badge--charcoal { background: var(--charcoal); color: var(--white); }

/* ---- Breadcrumb ---- */
/* ---- Breadcrumb Bar ---- */
.breadcrumb-bar {
  background: var(--ivory);
  border-bottom: 1px solid var(--ivory-dark);
  padding: 0.6rem 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.78rem;
  color: var(--warm-grey);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li + li::before {
  content: '/';
  margin: 0 0.5rem;
  color: var(--ivory-dark);
  font-size: 0.7rem;
}
.breadcrumb a { color: var(--charcoal-mid); transition: color var(--transition-fast); text-decoration: none; }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb li[aria-current="page"] { color: var(--charcoal); font-weight: 500; }

/* ---- Page Header ---- */
.page-header {
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: var(--space-lg);
  background: var(--ivory-dark);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-top: 1rem; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
}
.footer-logo span { color: var(--rose-light); }
.footer-col h6 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.footer-col ul a:hover { color: var(--rose-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.footer-social a:hover { border-color: var(--rose-light); color: var(--rose-light); }
.footer-contact-info { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; }
.footer-contact-info a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.footer-contact-info a:hover { color: var(--rose-light); }

/* ---- Seasonal/Landing Banner ---- */
.seasonal-hero {
  min-height: 70vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.seasonal-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A2D2A 100%);
}
.seasonal-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/seasonal-bg.jpg') center/cover;
  opacity: 0.25;
}
.seasonal-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem;
  max-width: 760px;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-rose { color: var(--rose); }
.text-gold { color: var(--gold); }
.text-charcoal { color: var(--charcoal); }
.text-muted { color: var(--warm-grey); }
.bg-ivory { background: var(--ivory); }
.bg-ivory-dark { background: var(--ivory-dark); }
.bg-charcoal { background: var(--charcoal); }
.bg-rose-pale { background: var(--rose-pale); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }

/* Price tag */
.price-from {
  font-size: 0.78rem;
  color: var(--warm-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
}

/* Collection overview badge */
.collection-count {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-strip-item:nth-child(2) { border-right: none; }
  .feature-strip-item:nth-child(3) { border-top: 1px solid var(--ivory-dark); }
  .feature-strip-item:nth-child(4) { border-top: 1px solid var(--ivory-dark); border-right: none; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-img, .split.reverse .split-content { order: unset; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 1.5rem; }
  .trust-divider { display: none; }
}
@media (max-width: 520px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip-item { border-right: none; border-top: 1px solid var(--ivory-dark); }
  .feature-strip-item:first-child { border-top: none; }
}

/* ============================================================
   RESPONSIVE 2-COLUMN GRID (collection/seasonal/contact pages)
   ============================================================ */
@media (max-width: 900px) {
  .responsive-2col {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition-fast);
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   CASE STUDY DETAIL PAGE
   ============================================================ */
@media (max-width: 900px) {
  .case-detail-grid {
    grid-template-columns: 1fr !important;
  }
  .case-study-sidebar {
    position: static !important;
  }
}

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid rgba(44,35,32,0.1);
  box-shadow: 0 -4px 24px rgba(44,35,32,0.1);
  padding: 0 0 env(safe-area-inset-bottom, 0);
}
.mob-bar-inner {
  display: flex;
  align-items: stretch;
  height: 60px;
}
.mob-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--charcoal-light);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
}
.mob-bar a svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-fast);
}
.mob-bar a.active,
.mob-bar a:hover { color: var(--rose); }
.mob-bar a.mob-bar--cta {
  color: var(--white);
  background: var(--rose);
  flex: 1.3;
  border-radius: 0;
  font-size: 0.65rem;
  font-weight: 600;
}
.mob-bar a.mob-bar--cta svg { stroke: var(--white); }
.mob-bar a.mob-bar--cta:hover { background: #b55560; color: var(--white); }

@media (max-width: 768px) {
  .mob-bar { display: block; }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0)); }
}

/* ============================================================
   EDITORIAL STYLE ENHANCEMENTS (inspired refresh)
   ============================================================ */

/* Larger, more expressive display text */
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* Refined section label */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-family: var(--font-body);
  font-weight: 500;
  display: block;
  margin-bottom: 0.85rem;
}

/* Hero headings more dramatic */
h1 {
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* Refined card hover */
.collection-card:hover,
.reveal:hover .collection-card {
  transform: translateY(-3px);
}

/* Thin elegant dividers */
.section--divided {
  border-top: 1px solid var(--ivory-dark);
}

/* Pull-quote style */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.5;
  border-left: 2px solid var(--rose);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* Stat block */
.stat-block {
  text-align: center;
  padding: 1.5rem;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

/* Page hero polish */
.page-hero h1 {
  margin-bottom: 1rem;
}
.page-hero .lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* Ensure body doesn't get clipped on mobile with bar */
@media (max-width: 768px) {
  .site-footer { margin-bottom: 0; }
}

/* ---- FAQ main grid: collapses to single column on mobile ---- */
.faq-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 720px) {
  .faq-main-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
}

/* ============================================================
   FOOTER CONTACT ROWS  (number | WhatsApp format)
   ============================================================ */
.footer-contact-info {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.footer-contact-call {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  padding-right: 0.6rem;
}
.footer-contact-call:hover { color: var(--white); }
.footer-contact-row .divider {
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
  padding: 0 0.4rem;
  user-select: none;
}
.footer-contact-wa {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 0.6rem;
  transition: color 0.2s;
}
.footer-contact-wa:hover { color: #25D366; }
.footer-contact-email {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-email:hover { color: var(--white); }

a[aria-label="Collections"] { padding-right: 15px }
/* Restore mob-bar CTA hover to rose */
.mob-bar a.mob-bar--cta:hover { background: #a84f57 !important; }
