/* ============================================================
   ARHA WORLD — styles.css  (Luxury Pastel & Gold Edition)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* --- Gold palette --- */
  --gold: #c9a84c;
  --gold-light: #d4af37;
  --gold-pale: #f7edd5;
  --gold-ultra: #fdf8ee;

  /* --- Pastel palette --- */
  --blush: #fbf0f3; /* soft rose blush — alternate section bg */
  --champagne: #fdf5e4; /* warm champagne — accent sections */
  --white: #ffffff;

  /* --- Legacy aliases (kept so existing var() refs work) --- */
  --cream: #ffffff; /* used by body / about / contact / why-us */
  --ivory: #fbf0f3; /* used by services / gallery → now blush */

  /* --- Text --- */
  --charcoal: #3d2314; /* warm deep mahogany — replaces black */
  --dark: #2d1b35; /* deep plum — footer, replaces near-black */
  --muted: #8b7355; /* warm amber-brown */

  /* --- Extra luxury pastels --- */
  --rose-mist: #fdf0f5; /* softest rose mist */
  --lavender-soft: #f7f2fc; /* whisper lavender */

  /* --- Border --- */
  --border: rgba(201, 168, 76, 0.22);

  /* --- Typography --- */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", system-ui, sans-serif;

  /* --- Layout --- */
  --section-py: 6rem;
  --container: 1180px;
  --radius: 4px;

  /* --- Easing --- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --slide-dur: 5000; /* ms — referenced in JS too */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- UTILITY ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section {
  padding: var(--section-py) 0;
}

/* Gold shimmer keyframe for luxury accent elements */
@keyframes goldShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    #e8d070 40%,
    #c9a84c 80%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  display: block;
  animation: goldShimmer 4s linear infinite;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
  display: block;
}
.section-head .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1.5px;
  background: linear-gradient(
    to right,
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
}
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head .section-sub {
  margin-inline: auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    #b8931a 100%
  );
  color: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.28);
}
.btn-primary:hover {
  background: #aa8830;
  border-color: #aa8830;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-full {
  width: 100%;
  text-align: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.4rem 0;
  transition:
    background 0.4s,
    padding 0.4s,
    box-shadow 0.4s;
  background-color: black;
}
.navbar.scrolled {
  background: rgba(253, 248, 238, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.9rem 0;
  box-shadow: 0 2px 24px rgba(100, 50, 20, 0.1);
}

/* Override link colours when navbar is light */
.navbar.scrolled .nav-links a {
  color: rgba(80, 48, 22, 0.72);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--gold);
}
.navbar.scrolled .logo-sub {
  color: rgba(80, 48, 22, 0.45);
}
.navbar.scrolled .hamburger span {
  background: rgba(80, 48, 22, 0.75);
}

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO + SLIDER
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* ---- Slider container ---- */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ---- Individual slide ---- */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  overflow: hidden;
}
.slide.is-active {
  opacity: 1;
}

/* Slide background — Ken Burns zoom on active */
.slide-bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease;
  transform-origin: center center;
}
.slide.is-active .slide-bg {
  animation: kenBurns 6s ease-in-out forwards;
}
@keyframes kenBurns {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

/* Slide backgrounds — warm blush-tinted overlays for luxury feel */
.slide--1 .slide-bg {
  background:
    linear-gradient(
      145deg,
      rgba(120, 40, 70, 0.52) 0%,
      rgba(160, 60, 90, 0.36) 50%,
      rgba(90, 25, 50, 0.42) 100%
    ),
    url("images/1.jpg") center/cover no-repeat;
}
.slide--2 .slide-bg {
  background:
    linear-gradient(
      145deg,
      rgba(70, 30, 110, 0.54) 0%,
      rgba(90, 50, 150, 0.38) 50%,
      rgba(60, 20, 90, 0.44) 100%
    ),
    url("images/2.jpg") center/cover no-repeat;
}
.slide--3 .slide-bg {
  background:
    linear-gradient(
      145deg,
      rgba(20, 75, 75, 0.54) 0%,
      rgba(30, 110, 100, 0.38) 50%,
      rgba(15, 60, 60, 0.44) 100%
    ),
    url("images/3.jpg") center/cover no-repeat;
}
.slide--4 .slide-bg {
  background:
    linear-gradient(
      145deg,
      rgba(110, 35, 58, 0.52) 0%,
      rgba(155, 55, 80, 0.36) 50%,
      rgba(90, 25, 45, 0.42) 100%
    ),
    url("images/4.jpg") center/cover no-repeat;
}
.slide--5 .slide-bg {
  background:
    linear-gradient(
      145deg,
      rgba(100, 65, 10, 0.54) 0%,
      rgba(140, 95, 15, 0.38) 50%,
      rgba(80, 52, 8, 0.44) 100%
    ),
    url("images/5.jpg") center/cover no-repeat;
}

/* Decorative geometric ring */
.slide::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 85vw);
  height: min(700px, 85vw);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

