/* ── MESSAGES BAR ── */
.messages-bar {
  position: fixed; top: 80px; left: 0; right: 0; z-index: 200;
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 0.8rem 4rem;
  pointer-events: none;
}
.message {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.4rem;
  font-family: 'Jost', sans-serif; font-size: 0.88rem;
  pointer-events: all;
  background: var(--white);
  border-left: 4px solid var(--rosegold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.message--error { border-left-color: #c0392b; }
.message-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 0.8rem; margin-left: 1rem;
}

/* ── GALLERY (DB images) ── */
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s;
}
.gallery-item { position: relative; overflow: hidden; }
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(46,34,32,0.7));
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .gallery-label {
  font-size: 0.65rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.gallery-overlay .gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; color: var(--white);
}
.gallery-item--featured { grid-column: span 2; grid-row: span 2; }

/* ── THANK YOU PAGE ── */
#thankyou {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  padding: 8rem 4rem;
}
.thankyou-inner { max-width: 560px; margin: 0 auto; }
.thankyou-ornament {
  font-size: 2.5rem; color: var(--rosegold);
  margin-bottom: 2rem; display: block;
}
.thankyou-actions {
  display: flex; gap: 1.2rem; justify-content: center; margin-top: 3rem;
}

/* ══════════════════════════════════════════
   IVORYARM — Main Stylesheet
   ══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory: #FAF7F2;
  --ivory-dark: #F2EDE4;
  --blush: #EEC9D2;
  --blush-light: #F7E8ED;
  --blush-deep: #D4A0AF;
  --rosegold: #C08070;
  --rosegold-light: #D4A090;
  --rosegold-dark: #9A5F50;
  --text-dark: #2E2220;
  --text-mid: #6B4F4A;
  --text-muted: #A08880;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,128,112,0.15);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--text-dark); text-decoration: none;
}
.nav-logo span { color: var(--rosegold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mid);
  text-decoration: none; transition: color 0.25s;
}
.nav-links a:hover { color: var(--rosegold); }
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white);
  background: var(--rosegold); border: none;
  padding: 0.65rem 1.6rem; cursor: pointer;
  transition: background 0.25s; text-decoration: none;
}
.nav-cta:hover { background: var(--rosegold-dark); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rosegold);
  margin-bottom: 1.8rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 300; line-height: 1.08;
  color: var(--text-dark); margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--rosegold); }
.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: var(--text-mid); max-width: 380px; margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1.2rem; align-items: center; }
.btn-primary {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); background: var(--rosegold);
  padding: 1rem 2.4rem; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.25s;
  display: inline-block;
}
.btn-primary:hover { background: var(--rosegold-dark); }
.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mid); background: transparent;
  padding: 1rem 2rem; border: 1px solid var(--blush-deep);
  cursor: pointer; text-decoration: none; transition: all 0.25s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--rosegold); color: var(--rosegold); }
.hero-right {
  position: relative; overflow: hidden;
  background: var(--blush-light);
}
.hero-img-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #EEC9D2 0%, #F7E8ED 40%, #FAF7F2 100%);
}
.hero-ornament {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 480px;
  border: 1px solid rgba(192,128,112,0.3);
}
.hero-ornament::before {
  content: ''; position: absolute; inset: 16px;
  border: 1px solid rgba(192,128,112,0.2);
}
.hero-dress-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; font-weight: 300; font-style: italic;
  color: rgba(192,128,112,0.18); white-space: nowrap;
  letter-spacing: -0.02em;
}
.hero-badge {
  position: absolute; bottom: 3rem; left: 3rem;
  background: var(--white); padding: 1.2rem 1.6rem;
  border-left: 3px solid var(--rosegold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.hero-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 400; color: var(--rosegold); line-height: 1;
}
.hero-badge-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.3rem;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 4rem;
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll::before {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--blush-deep);
}

/* ── SECTION COMMONS ── */
section { padding: 7rem 4rem; }
.section-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rosegold); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 300; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--rosegold); }
.section-lead {
  font-family: 'Jost', sans-serif;
  font-size: 0.98rem; font-weight: 300; line-height: 1.9;
  color: var(--text-mid); max-width: 500px;
}
.divider {
  width: 48px; height: 1px; background: var(--rosegold);
  margin: 1.5rem 0;
}

/* ── SERVICES ── */
#services { background: var(--ivory); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 5rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(192,128,112,0.12);
  padding: 2.8rem 2.2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(192,128,112,0.12);
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--rosegold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: var(--blush); line-height: 1; margin-bottom: 1.5rem;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 500;
  color: var(--text-dark); margin-bottom: 1rem;
}
.service-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem; font-weight: 300; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 1.8rem;
}
.service-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rosegold); text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.service-link::after { content: '→'; transition: transform 0.2s; }
.service-link:hover::after { transform: translateX(4px); }

/* ── GALLERY ── */
#gallery { background: var(--blush-light); }
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-header .section-lead { margin: 0 auto; }
.gallery-header .divider { margin: 1.5rem auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  background: var(--blush);
  overflow: hidden; position: relative;
  cursor: pointer; min-height: 180px;
}
.gallery-item--featured { grid-column: span 2; grid-row: span 2; }
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(46,34,32,0.7));
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .gallery-label {
  font-size: 0.65rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.gallery-overlay .gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; color: var(--white);
}
.gallery-placeholder {
  width: 100%; height: 100%; min-height: 180px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(145deg, var(--blush) 0%, var(--blush-deep) 100%);
}
.gallery-item--featured .gallery-placeholder { min-height: 380px; }
.gallery-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-style: italic;
  color: rgba(255,255,255,0.6);
}
.gallery-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ── PRICING ── */
#pricing { background: var(--ivory-dark); }
.pricing-header { text-align: center; margin-bottom: 4.5rem; }
.pricing-header .section-lead { margin: 0 auto; }
.pricing-header .divider { margin: 1.5rem auto; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1000px; margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid rgba(192,128,112,0.15);
  padding: 3rem 2.2rem; text-align: center;
  position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card.featured {
  background: var(--rosegold);
  border-color: var(--rosegold);
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(192,128,112,0.28);
}
.pricing-card:not(.featured):hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(192,128,112,0.1);
}
.featured-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--rosegold-dark);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); padding: 0.35rem 1.2rem;
}
.pricing-tier {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1rem;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.75); }
.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 400; color: var(--text-dark); line-height: 1;
}
.pricing-card.featured .pricing-amount { color: var(--white); }
.pricing-currency { font-size: 1.4rem; vertical-align: super; font-weight: 300; }
.pricing-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; color: var(--text-muted); margin-top: 0.3rem;
}
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.6); }
.pricing-divider {
  width: 32px; height: 1px; background: var(--blush);
  margin: 1.5rem auto;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.4); }
.pricing-features {
  list-style: none; text-align: left; margin-bottom: 2rem;
}
.pricing-features li {
  font-family: 'Jost', sans-serif;
  font-size: 0.87rem; font-weight: 300;
  color: var(--text-mid); padding: 0.65rem 0;
  border-bottom: 1px solid rgba(192,128,112,0.08);
  display: flex; align-items: center; gap: 0.7rem;
}
.pricing-features li::before {
  content: '✦'; font-size: 0.5rem; color: var(--rosegold); flex-shrink: 0;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-card.featured .pricing-features li { border-bottom-color: rgba(255,255,255,0.15); }
.pricing-card.featured .pricing-features li::before { color: rgba(255,255,255,0.7); }
.pricing-btn {
  display: block; width: 100%; text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.9rem; cursor: pointer; transition: all 0.25s;
  border: 1px solid var(--rosegold); color: var(--rosegold);
  background: transparent; text-decoration: none;
}
.pricing-btn:hover { background: var(--rosegold); color: var(--white); }
.pricing-card.featured .pricing-btn {
  background: var(--white); color: var(--rosegold); border-color: var(--white);
}
.pricing-card.featured .pricing-btn:hover { background: var(--ivory); }
.pricing-note-bottom {
  text-align: center; margin-top: 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 300; color: var(--text-muted);
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--ivory); }
.testimonials-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 6rem; align-items: start;
}
.testimonials-list { display: flex; flex-direction: column; gap: 2rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(192,128,112,0.12);
  padding: 2rem 1.8rem; position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 1.2rem; left: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: var(--blush); line-height: 1; pointer-events: none;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem; font-style: italic; font-weight: 400; line-height: 1.7;
  color: var(--text-dark); margin-bottom: 1.2rem; padding-top: 1.5rem;
}
.testimonial-author {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rosegold);
}
.testimonial-event {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem;
}

/* ── CONTACT ── */
#contact { background: var(--text-dark); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
#contact .section-tag { color: var(--rosegold-light); }
#contact .section-title { color: var(--ivory); }
#contact .section-lead { color: rgba(250,247,242,0.6); }
#contact .divider { background: var(--rosegold); }
.contact-details { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 36px; height: 36px; background: rgba(192,128,112,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 0.9rem;
}
.contact-item-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rosegold-light); margin-bottom: 0.2rem;
}
.contact-item-val {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem; font-weight: 300; color: rgba(250,247,242,0.8);
}

/* ── BOOKING FORM (crispy overrides) ── */
.booking-form { display: flex; flex-direction: column; gap: 1rem; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.booking-form .col-md-6 { padding: 0; }
.booking-form .form-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,247,242,0.55); margin-bottom: 0.4rem; display: block;
}
.booking-form .form-input,
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
  font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300;
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(192,128,112,0.25);
  color: var(--ivory); padding: 0.85rem 1rem;
  outline: none; width: 100%;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  border-radius: 0;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: rgba(250,247,242,0.25); }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-color: var(--rosegold); }
.booking-form select option { background: var(--text-dark); color: var(--ivory); }
.booking-form textarea { resize: vertical; min-height: 110px; }
.booking-form .errorlist {
  list-style: none; margin: 0.3rem 0 0;
  font-size: 0.78rem; color: #e88080;
}
.booking-form .invalid-feedback {
  font-size: 0.78rem; color: #e88080; margin-top: 0.3rem; display: block;
}
.booking-form .btn-primary { margin-top: 0.5rem; border: none; }

/* ── MESSAGES BAR ── */
.messages-bar {
  position: fixed; top: 80px; left: 0; right: 0; z-index: 200;
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 0.8rem 4rem; pointer-events: none;
}
.message {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.4rem;
  font-family: 'Jost', sans-serif; font-size: 0.88rem;
  pointer-events: all; background: var(--white);
  border-left: 4px solid var(--rosegold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.message--error { border-left-color: #c0392b; }
.message-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 0.8rem; margin-left: 1rem;
}

/* ── THANK YOU PAGE ── */
#thankyou {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 8rem 4rem;
}
.thankyou-inner { max-width: 560px; margin: 0 auto; }
.thankyou-ornament {
  font-size: 2.5rem; color: var(--rosegold);
  margin-bottom: 2rem; display: block;
}
.thankyou-actions {
  display: flex; gap: 1.2rem; justify-content: center; margin-top: 3rem;
}

/* ── FOOTER ── */
footer {
  background: #1A1210; padding: 3rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500; color: var(--ivory);
  letter-spacing: 0.08em;
}
.footer-logo span { color: var(--rosegold); }
.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; color: rgba(250,247,242,0.3);
}
.footer-socials { display: flex; gap: 1.2rem; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(192,128,112,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--rosegold-light); font-size: 0.75rem;
  text-decoration: none; transition: background 0.25s;
}
.footer-social:hover { background: rgba(192,128,112,0.15); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0; animation: fadeUp 0.75s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.8rem; }
  .nav-links { display: none; }
  section { padding: 5rem 1.8rem; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 320px; }
  .hero-left { padding: 3rem 1.8rem; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--featured { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .testimonials-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .booking-form .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.2rem; text-align: center; }
  .messages-bar { padding: 0.8rem 1.8rem; }
  .thankyou-actions { flex-direction: column; align-items: center; }
}

/* ── Crispy Bootstrap 5 overrides ── */
.booking-form .form-control,
.booking-form .form-select {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  background: rgba(250,247,242,0.06) !important;
  border: 1px solid rgba(192,128,112,0.25) !important;
  color: var(--ivory) !important;
  padding: 0.85rem 1rem;
  border-radius: 0 !important;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  box-shadow: none !important;
}
.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--rosegold) !important;
  box-shadow: none !important;
}
.booking-form .form-control::placeholder { color: rgba(250,247,242,0.25) !important; }
.booking-form .mb-3 { margin-bottom: 1rem !important; }
.booking-form .invalid-feedback { color: #e88080; font-size: 0.78rem; }
.booking-form .is-invalid {
  border-color: #e88080 !important;
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 1.4rem 0.85rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.25s, box-shadow 0.25s, padding 0.3s;
  overflow: hidden;
  max-width: 54px;               /* collapsed — icon only */
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  max-width: 200px;              /* expand to show label */
  padding: 0.85rem 1.4rem 0.85rem 1rem;
}
.wa-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.wa-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s 0.1s;
}
.wa-float:hover .wa-label {
  opacity: 1;
}

