/* ===========================
   VARIABLES — Opal warm sandy cream theme
   =========================== */
:root {
  --sand: #EDE8DF;
  --sand-light: #F5F1EA;
  --sand-mid: #E4DDD3;
  --sand-dark: #D6CFC4;
  --warm-white: #FAF8F4;
  --gold: #B8935A;
  --gold-light: #D4B48A;
  --gold-pale: #EAD9C0;
  --dark: #1C1510;
  --dark2: #2E2118;
  --taupe: #8B7356;
  --taupe-light: #B09A7E;
  --gray: #474038;
  --gray-light: #A09488;
  --font-display: 'Cormorant Garamond', 'Didot', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --transition: all 0.4s ease;
}

/* ===========================
   RESET & BASE
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  background: transparent;
}

/* Background Layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background-image: url('images/bgw.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Mobile */
@media (max-width: 768px) {
  body::before {
    background-position: right center;
    background-size: cover;
  }

  .pkg-list li {
    padding: 2px 0 !important;
  }

  .simple-modal__body {
    padding: 10px 14px 0px 14px !important;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(245, 241, 234, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--sand-dark), 0 4px 20px rgba(28, 21, 16, 0.07);
}

.nav.scrolled .nav-top {
  display: none;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 3rem 0.4rem;
  position: relative;
  transition: padding 0.4s ease;
}

.nav.scrolled .nav-top {
  padding: 0.5rem 3rem 0.3rem;
}

.nav-social {
  position: absolute;
  right: 3rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-social a {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav-social a:hover {
  opacity: 1;
}

.nav-social svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s;
}

.nav.scrolled .nav-social svg {
  stroke: var(--dark);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 0.2rem; */
}

.nav-logo img {
  width: 80px;
  height: 65px;
  object-fit: contain;
  transition: width 0.4s, height 0.4s;
}

.nav.scrolled .nav-logo img {
  width: 80px;
  height: 50px;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  transition: color 0.4s, font-size 0.4s;
  line-height: 1;
}

.nav-logo-by {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  transition: color 0.4s;
}

.nav.scrolled .nav-logo-name {
  color: var(--dark);
  font-size: 1.5rem;
}

.nav.scrolled .nav-logo-by {
  color: var(--taupe);
}

.nav-links-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 0.55rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.4s;
}

.nav.scrolled .nav-links-bar {
  border-top-color: var(--sand-dark);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color 0.3s;
  padding-bottom: 2px;
  cursor: pointer;
}

.nav.scrolled .nav-link {
  color: var(--dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s;
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-white);
  border: 1px solid var(--sand-dark);
  min-width: 180px;
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  box-shadow: 0 8px 28px rgba(28, 21, 16, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 0.4rem);
}

.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
}

.dropdown-menu a:hover {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}

.nav.scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--dark);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .m-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920&q=95');
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
  transform-origin: center center;
  transition: transform 10s ease;
}

#packages {
  /* inset: 0; */
  background-image: linear-gradient(rgba(10, 10, 10, 0.315), rgba(39, 39, 39, 0.377)), url('images/bg-pkg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 30%;
  padding: 40px 0px;
  background-position: top;
}

.hero-img.zoom {
  transform: scale(1.07);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(14, 10, 7, 0.62) 0%,
      rgba(14, 10, 7, 0.38) 45%,
      rgba(14, 10, 7, 0.10) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 6vh;
  left: 6vw;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  color: #fff;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-title span {
  display: block;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 10px;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}

.hero-cta:hover {
  color: #fff;
  border-color: #fff;
}

.hero-scroll-line {
  position: absolute;
  bottom: 0;
  right: 6vw;
  width: 1px;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
  z-index: 2;
}

/* ===========================
   PHOTO STRIP
   =========================== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 50vh;
  min-height: 300px;
}

.photo-strip-item {
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.08);
}

/* ===========================
   INTRO
   =========================== */
.intro {
  text-align: center;
  padding: 5rem 0rem 2rem 2rem;
  /* background: var(--warm-white); */
}

.intro-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  /* margin-bottom: 2.5rem; */
}

.intro-ornament::before,
.intro-ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--sand-dark);
}

/* .intro-ornament img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  opacity: 0.55;
} */

.intro-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--dark);
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}