/* Slide caption */
.slide-caption {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.8s 0.8s ease,
    transform 0.8s 0.8s ease;
}
.slide.is-active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}
.slide-num {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(212, 175, 55, 0.7);
  text-transform: uppercase;
}
.slide-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

/* ---- Warm overlay on slides ---- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(90, 35, 65, 0.2) 0%,
    rgba(70, 25, 55, 0.36) 50%,
    rgba(50, 15, 40, 0.5) 100%
  );
}

/* ---- Hero text content ---- */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 1.5rem;
  animation: heroFadeIn 1.4s var(--ease-out) 0.3s both;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.9;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Slider arrow buttons ---- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow svg {
  width: 18px;
  height: 18px;
}
.slider-arrow--prev {
  left: 1.75rem;
}
.slider-arrow--next {
  right: 1.75rem;
}

/* ---- Dot indicators ---- */
.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.35s ease;
  padding: 0;
}
.slider-dot.is-active {
  background: var(--gold-light);
  border-color: var(--gold-light);
  width: 24px;
  border-radius: 4px;
}

/* ---- Progress bar ---- */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 4;
}
.slider-progress-bar {
  height: 100%;
  background: var(--gold-light);
  width: 0%;
  transition: width linear;
}

/* ---- Scroll indicator ---- */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 4;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ============================================================
   MARQUEE  — champagne strip
   ============================================================ */
.marquee-wrap {
  background: linear-gradient(
    90deg,
    var(--gold-pale) 0%,
    var(--champagne) 50%,
    var(--gold-pale) 100%
  );
  padding: 0.85rem 0;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.marquee-track .dot {
  color: var(--gold);
  font-size: 0.5rem;
  letter-spacing: 0;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   ABOUT  — warm gold-ultra cream
   ============================================================ */
.about {
  background: linear-gradient(
    160deg,
    var(--gold-ultra) 0%,
    var(--rose-mist) 50%,
    var(--gold-ultra) 100%
  );
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.about-img-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    #b8931a 100%
  );
  color: #fff;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.9;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}
.about-text p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 0.97rem;
}
.about-text p em {
  color: var(--charcoal);
  font-style: italic;
}
.about-pillars {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
}
.pillar-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  text-transform: uppercase;
  max-width: 110px;
  line-height: 1.4;
}

/* ============================================================
   SERVICES  — soft rose-blush pastel with champagne
   ============================================================ */
.services {
  background: linear-gradient(
    160deg,
    var(--blush) 0%,
    var(--champagne) 50%,
    var(--blush) 100%
  );
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s;
  cursor: default;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-light),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 1;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(201, 168, 76, 0.16);
  border-color: var(--gold-light);
}