/* pulse ring to draw attention */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25D366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 900px) {
  .wa-float {
    bottom: 1.4rem;
    right: 1.4rem;
    padding: 0.8rem;
    max-width: 54px;
    border-radius: 50%;
  }
  .wa-float:hover {
    max-width: 54px;   /* stays icon-only on mobile */
    border-radius: 50%;
  }
  .wa-label { display: none; }
}

/* ── GALLERY TABS ── */
.gallery-tabs {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.gallery-tab {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mid); background: transparent;
  border: 1px solid rgba(192,128,112,0.25);
  padding: 0.55rem 1.4rem; cursor: pointer;
  transition: all 0.25s;
}
.gallery-tab:hover {
  border-color: var(--rosegold);
  color: var(--rosegold);
}
.gallery-tab.active {
  background: var(--rosegold);
  border-color: var(--rosegold);
  color: var(--white);
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  background: var(--blush);
  overflow: hidden; position: relative;
  cursor: pointer; min-height: 180px;
}
.gallery-item--featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 380px;
}
.gallery-item.hidden { display: none; }
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img,
.gallery-item:focus .gallery-img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(46,34,32,0.75) 0%,
    rgba(46,34,32,0.1) 50%,
    transparent 100%
  );
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay { opacity: 1; }
.gallery-overlay-category {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rosegold-light);
  margin-bottom: 0.3rem;
}
.gallery-overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--white); line-height: 1.3;
}
.gallery-overlay-icon {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: 1.2rem; color: rgba(255,255,255,0.7);
  transition: transform 0.25s;
}
.gallery-item:hover .gallery-overlay-icon { transform: translate(3px, -3px); }

/* ── LOAD MORE ── */
.gallery-load-more-wrap {
  text-align: center; margin-top: 3rem;
}
.gallery-load-more {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rosegold); background: transparent;
  border: 1px solid var(--rosegold);
  padding: 1rem 3rem; cursor: pointer;
  transition: all 0.25s;
}
.gallery-load-more:hover {
  background: var(--rosegold); color: var(--white);
}
.gallery-load-more:disabled {
  opacity: 0.5; cursor: not-allowed;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(22,14,12,0.96);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.lightbox:not([hidden]) {
  opacity: 1; pointer-events: all;
}
.lightbox[hidden] { display: none; }
.lightbox-inner {
  display: flex; flex-direction: column;
  align-items: center; max-width: 900px;
  width: 100%;
}
.lightbox-img-wrap {
  width: 100%;
  max-height: 75vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img {
  max-width: 100%; max-height: 75vh;
  object-fit: contain;
  border: 1px solid rgba(192,128,112,0.2);
}
.lightbox-caption {
  margin-top: 1.2rem;
  display: flex; gap: 1rem; align-items: center;
}
.lightbox-caption-category {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rosegold);
}
.lightbox-caption-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; color: var(--ivory);
}
.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.8rem;
  font-size: 2rem; color: var(--ivory); background: none;
  border: none; cursor: pointer; line-height: 1;
  transition: color 0.2s;
  z-index: 10;
}
.lightbox-close:hover { color: var(--rosegold); }
.lightbox-prev,
.lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  font-size: 1.8rem; color: rgba(250,247,242,0.6);
  background: rgba(46,34,32,0.5); border: none;
  padding: 1rem 1.2rem; cursor: pointer;
  transition: all 0.2s; z-index: 10;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--white);
  background: rgba(192,128,112,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--featured { grid-column: span 2; grid-row: span 1; min-height: 240px; }
  .lightbox-prev { left: 0.4rem; padding: 0.8rem; }
  .lightbox-next { right: 0.4rem; padding: 0.8rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--featured { grid-column: span 1; }
}