.intro-sub {
  font-size: 0.99rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

.intro-link {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.intro-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ===========================
   STATS RIBBON
   =========================== */
.stats-ribbon {
  background: var(--sand);
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1rem 4rem;
  flex: 1;
  min-width: 140px;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--dark);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.4rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--sand-dark);
  flex-shrink: 0;
}

/* ===========================
   ABOUT
   =========================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-img {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.about-img:hover img {
  transform: scale(1.04);
}

.about-text {
  /* background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgb(252 217 197);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1); */
  padding: 1rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.64rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.about-body {
  font-size: 0.99rem;
  color: var(--gray);
  line-height: 1.95;
  margin-bottom: 1rem;
}

.about-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-top: 2rem;
}

.text-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--sand-dark);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ===========================
   SERVICES — Favor Station Ideas style
   (warm cream, matching the flyer)
   =========================== */
.services {
  background: var(--sand-light);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sand-dark);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Top header */
.services-top {
  text-align: center;
  margin-bottom: 4rem;
}

.services-script-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--dark2);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.services-heart {
  font-size: 1.4rem;
  color: var(--gold);
  display: inline-block;
  margin-left: 0.5rem;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.services-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-top: 1rem;
}

/* Two-column layout: stations list + photos */
.services-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}

.stations-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.station-group {}

.station-group-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.station-group-title::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.station-items li {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: black;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--sand-mid);
  transition: color 0.3s, padding-left 0.3s;
  cursor: default;
  font-weight: 500;
}

.station-items li:last-child {
  border-bottom: none;
}

.station-items li:hover {
  color: var(--dark);
  padding-left: 6px;
}

/* Gold divider */
.stations-divider {
  text-align: center;
  margin: 3rem 0 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--gold);
}

.stations-divider::before,
.stations-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light));
}

.stations-divider::after {
  background: linear-gradient(to left, transparent, var(--gold-light));
}

