/* ==========================================================================
   Vrinda Packing House — Main Stylesheet
   ========================================================================== */

:root {
  /* Brand palette */
  --wine: #8F1D2C;
  --deep-wine: #68131E;
  --blush: #F7ECEC;
  --soft-pink: #F3E1DF;
  --cream: #FFF9F4;
  --ivory: #FFFDF9;
  --warm-white: #FAF7F2;
  --dark: #262020;
  --muted: #786D6D;
  --gold: #C7A262;

  /* Type */
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Manrope", sans-serif;

  /* Rhythm */
  --section-pad: 68px;
  --section-pad-sm: 54px;
  --radius: 10px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.15;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-inline: clamp(22px, 2.4vw, 46px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Section label / eyebrow ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 16px; }

/* Gold flourish divider — signature motif */
.flourish {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.flourish svg { opacity: .55; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--deep-wine); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: #fff; color: var(--wine); }
.btn-white { background: #fff; color: var(--wine); }
.btn-white:hover { background: var(--cream); }
.btn-sm { padding: 10px 20px; font-size: 11.5px; }

/* ==========================================================================
   1. Announcement Bar
   ========================================================================== */
.announce-bar {
  background: var(--deep-wine);
  color: #f4e7dc;
  font-size: 12.5px;
  letter-spacing: .4px;
}
.announce-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 7px;
  padding-bottom: 7px;
  text-align: center;
}
.announce-bar .announce-call { display: flex; align-items: center; gap: 6px; white-space: nowrap; color: #f4e7dc; }
.announce-bar .announce-call svg { flex-shrink: 0; }

/* ==========================================================================
   2. Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(38,32,32,.06);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(38,32,32,.06); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-line { display: flex; align-items: center; gap: 8px; }
.brand-flower { color: var(--gold); font-size: 18px; transform: rotate(15deg); }
.brand-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: .3px;
}
.brand-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav a:hover { color: var(--wine); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--wine); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--dark);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.icon-btn:hover { background: var(--blush); color: var(--wine); }
.hamburger-btn { display: none; }

/* ==========================================================================
   3. Hero Slider (Bootstrap Carousel, brand-styled)
   ========================================================================== */
.hero.carousel, .hero .carousel-inner, .hero .carousel-item { height: 520px; min-height: 520px; }
.hero { position: relative; overflow: hidden; background: var(--dark); }
.hero .carousel-item { display: none; position: relative; overflow: hidden; }
.hero .carousel-item.active,
.hero .carousel-item-next,
.hero .carousel-item-prev { display: block; }
.hero-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0 auto;
  padding: 58px clamp(28px, 4vw, 76px);
  background: transparent;
  position: relative;
  z-index: 2;
}
.hero-slide-content .eyebrow { justify-content: flex-start; margin-bottom: 18px; }
.hero-slide-content .eyebrow::after { display: none; }
.hero-slide-content h1 {
  font-size: clamp(40px, 4vw, 56px);
  color: var(--wine);
  max-width: 500px;
  letter-spacing: -.5px;
}
.hero-slide-content p {
  margin-top: 20px;
  max-width: 440px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-slide-media { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-slide-media img {
  width: 100%; height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.04);
  transition: transform 8s linear;
}
.carousel-item.active .hero-slide-media img { transform: scale(1); }
.hero-slide-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,249,244,.98) 0%, rgba(255,249,244,.94) 34%, rgba(255,249,244,.66) 48%, rgba(255,249,244,.12) 72%, transparent 100%);
}

/* Bootstrap carousel control overrides */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 46px; height: 46px;
  top: 50%; bottom: auto;
  z-index: 10;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.85);
  opacity: 1;
  pointer-events: auto;
  touch-action: manipulation;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.hero .carousel-control-prev { left: 18px; }