/* ---- Service image panel ---- */
.service-img {
  position: relative;
  height: 236px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.service-card:hover .service-img img {
  transform: scale(1.07);
}
.simg-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(120, 50, 70, 0.32), transparent);
  z-index: 1;
}
.simg-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  color: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 2px 8px rgba(80, 30, 55, 0.28));
  transition: transform 0.35s var(--ease-out);
}
.service-card:hover .simg-icon {
  transform: scale(1.1);
}
.simg-label {
  position: absolute;
  bottom: 0.65rem;
  left: 0.9rem;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Service card body ---- */
.service-body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.service-icon {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-icon::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- Service card CTA buttons ---- */
.service-btns {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.28s var(--ease-out);
  white-space: nowrap;
}
.sc-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
/* Call Now — warm champagne gold */
.sc-btn--call {
  background: var(--champagne);
  color: var(--gold);
  border: 1px solid var(--border);
}
.sc-btn--call:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.22);
}
/* Enquire Now — gold */
.sc-btn--enquire {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.sc-btn--enquire:hover {
  background: #aa8830;
  border-color: #aa8830;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
}

/* ============================================================
   QUOTE BANNER  — soft champagne / gold
   ============================================================ */
.quote-banner {
  background: linear-gradient(
    135deg,
    var(--gold-pale) 0%,
    var(--champagne) 30%,
    var(--rose-mist) 60%,
    var(--gold-pale) 100%
  );
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-banner::before {
  content: "\201C";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 18rem;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote-banner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  max-width: 700px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.quote-banner cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CONTACT  — warm gold-ultra cream
   ============================================================ */
.contact {
  background: linear-gradient(
    160deg,
    var(--gold-ultra) 0%,
    var(--rose-mist) 50%,
    var(--gold-ultra) 100%
  );
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-icon svg {
  width: 18px;
  height: 18px;
}
.contact-item h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.contact-item p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
}
.contact-item a {
  color: var(--muted);
  transition: color 0.25s;
}
.contact-item a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.1);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--blush);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group textarea {
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0a496;
}
.form-success {
  display: none;
  text-align: center;
  font-size: 0.85rem;
  color: #3a7a3a;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 0.75rem;
}
.form-success.show {
  display: block;
}

/* ============================================================
   FOOTER  — deep plum/rose (luxurious, no black)
   ============================================================ */
.footer {
  background: linear-gradient(
    160deg,
    var(--dark) 0%,
    #3a1845 50%,
    var(--dark) 100%
  );
  padding: 3.5rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-brand .logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
}
.footer-brand .logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.footer-brand p {
  font-size: 0.82rem;
  margin-top: 0.5rem;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a,
.footer-contact a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s;
  letter-spacing: 0.05em;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   WHY CHOOSE US  — soft champagne pastel
   ============================================================ */
.why-us {
  background: linear-gradient(
    160deg,
    var(--champagne) 0%,
    var(--lavender-soft) 50%,
    var(--champagne) 100%
  );
}

/* ---- Stats bar — richer champagne gold gradient ---- */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(
    135deg,
    var(--gold-pale) 0%,
    var(--champagne) 30%,
    var(--gold-ultra) 60%,
    var(--gold-pale) 100%
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 28px rgba(201, 168, 76, 0.14);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 3rem;
  position: relative;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-left: 2px;
  vertical-align: super;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- Why grid ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s;
  position: relative;
  overflow: hidden;
}

/* Top gold accent bar */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-light),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.14);
  border-color: var(--gold-light);
}

.why-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.why-card:hover .why-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   SUMMER EDIT EVENT SECTION
   ============================================================ */
.summer-edit {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 40%, #f5f2e8 100%);
  overflow: hidden;
  position: relative;
}

.summer-edit__inner {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding: 4rem 1.5rem 0;
}

/* Botanical leaf decorations */
.se-leaf {
  position: absolute;
  top: 0;
  width: 80px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}
.se-leaf--left {
  left: -10px;
}
.se-leaf--right {
  right: -10px;
  transform: scaleX(-1);
}

/* Arch background shapes */
.se-arch {
  position: absolute;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  pointer-events: none;
  z-index: 0;
}
.se-arch--1 {
  width: 260px;
  height: 340px;
  background: rgba(200, 218, 232, 0.28);
  right: 8%;
  top: 20px;
}
.se-arch--2 {
  width: 200px;
  height: 280px;
  background: rgba(230, 220, 190, 0.22);
  right: 22%;
  top: 40px;
}

/* Two-column layout */
.se-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* ---- LEFT TEXT ---- */
.se-text {
  padding: 2rem 0;
}

.se-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 600;
  color: #1e3a5f;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.se-script {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-style: italic;
  font-weight: 400;
  color: #1e3a5f;
  line-height: 1;
  margin-bottom: 1rem;
}

.se-divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.se-divider__line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  max-width: 60px;
}
.se-divider__diamond {
  color: var(--gold);
  font-size: 0.7rem;
}

.se-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 1.6rem;
}
.se-brand {
  color: var(--gold);
  font-weight: 500;
}

/* Event box */
.se-event-box {
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  padding: 1.2rem 1.5rem 1rem;
  background: rgba(247, 237, 213, 0.45);
  display: inline-block;
  min-width: 280px;
}

.se-event-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #1e3a5f;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.se-event-deco {
  color: var(--gold);
  font-size: 0.65rem;
}

.se-dates-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(247, 237, 213, 0.7);
  border-radius: 30px;
  padding: 0.55rem 1rem;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.se-cal-icon {
  display: flex;
  align-items: center;
  color: #4a6580;
}
.se-cal-icon svg {
  width: 20px;
  height: 20px;
}
.se-date {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e3a5f;
}
.se-date sup {
  font-size: 0.6rem;
  vertical-align: super;
  font-weight: 500;
}
.se-date-sep {
  color: #8b9ab0;
  font-size: 1rem;
  padding: 0 0.1rem;
}
.se-month {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a5f;
  letter-spacing: 0.06em;
  margin-left: 0.25rem;
}

.se-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
}
.se-location svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #1e3a5f;
}

.se-book-btn-wrap {
  text-align: center;
  margin: 0.9rem 0 0.4rem;
}
.se-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.4rem;
  background: linear-gradient(135deg, var(--gold) 0%, #aa8830 100%);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(201, 168, 76, 0.35);
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
}
.se-book-btn:hover {
  background: #8a6c20;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
}

.se-event-deco-bottom {
  text-align: center;
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.4rem;
}

/* ---- RIGHT VISUAL ---- */
.se-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.se-model-img {
  width: 100%;
  max-width: 560px;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 4px 4px 0 0;
}
.se-model-placeholder {
  display: none;
  width: 100%;
  max-width: 560px;
  height: 420px;
  background: linear-gradient(180deg, #c5d8e8 0%, #e8d5b0 100%);
  align-items: center;
  justify-content: center;
  border-radius: 4px 4px 0 0;
  color: #4a6580;
  font-size: 1rem;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
}

/* ---- BOTTOM NAV BAR ---- */
.se-footer-bar {
  position: relative;
  z-index: 2;
  background: #1e3a5f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.1rem 2rem;
  margin-top: 0;
}
.se-footer-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #d4c47a;
  text-transform: uppercase;
}
.se-footer-item svg {
  width: 22px;
  height: 22px;
  stroke: #d4c47a;
  flex-shrink: 0;
}
.se-footer-sep {
  color: rgba(212, 196, 122, 0.4);
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 860px) {
  .se-content {
    grid-template-columns: 1fr;
  }
  .se-visual {
    justify-content: center;
    order: -1;
  }
  .se-model-img,
  .se-model-placeholder {
    height: 300px;
    max-width: 100%;
    border-radius: 4px;
  }
  .se-arch--1,
  .se-arch--2 {
    display: none;
  }
  .se-leaf {
    display: none;
  }
  .se-event-box {
    min-width: unset;
    width: 100%;
  }
}
@media (max-width: 520px) {
  .se-footer-bar {
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
  }
  .se-footer-sep {
    display: none;
  }
  .se-dates-row {
    gap: 0.3rem;
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
[data-reveal="up"] {
  transform: translateY(40px);
}
[data-reveal="left"] {
  transform: translateX(-40px);
}
[data-reveal="right"] {
  transform: translateX(40px);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-delay="100"] {
  transition-delay: 0.1s;
}
[data-delay="200"] {
  transition-delay: 0.2s;
}
[data-delay="300"] {
  transition-delay: 0.3s;
}
[data-delay="400"] {
  transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 0.5rem 1.75rem;
  }
  .stat-divider {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    max-width: 460px;
    margin-inline: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 80vw);
    background: rgba(253, 248, 238, 0.99);
    backdrop-filter: blur(18px);
    padding: 6rem 2rem 2rem;
    z-index: 800;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }
  /* Mobile nav links — warm mahogany text on cream panel */
  .nav-links a {
    font-size: 0.85rem;
    color: rgba(80, 48, 22, 0.75);
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold);
  }
  .hamburger {
    display: flex;
  }
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .slider-arrow {
    display: none;
  }
  .slide-caption {
    display: none;
  }
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --section-py: 4rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    gap: 1.5rem;
  }
  .stat-item {
    padding: 0.5rem 1rem;
  }
  .hero-title {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 1.75rem 1.25rem;
  }
  .about-pillars {
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GALLERY  — soft lavender-blush pastel
   ============================================================ */
.gallery {
  background: linear-gradient(
    160deg,
    var(--lavender-soft) 0%,
    var(--blush) 50%,
    var(--lavender-soft) 100%
  );
}

.gallery-grid {
  columns: 4;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(80, 30, 55, 0.62) 0%,
    rgba(80, 30, 55, 0.1) 60%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.gallery-overlay span {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.75);
  transition: transform 0.35s var(--ease-out);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:hover .gallery-overlay span {
  transform: scale(1);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(35, 10, 30, 0.97);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(0.92);
  transition: transform 0.35s var(--ease-out);
  display: block;
}
.lightbox.open .lightbox-inner img {
  transform: scale(1);
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin-top: 0.85rem;
  font-family: var(--font-sans);
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.75rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.lightbox-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.lightbox-prev {
  left: 1.25rem;
}
.lightbox-next {
  right: 1.25rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    columns: 3;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    columns: 2;
  }
}
@media (max-width: 380px) {
  .gallery-grid {
    columns: 1;
  }
}

/* ============================================================
   ONLOAD POPUP FORM  — gold accents
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(80, 25, 55, 0.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.popup-overlay.popup-visible {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 2rem 2rem 1.75rem;
  width: 90%;
  max-width: 420px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s ease;
  box-shadow: 0 24px 64px rgba(80, 30, 55, 0.2);
}
.popup-overlay.popup-visible .popup-box {
  transform: translateY(0);
}
.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s;
}
.popup-close:hover {
  color: var(--gold);
}
.popup-header {
  margin-bottom: 1.25rem;
  text-align: center;
}
.popup-banner-msg {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f7edd5 0%, #fdf8ee 100%);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #8a6a1f;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.popup-banner-msg-alt {
  display: block;
  margin-top: -0.25rem;
  background: linear-gradient(90deg, #eef6ff 0%, #f8fbff 100%);
  border-color: rgba(95, 140, 190, 0.35);
  color: #2f5d8a;
}
.popup-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.popup-header p {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.popup-input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(201, 168, 76, 0.28);
  border-radius: 6px;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  outline: none;
  background: var(--blush);
  color: var(--charcoal);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.popup-input:focus {
  border-color: var(--gold);
  background: var(--white);
}
.popup-submit {
  padding: 0.8rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 0.25rem;
}
.popup-submit:hover {
  background: #aa8830;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #25a244;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(37, 162, 68, 0.45);
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  animation: float-pulse 2.5s ease-in-out infinite;
}
.float-call:hover {
  background: #1e8a38;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37, 162, 68, 0.55);
}
.float-call svg {
  flex-shrink: 0;
}
@keyframes float-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 162, 68, 0.45);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 162, 68, 0.75);
  }
}

@media (max-width: 480px) {
  .float-call span {
    display: none;
  }
  .float-call {
    padding: 0.85rem;
    border-radius: 50%;
  }
}