.stations-divider span {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Right side photos */
.services-photos {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 120px;
}

.services-photo-card {
  position: relative;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 4px 20px rgba(28, 21, 16, 0.12), 0 1px 3px rgba(28, 21, 16, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s;
  aspect-ratio: 4/3;
}

.services-photo-card:nth-child(2) {
  transform: rotate(1.2deg);
  margin-left: 12px;
}

.services-photo-card:nth-child(3) {
  transform: rotate(-0.8deg);
  margin-right: 8px;
}

.services-photo-card:hover {
  transform: rotate(0) scale(1.02) !important;
  box-shadow: 0 8px 32px rgba(28, 21, 16, 0.18);
}

.services-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── PORTFOLIO GRID ── */
.portfolio {
  /* background: var(--warm-white); */
  padding: 5rem 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

/* Second item spans 2 rows for visual variety */
/* .portfolio-item:nth-child(2) {
  grid-row: span 2;
  aspect-ratio: unset;
} */

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(28, 21, 16, 0.877) 0%,
      rgba(28, 21, 16, 0.534) 55%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.75rem 1.25rem;
  opacity: 1;
  transition: opacity 0.4s;
}

/* .portfolio-item:hover .portfolio-overlay {
  opacity: 1;
} */

.portfolio-overlay {
  /* pointer-events: none; */
}

.p-couple {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.44rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.p-quote {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.7rem;
}

.p-view {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
  border-bottom: 1px solid rgba(184, 147, 90, 0.5);
  padding-bottom: 2px;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 6, 4, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open {
  display: flex;
}

.lb-img-wrap {
  max-width: 90vw;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbFadeIn 0.35s ease;
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
    transform: scale(0.93);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lb-img-wrap img {
  /* max-width: 90vw;
  max-height: 78vh; */
  height: 400px;
  object-fit: cover;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  border-radius: 2px;
}

.lb-caption {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 600px;
  padding: 0 2rem;
  line-height: 1.65;
}

/* Counter badge */
.lb-counter {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.lb-close {
  position: absolute;
  top: 1.8rem;
  right: 2.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  line-height: 1;
}

.lb-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.lb-prev {
  left: 2rem;
}

.lb-next {
  right: 2rem;
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* Thumbnail strip at the bottom */
.lb-thumbs {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lb-thumb {
  width: 50px;
  height: 36px;
  object-fit: cover;
  opacity: 0.4;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
  border-radius: 2px;
}

.lb-thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

.lb-thumb:hover {
  opacity: 0.75;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 {
  transition-delay: 0.12s;
}

.reveal.d2 {
  transition-delay: 0.24s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item:nth-child(2) {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 600px) {
  .portfolio {
    padding: 0rem 0rem 5rem 0rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .lb-prev {
    left: 0.5rem;
    width: 40px;
    height: 40px;
  }

  .lb-next {
    right: 0.5rem;
    width: 40px;
    height: 40px;
  }

  /* .lb-thumbs {
    display: none;
  } */
}

/* ===========================
   PACKAGES
   =========================== */
.packages {
  /* padding: 7rem 0; */
  /* background: var(--sand); */
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1140px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}




.pkg {
  /* background: var(--warm-white); */
  padding: 2rem;
  border: 1px solid var(--sand-dark);
  transition: box-shadow 0.4s, transform 0.4s;
  perspective: 800px;
}

.pkg:hover {
  box-shadow: 0 20px 60px rgba(28, 21, 16, 0.1);
}

.pkg.highlight {
  background: rgb(255 255 255 / 76%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(252 217 197);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  color: black;
  cursor: pointer;
}

.highlight1 {
  background: rgb(247 211 191 / 77%) !important;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(252 217 197);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  color: black;
  cursor: pointer;
}

.pkg-label {
  font-size: 0.64rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pkg.highlight .pkg-label {
  color: var(--gold-light);
}

.pkg-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold-light);
}

.pkg-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 550;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.pkg.highlight .pkg-title {
  color: #000000;
}

.pkg-desc {
  font-size: 0.88rem;
  color: #000;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.text-white {
  color: white !important;
}

.pkg.highlight .pkg-desc {
  color: rgb(27, 26, 26);
}

.pkg-divider {
  width: 1px;
  height: 36px;
  background: var(--sand-dark);
  margin-bottom: 2rem;
}

.pkg.highlight .pkg-divider {
  background: rgba(255, 255, 255, 0.1);
}

.pkg-list {
  margin-bottom: 2.5rem;
}

.pkg-list li {
  font-size: 0.99rem;
  color: black;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--sand-mid);
  display: flex;
  /* align-items: center; */
  gap: 0.75rem;
  font-weight: 400;
}

.pkg.highlight .pkg-list li {
  color: black;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pkg-list li:last-child {
  border-bottom: none;
}

.pkg-list li::before {
  content: '—';
  color: #ff9100;
  font-size: 0.9rem;
}

.pkg-cta {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--sand-dark);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.pkg-cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.pkg.highlight .pkg-cta {
  color: black;
  border-color: rgba(51, 41, 41, 0.35);
}

.pkg.highlight .pkg-cta:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ===========================
   SECTION SHARED
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 2rem;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 0.99rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.9;
}

.divider {
  width: 1px;
  height: 48px;
  background: var(--sand-dark);
  margin: 1.5rem auto;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 5rem 0;
  /* background: var(--warm-white); */
}

.faq-wrap {
  max-width: 780px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--sand-mid);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--dark);
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-ico {
  font-size: 1.2rem;
  color: var(--gold-light);
  transition: transform 0.35s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-q.open .faq-ico {
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}

.faq-a-inner {
  padding: 0 0 1.75rem;
  font-size: 0.99rem;
  color: var(--gray);
  line-height: 1.45;
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: 0 0 7rem 0;
  /* background: var(--sand-light); */
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr ;
  gap: 6rem;
  max-width: 1234px;
  margin: 4rem auto 0;
  padding: 3rem 5rem;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(252 217 197);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  color: black;
}

.contact-inner .lable{
  margin-bottom: 40px !important;
}

.contact-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-body {
  font-size: 0.99rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.contact-detail svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact-detail span {
  font-size: 0.99rem;
  color: var(--gray);
}

.form-group {
  margin-bottom: 1.10rem;
}

.custom-select-wrapper {
  width: 100%;
}

.select-box {
  position: relative;
}

.select-box select {
  width: 100%;
  height: 40px;
  padding: 0 50px 0 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  color: #222;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.select-box select:focus {
  border-color: #d4a373;
  box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.15);
  outline: none;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
  transition: transform 0.3s ease;
}

/* Rotate arrow when focused */
.select-box.active .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.form-group label {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: black;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.11rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand-dark);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--dark);
}

.form-group textarea {
  resize: none;
  height: 80px;
}

.form-group select {
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  background: #2e2118;
  border: none;
  border: 1px solid var(--sand-dark);
  border-radius: 10px;
  padding: 3px 10px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.form-submit:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.form-success {
  display: none;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}

.form-success.show {
  display: block;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: rgb(252 217 197 / 62%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(252 217 197);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  color: black;
  padding: 5rem 0 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  width: 58px;
  height: 38px;
  object-fit: contain;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.85);
}

.footer-logo-by {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-light);
}

.footer-tagline {
  font-size: 1rem;
  color: rgb(0, 0, 0);
  line-height: 1.8;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.f-social {
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s;
}

.f-social:hover {
  opacity: 1;
}

.f-social svg {
  width: 16px;
  height: 16px;
  stroke: #473a3a;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 1rem;
  color: rgb(0, 0, 0);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: rgba(0, 0, 0, 0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 2rem 0;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.712);
  max-width: 1100px;
  margin: 0 auto;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 {
  transition-delay: 0.12s;
}

.reveal.d2 {
  transition-delay: 0.24s;
}

.reveal.d3 {
  transition-delay: 0.36s;
}

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1024px) {
  .services-body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-photos {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
  }

  .services-photo-card {
    flex: 1;
    min-width: 200px;
  }

  .services-photo-card:nth-child(2),
  .services-photo-card:nth-child(3) {
    transform: none;
    margin: 0;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-img {
    min-height: 400px;
  }

  .about-text {
    padding: 5rem 3rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 1.5rem;
    margin-top: 0rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .stat-item {
    padding: 1rem 2rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item:nth-child(2) {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .portfolio-item:nth-child(2) img {
    height: 100%;
  }
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */
@media (max-width: 768px) {
  .nav-social {
    display: none;
  }

  .packages-grid>div:nth-child(3) {
    grid-column: span 1;
  }

  .section-header {
    margin-bottom: 0rem;
  }

  .label {
    font-size: 0.88rem;
  }

  .testimonial-card {
    padding: 20px !important;
  }

  .testimonials-section {
    padding: 0rem 0rem 5rem 0rem !important;
  }

  /* body {
    background-position: right;
  } */

  .nav-links-bar {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-top {
    padding: 1rem 1.5rem 0.75rem;
  }

  .nav.scrolled .nav-top {
    padding: 0.6rem 1.5rem 0.4rem;
  }

  /* Container wrapper to keep layout dimensions controlled */
  .swiper-relative-wrapper {
    width: 100vw !important;
  }

  .hero-content {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 7vh;
  }

  .hero-scroll-line {
    display: none;
  }

  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 50vw;
  }

  .intro {
    padding: 3rem 1.5rem;
  }
  
  .intro-sub{
    margin-bottom: 0px;
  }

  .form-group input,
.form-group select,
.form-group textarea, .select-box{
  width: 90%;
}
#rc-anchor-container {
  width: 90% !important; 
}

  .stats-ribbon {
    padding: 2.5rem 1rem;
  }

  .stat-item {
    padding: 0.75rem 1.5rem;
    min-width: 120px;
  }

  .stat-divider {
    height: 40px;
  }

  .about-text {
    padding: 5rem 1.5rem;
  }

  .services {
    padding: 5rem 0;
  }

  .services-inner {
    padding: 0 1.5rem;
  }

  .stations-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-photos {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .portfolio-item:nth-child(2) {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .packages,
  .contact {
    padding: 0rem 0 5rem 0;
  }

  .faq {
    padding: 5rem 0rem;
  }

  .faq .section-header {
    margin-bottom: 2rem;
  }

  .pkg {
    padding: 1.2rem 1rem;
  }

  .pkg-title{
    font-size: 1.99rem;
  }

  .pkg-desc{
    margin-bottom: 0.9rem;
  }

  .faq-wrap {
    padding: 0 1.5rem;
    margin-top: 0rem;
  }

  .contact>div {
    padding: 0 1.1rem !important;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .mobile-menu {
    gap: 0.3rem;
    /* margin-top: 80px; */
  }
}

/* @media (max-width: 768px) {

  body {
    background-attachment: scroll;
    background-position: right;
    background-size: auto;
    background-repeat: repeat-y;
    overflow-x: hidden;

  }
} */

@media (max-width: 480px) {
  .photo-strip {
    height: 55vw;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .portfolio-item:nth-child(2) {
    aspect-ratio: 4/3;
  }
}

/* testimonials */

.testimonials-section {
  padding: 0rem 2rem 7rem 2rem;
  /* background-color: #fdfaf7; */
  /* overflow: hidden; */
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.testimonial-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1064px;
  margin: 0 auto;
  align-items: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  /* Matching your site */
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  color: #333;
}

.section-title span {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-top: 15px;
  color: #c5a059;
}

.testimonial-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(252 217 197);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.quote-icon {
  font-size: 5rem;
  font-family: serif;
  color: #c5a059;
  line-height: 0;
  margin-bottom: 20px;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
  font-style: italic;
}

.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #c5a059;
}

/* Container wrapper to keep layout dimensions controlled */
.swiper-relative-wrapper {
  position: relative;
  width: 56vw;
  margin: auto;
  /* Optional: Adds space so your arrows don't clip cards on narrow viewports */
  /* padding: 0 50px; 
  box-sizing: border-box; */
}

.swiper {
  width: 100%;
}

/* Individual Navigation Buttons styling rules */
.swiper-button-prev-custom,
.swiper-button-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  color: #333;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  background: #faebd7a1;
  border-radius: 30px;
}

/* Float Left Button completely onto the outer margin edge */
.swiper-button-prev-custom {
  left: 5px;
}

/* Float Right Button completely onto the outer margin edge */
.swiper-button-next-custom {
  right: 5px;
}

/* Automatically handles opacity reduction if Swiper loop flag is false */
.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  color: #c5a059;
}

/* Ensure the wrapper collapses beautifully when heights change */
.swiper-wrapper {
  align-items: flex-start;
  /* Aligns items to the top instead of stretching them */
  transition: height 0.3s ease-in-out;
  /* Smoothly transitions layout shifts */
}



/* Mobile Responsiveness */
@media (max-width: 992px) {
  .testimonial-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .swiper-controls {
    justify-content: center;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .swiper {
    width: 90%;
  }
}

/* Clean block configuration for read more triggers */
.more-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.toggleMore {
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-sans), sans-serif;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
  background: #2e2118;
  padding: 4px 8px;
  border-radius: 4px;
}

.toggleMore:hover {
  color: #e6e6e6;
}

.more-content {
  display: none;
  /* Controlled cleanly by your JS */
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin: 0;
}

.swiper-slide {
  height: auto !important;
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.hidden-btn {
  display: none !important;
}

/* Scroll to Top Button Styling */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background-color: rgba(11, 12, 16, 0.85);
  /* Deep dark matching theme */
  color: #ffffff;
  border: 1px solid rgba(212, 195, 186, 0.2);
  /* Thin luxury border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  /* Ensures it sits over all sections */

  /* Smooth Fade & Slide transitions */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SVG Arrow Hover Animation */
.scroll-to-top svg {
  transition: transform 0.3s ease;
}

/* Active Show State */
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Premium Hover Effect */
.scroll-to-top:hover {
  background-color: #db8585;
  /* Your brand orange accent color */
  border-color: #db8585;
  color: #ffffff;
}

.scroll-to-top:hover svg {
  transform: translateY(-3px);
  /* Subtle nudge upwards on hover */
}

/* Clear focus ring for accessibility */
.scroll-to-top:focus-visible {
  outline: 2px solid #db8585;
  outline-offset: 3px;
}

/* Responsive adjust for smaller mobile screens */
@media (max-width: 576px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}


.simple-modal {
  display: none;
  /* hidden */
  position: fixed;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  z-index: 9999;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Dialog box */
.simple-modal__dialog {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}

/* Visible state */
.simple-modal.open {
  display: flex;
}

.simple-modal.open .simple-modal__dialog {
  transform: translateY(0);
  opacity: 1;
}

/* Close button */
.simple-modal__close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* Body content */
.simple-modal__body {
  padding: 28px 28px 24px 28px;
  color: #222;
  font-family: Arial, sans-serif;
}

.simple-modal__body h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.simple-modal__body ul {
  margin: 0;
  padding-left: 18px;
  color: #444;
}

.simple-modal__body li {
  margin-bottom: 8px;
}

.simple-modal__body img {
  height: 250px;
  object-fit: cover;
}