.hero .carousel-control-next { right: 18px; }
.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 16px; height: 16px;
  filter: invert(13%) sepia(45%) saturate(2500%) hue-rotate(325deg) brightness(75%);
}
.hero .carousel-indicators { bottom: 22px; z-index: 10; margin-bottom: 0; }
.hero .carousel-indicators [data-bs-target] {
  width: 9px; height: 9px;
  border-radius: 50%;
  background-color: rgba(38,32,32,.3);
  border: none;
  opacity: 1;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.hero .carousel-indicators .active { background-color: var(--wine); transform: scale(1.25); }

/* ==========================================================================
   4. Category Section
   ========================================================================== */
.section { padding: var(--section-pad) 0; }
.section-sm { padding: var(--section-pad-sm) 0; }
.bg-cream { background: var(--warm-white); }
.bg-white { background: var(--ivory); }
.bg-blush { background: var(--blush); }
.bg-wine { background: var(--wine); color: #fff; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fffaf6;
  border: 1px solid rgba(143,29,44,.1);
  box-shadow: 0 8px 26px rgba(72,36,31,.06);
}
.category-card img {
  width: 100%; height: 158px;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.category-card:hover img { transform: scale(1.05); }
.category-card::before {
  content: "";
  position: absolute; inset: 0;
  display: none;
  transition: opacity .4s var(--ease);
}
.category-card-label {
  position: relative;
  padding: 15px 12px 17px;
  min-height: 72px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  text-align: center;
}
.category-card-label h3 { font-family: var(--font-body); font-size: 14px; line-height: 1.35; color: var(--wine); font-weight: 700; }
.category-card-label .arrow {
  display: none;
}
.category-card:hover .category-card-label .arrow {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateX(4px);
}

/* ==========================================================================
   5. About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 38px;
  align-items: center;
}
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-media img { width: 100%; height: 330px; object-fit: cover; }
.about-content .eyebrow { justify-content: flex-start; }
.about-content .eyebrow::after { display: none; }
.about-content h2 { font-size: clamp(30px, 3.6vw, 42px); color: var(--dark); max-width: 420px; }
.about-content p.about-copy { margin-top: 16px; color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 540px; }
.about-points {
  display: flex;
  gap: 30px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.about-point { display: flex; align-items: center; gap: 10px; }
.about-point svg { color: var(--gold); flex-shrink: 0; }
.about-point span { font-size: 13.5px; font-weight: 600; color: var(--dark); }
.about-content .btn { margin-top: 26px; }

/* ==========================================================================
   6. Featured Collection / Product carousel
   ========================================================================== */
.product-track-wrap { position: relative; }
.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 80px) / 6);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.product-track::-webkit-scrollbar { display: none; }
.product-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(143,29,44,.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(72,36,31,.05);
}
.product-media {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1.15/1;
  background: var(--blush);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-info { padding: 14px 12px 15px; text-align: center; display: flex; flex: 1; flex-direction: column; align-items: center; }
.product-cat { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.product-title { font-family: var(--font-body); font-size: 13px; line-height: 1.35; margin-top: 5px; color: var(--wine); font-weight: 700; }
.product-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: 4px;
  padding: 7px 12px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}
.carousel-controls button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(38,32,32,.18);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.carousel-controls button:hover { background: var(--wine); color: #fff; border-color: var(--wine); }

/* ==========================================================================
   7. Wedding Trousseau Feature
   ========================================================================== */
.wedding-feature {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;
  min-height: 480px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f8e3e1;
  background-image: url("../images/wedding-special-banner-v1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.wedding-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent 34%, rgba(255,244,242,.05) 46%, rgba(255,244,242,.2) 70%, rgba(255,244,242,.06) 100%);
  pointer-events: none;
}
.wedding-feature-media { position: relative; overflow: hidden; min-height: 480px; }
.wedding-feature-content {
  background: transparent;
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px clamp(72px, 8vw, 150px) 48px clamp(36px, 4vw, 76px);
  position: relative;
  z-index: 2;
}
.wedding-feature-content .eyebrow { justify-content: flex-start; }
.wedding-feature-content .eyebrow::after { display: none; }
.wedding-feature-content h2 { font-size: clamp(34px, 3.2vw, 48px); max-width: 560px; color: var(--wine); }
.wedding-feature-content p.lead { margin-top: 14px; color: var(--muted); font-size: 14px; max-width: 520px; line-height: 1.65; }
.service-points { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.service-points li { display: flex; align-items: flex-start; gap: 13px; font-size: 14px; }
.service-points li > i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8ae61, #b77b29);
  color: #fff;
  font-size: 17px;
  box-shadow: 0 6px 16px rgba(183,123,41,.2);
}
.service-points li span { display: flex; flex-direction: column; gap: 2px; }
.service-points strong { color: var(--wine); font-size: 14px; }
.service-points small { color: var(--muted); font-size: 12.5px; line-height: 1.4; }
.wedding-feature-content .btn { margin-top: 32px; align-self: flex-start; }
.wedding-feature-deco { position: absolute; top: 40px; right: 40px; opacity: .5; pointer-events: none; }

/* ========================================================================== 
   8. Occasion Strip
   ========================================================================== */
#occasions {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(247,216,213,.38), transparent 25%),
    radial-gradient(circle at 100% 100%, rgba(216,174,97,.12), transparent 24%),
    var(--ivory);
}
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.occasion-item {
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(143,29,44,.11);
  border-radius: 14px;
  background: rgba(255,253,249,.92);
  box-shadow: 0 12px 34px rgba(85,42,37,.07);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.occasion-item:hover {
  transform: translateY(-7px);
  border-color: rgba(199,162,98,.45);
  box-shadow: 0 20px 44px rgba(85,42,37,.13);
}
.occasion-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: 0;
  border: 0;
}
.occasion-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(53,22,25,.38) 100%);
}
.occasion-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.occasion-item:hover .occasion-media img { transform: scale(1.07); }
.occasion-number {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(104,19,30,.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
}
.occasion-copy { display: flex; flex: 1; flex-direction: column; padding: 22px 22px 24px; }
.occasion-kicker {
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.occasion-item h3 { margin-top: 5px; color: var(--wine); font-size: 27px; font-weight: 600; }
.occasion-item p { margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.occasion-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
}
.occasion-link i { transition: transform .3s var(--ease); }
.occasion-item:hover .occasion-link i { transform: translate(3px,-3px); }

/* ==========================================================================
   9. Why Choose Us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why-item { text-align: center; padding: 0 28px; border-right: 1px solid rgba(143,29,44,.14); }
.why-item:last-child { border-right: 0; }
.why-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--wine);
}
.why-item h3 { font-size: 18px; margin-bottom: 6px; }
.why-item p { font-size: 14px; color: var(--muted); }

/* ==========================================================================
   10. Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(143,29,44,.55);
  opacity: 0;
  transition: opacity .35s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item .gallery-view {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 2;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after, .gallery-item:hover .gallery-view { opacity: 1; }

/* ==========================================================================
   11. Final CTA
   ========================================================================== */
.final-cta { text-align: center; position: relative; overflow: hidden; background: radial-gradient(circle at 8% 50%, rgba(255,255,255,.9), transparent 22%), linear-gradient(135deg, #fbe8e5, #f6d7d8) !important; }
.final-cta h2 { color: var(--wine); font-size: clamp(30px, 4vw, 46px); }
.final-cta p { margin-top: 10px; color: var(--muted); font-size: 15px; }
.final-cta .btn-white { background: var(--wine); color: #fff; }
.final-cta .btn-outline-light { background: rgba(255,255,255,.65); color: #138a46; border-color: #138a46; }
.final-cta-actions { display: flex; justify-content: center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.final-cta-deco { position: absolute; inset: 0; opacity: .12; pointer-events: none; }

/* ==========================================================================
   WhatsApp float
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 800;
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;
  box-shadow: 0 10px 26px rgba(37,211,102,.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,.42); }
.whatsapp-float span { font-size: 13px; font-weight: 700; }
.whatsapp-float small { display: block; font-size: 10.5px; font-weight: 500; opacity: .9; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--deep-wine); color: rgba(255,249,244,.82); position: relative; overflow: hidden; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 50px 0 30px;
}
.footer-brand-name { font-family: var(--font-heading); font-size: 24px; color: #fff; font-weight: 700; }
.footer-tag { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.footer-desc { margin-top: 16px; font-size: 14px; line-height: 1.7; max-width: 280px; color: rgba(255,249,244,.7); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,249,244,.75); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; margin-bottom: 12px; color: rgba(255,249,244,.9); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }
.footer-note { margin-top: 18px; font-size: 13px; color: rgba(255,249,244,.6); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
  color: rgba(255,249,244,.55);
}
.footer-deco { position: absolute; bottom: -20px; right: -20px; opacity: .06; pointer-events: none; }

/* ==========================================================================
   Enquiry Modal (Bootstrap .modal, brand-styled)
   ========================================================================== */
#enquiryModal .modal-content {
  background: var(--ivory);
  border: none;
  border-radius: 8px;
  padding: 34px;
}
#enquiryModal .modal-header { border: none; padding: 0 0 6px; }
#enquiryModal .btn-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  opacity: 1;
  background-color: var(--blush);
  background-size: 12px;
  transition: background-color .25s var(--ease);
}
#enquiryModal .btn-close:hover { background-color: var(--soft-pink); }
#enquiryModal .modal-body { padding: 0; }
.modal-box .eyebrow { justify-content: flex-start; }
.modal-box .eyebrow::after { display: none; }
.modal-box h3 { font-size: 28px; margin-bottom: 6px; }
.modal-box .modal-sub { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(38,32,32,.16);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: #fff;
  color: var(--dark);
  transition: border-color .25s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--wine);
  outline: none;
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; text-align: center; padding: 30px 0; }
.form-success.is-visible { display: block; }
.form-success svg { color: var(--wine); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ==========================================================================
   Search overlay
   ========================================================================== */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(38,20,22,.6);
  z-index: 1000;
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 90px 20px 20px;
}
.search-overlay.is-open { display: flex; }
.search-box { width: 100%; max-width: 640px; }
.search-box form {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border-radius: 50px;
  padding: 8px 8px 8px 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 0;
  color: var(--dark);
  background: transparent;
}
.search-box button.search-submit {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.search-close {
  position: absolute; top: 26px; right: 26px;
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease);
}
.search-close:hover { background: rgba(255,255,255,.15); }
.search-results { margin-top: 18px; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.2); display: none; }
.search-results.is-visible { display: block; }
.search-results a { display: flex; align-items: center; gap: 14px; padding: 14px 22px; font-size: 14.5px; color: var(--dark); border-bottom: 1px solid var(--blush); }
.search-results a:last-child { border-bottom: none; }
.search-results a:hover { background: var(--cream); color: var(--wine); }
.search-empty { padding: 18px 22px; font-size: 14px; color: var(--muted); }

/* ==========================================================================
   Offcanvas mobile nav (Bootstrap .offcanvas, brand-styled)
   ========================================================================== */
#mobileNav.offcanvas { width: min(340px, 86vw); background: var(--ivory); }
#mobileNav .offcanvas-header { padding: 26px 28px 0; }
#mobileNav .offcanvas-body { padding: 20px 28px 30px; }
#mobileNav .btn-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  opacity: 1;
  background-color: var(--blush);
  background-size: 12px;
}
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(38,32,32,.08);
  color: var(--dark);
}
.mobile-nav-links a:hover { color: var(--wine); }
.mobile-nav-cta { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-contact { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.mobile-nav-contact a { display: flex; align-items: center; gap: 10px; color: var(--wine); font-weight: 700; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal="scale"].is-visible { transform: scale(1); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }
