/* ==========================================================================
   MAYRAHKEE SPA — style.css
   Luxury spa landing page. Black + Gold (#ffac02) on warm white.
   Sections are ordered to match index.html. All colours are CSS variables
   at the very top so the whole site can be re-skinned in seconds.
   ========================================================================== */

/* ==========================================================================
   0. THEME TOKENS  —  ✏️  CHANGE COLOURS HERE ONLY
   ========================================================================== */
:root {
  /* --- Brand palette --- */
  --clr-dark: #141210;
  /* soft black — base for dark sections */
  --clr-dark-2: #201b15;
  /* layered dark */
  --clr-gold: #ffac02;
  /* PRIMARY brand accent */
  --clr-gold-soft: #ffc74d;
  /* lighter gold for gradients */
  --clr-gold-deep: #d98e00;
  /* deep gold for hover / active */

  /* --- Neutrals / backgrounds --- */
  --clr-white: #ffffff;
  --clr-cream: #faf6ef;
  /* warm off-white section bg */
  --clr-sand: #f3ebdd;
  /* warm beige accent */
  --clr-ink: #2b2621;
  /* body text on light */
  --clr-muted: #7c7268;
  /* muted text */
  --clr-line: #ece2d3;
  /* hairline borders */

  /* --- Type --- */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  /* --- Rhythm / shape --- */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 20px rgba(20, 18, 16, .06);
  --shadow-md: 0 18px 45px rgba(20, 18, 16, .10);
  --shadow-gold: 0 14px 34px rgba(255, 172, 2, .32);
  --section-y: clamp(3.5rem, 7vw, 6.5rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ==========================================================================
   1. BASE / RESET
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  color: var(--clr-ink);
  background: var(--clr-white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  /* guard against horizontal scroll */
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .3s var(--ease);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .01em;
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

::selection {
  background: var(--clr-gold);
  color: var(--clr-dark);
}

.text-gold {
  color: var(--clr-gold);
}

/* ==========================================================================
   2. SHARED SECTION SCAFFOLDING
   ========================================================================== */
.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--cream {
  background: var(--clr-cream);
}

.section--dark {
  background: var(--clr-dark);
  color: #efe7db;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clr-gold-deep);
  margin-bottom: .9rem;
  position: relative;
  padding-left: 2.4rem;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.8rem;
  height: 1px;
  background: var(--clr-gold);
}

.eyebrow--light {
  color: var(--clr-gold-soft);
}

.section__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--clr-ink);
  margin-bottom: 1rem;
}

.section__title--light {
  color: #fbf6ee;
}

.section__head {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section__head .eyebrow {
  padding-left: 0;
}

.section__head .eyebrow::before {
  display: none;
}

.section__intro {
  color: var(--clr-muted);
  font-size: 1.05rem;
}

.section--dark .section__intro {
  color: #c9bfb2;
}

.lead-muted {
  color: var(--clr-muted);
  font-size: 1.08rem;
  margin-bottom: 1.4rem;
}

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--clr-gold);
  color: var(--clr-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .85rem 1.9rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.btn-gold:hover {
  background: var(--clr-gold-deep);
  color: var(--clr-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 172, 2, .42);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: .95rem;
  padding: .8rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 100px;
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--clr-dark);
  border-color: #fff;
}

/* ==========================================================================
   4. TOP BAR
   ========================================================================== */
.topbar {
  background: var(--clr-dark);
  color: #d9cfc0;
  font-size: .84rem;
  padding: .5rem 0;
  letter-spacing: .01em;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #d9cfc0;
}

.topbar__link:hover {
  color: var(--clr-gold);
}

.topbar__link .ico {
  width: 15px;
  height: 15px;
  fill: var(--clr-gold);
}

.topbar__hours {
  color: #b7ac9d;
}

.topbar__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, .2);
}

.topbar__social {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.topbar__social svg {
  width: 14px;
  height: 14px;
  fill: #d9cfc0;
  transition: fill .3s var(--ease);
}

.topbar__social:hover {
  background: var(--clr-gold);
  transform: translateY(-2px);
}

.topbar__social:hover svg {
  fill: var(--clr-dark);
}

/* ==========================================================================
   5. STICKY HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clr-line);
  transition: box-shadow .35s var(--ease), background .35s var(--ease), padding .35s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-dark);
  transition: transform .5s var(--ease);
}

.brand__mark svg {
  width: 26px;
  height: 26px;
  fill: var(--clr-gold);
}

.brand:hover .brand__mark {
  transform: rotate(-8deg) scale(1.05);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--clr-ink);
  letter-spacing: .02em;
}

.brand__sub {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .42em;
  color: var(--clr-gold-deep);
  padding-left: .1rem;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  color: var(--clr-ink);
  padding: .5rem .95rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: .95rem;
  right: .95rem;
  bottom: .35rem;
  height: 2px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.navbar-nav .nav-link:hover {
  color: var(--clr-gold-deep);
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  color: var(--clr-dark) !important;
  padding: .6rem 1.5rem;
}

.nav-cta::after {
  display: none;
}

/* custom hamburger */
.navbar-toggler {
  border: none;
  padding: .4rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-bar {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--clr-ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
  position: relative;
}

.hero__carousel,
.hero__carousel .carousel-inner,
.hero__carousel .carousel-item {
  height: 100%;
}

.hero__carousel {
  min-height: min(88vh, 760px);
}

.hero__bg {
  min-height: min(88vh, 760px);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease forwards;
}

.carousel-item.active .hero__bg {
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1);
  }
}

/* dark scrim so side content is readable, biased to the left */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* above carousel-fade active slide (z-index:1) */
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(15, 13, 11, .82) 0%, rgba(15, 13, 11, .55) 42%, rgba(15, 13, 11, .15) 75%, rgba(15, 13, 11, .05) 100%);
}

.hero__content {
  max-width: 560px;
  color: #fff;
  padding-block: 2rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero__title em {
  font-style: italic;
  color: var(--clr-gold);
}

.hero__lead {
  font-size: 1.12rem;
  color: #e7ddce;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.hero__meta div {
  display: flex;
  flex-direction: column;
}

.hero__meta strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--clr-gold);
}

.hero__meta span {
  font-size: .82rem;
  letter-spacing: .06em;
  color: #cfc4b5;
}

.hero__ctrl {
  width: 54px;
  height: 54px;
  top: auto;
  bottom: 2rem;
  z-index: 3;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  display: grid;
  place-items: center;
  opacity: 1;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.hero__ctrl:hover {
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-color: var(--clr-gold);
}

.carousel-control-prev.hero__ctrl {
  left: auto;
  right: 5rem;
}

.carousel-control-next.hero__ctrl {
  right: 2rem;
}

/* ==========================================================================
   7. MARQUEE
   ========================================================================== */
.marquee {
  background: var(--clr-dark);
  border-block: 1px solid rgba(255, 172, 2, .25);
  overflow: hidden;
  padding: 1.1rem 0;
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  color: #efe7db;
  padding-inline: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
}

.marquee__dot {
  color: var(--clr-gold);
  font-style: normal;
  font-size: 1rem;
}

/* ==========================================================================
   8. ABOUT
   ========================================================================== */
.about__media {
  position: relative;
  padding: 0 1.5rem 2.5rem 0;
}

.about__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about__img-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  border-radius: var(--radius-sm);
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 1/1;
}

.about__badge {
  position: absolute;
  top: 1.4rem;
  left: -0.6rem;
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-radius: var(--radius-sm);
  padding: .9rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.about__badge-num {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about__badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.about__badge span:last-child {
  font-size: .74rem;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: .8rem;
}

.tick {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 172, 2, .15);
  color: var(--clr-gold-deep);
  display: grid;
  place-items: center;
  font-size: .8rem;
  margin-top: .2rem;
}

.floaty {
  position: absolute;
  color: var(--clr-gold);
  opacity: .5;
}

.floaty--1 {
  top: -0.5rem;
  right: 2rem;
  font-size: 2rem;
  animation: floatY 5s ease-in-out infinite;
}

.floaty--2 {
  bottom: 4rem;
  left: -1rem;
  font-size: 1.6rem;
  animation: floatY 6s ease-in-out infinite reverse;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ==========================================================================
   9. SERVICES  — grid with a sweeping left→right highlight
   ========================================================================== */
.service-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
}

.service-card__img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-card__body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.service-card__title {
  font-size: 1.4rem;
  margin-bottom: .5rem;
  color: var(--clr-ink);
  transition: color .3s var(--ease);
}

.service-card__body p {
  font-size: .93rem;
  color: var(--clr-muted);
  margin-bottom: 1rem;
}

.service-card__link {
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  color: var(--clr-gold-deep);
  display: inline-flex;
  gap: .4rem;
  align-items: center;
}

.service-card__link span {
  transition: transform .3s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover .service-card__img img {
  transform: scale(1.08);
}

.service-card:hover .service-card__title {
  color: var(--clr-gold-deep);
}

.service-card:hover .service-card__link span {
  transform: translateX(5px);
}

/* gold sweep line that animates in on hover from the top */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Ambient "blink wave" that runs card-to-card, left → right, and loops.
   Each card lights its top bar in sequence via staggered delay. */
.services__grid .col-md-6:nth-child(1) .service-card::after {
  animation-delay: 0s;
}

.services__grid .col-md-6:nth-child(2) .service-card::after {
  animation-delay: .35s;
}

.services__grid .col-md-6:nth-child(3) .service-card::after {
  animation-delay: .7s;
}

.services__grid .col-md-6:nth-child(4) .service-card::after {
  animation-delay: 1.05s;
}

.services__grid .col-md-6:nth-child(5) .service-card::after {
  animation-delay: 1.4s;
}

.services__grid .col-md-6:nth-child(6) .service-card::after {
  animation-delay: 1.75s;
}

.services__grid .col-md-6:nth-child(7) .service-card::after {
  animation-delay: 2.1s;
}

.services__grid .col-md-6:nth-child(8) .service-card::after {
  animation-delay: 2.45s;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 2px var(--clr-gold);
  opacity: 0;
  pointer-events: none;
  animation: cardWave 2.8s var(--ease) infinite;
}

@keyframes cardWave {

  0%,
  100% {
    opacity: 0;
  }

  8% {
    opacity: .9;
  }

  20% {
    opacity: 0;
  }
}

/* ==========================================================================
   10. WHY CHOOSE US
   ========================================================================== */
.why__media {
  margin-top: 1.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why__media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.why__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: #fff;
}

.why-item__ico {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--clr-dark);
  color: var(--clr-gold);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: transform .4s var(--ease);
}

.why-item:hover .why-item__ico {
  transform: rotate(-8deg) scale(1.06);
}

.why-item__title {
  font-size: 1.25rem;
  margin-bottom: .3rem;
  color: var(--clr-ink);
}

.why-item p {
  font-size: .9rem;
  color: var(--clr-muted);
  margin: 0;
}

/* ==========================================================================
   11. HOW IT WORKS  — timeline
   ========================================================================== */
.how__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  position: relative;
}

.how__timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 172, 2, .55) 0 10px, transparent 10px 20px);
}

.how-step {
  position: relative;
  text-align: center;
  padding-top: .5rem;
}

.how-step__num {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--clr-dark-2);
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  margin-bottom: 1.1rem;
  transition: background .4s var(--ease), transform .4s var(--ease);
}

.how-step:hover .how-step__num {
  background: var(--clr-gold);
  color: var(--clr-dark);
  transform: translateY(-4px);
}

.how-step__title {
  font-size: 1.35rem;
  color: #fbf6ee;
  margin-bottom: .5rem;
}

.how-step p {
  font-size: .92rem;
  color: #c1b7aa;
  margin: 0;
}

/* ==========================================================================
   12. GALLERY CAROUSEL  — continuous rAF marquee, ~5 across
   ========================================================================== */
.gcarousel {
  overflow: hidden;
  padding-block: .5rem;
}

.gcarousel__track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.gcarousel__item {
  flex: 0 0 calc((100% - 4rem) / 5);
  /* 5 visible on desktop, 4 gaps of 1rem */
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gcarousel__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.gcarousel__item:hover img {
  transform: scale(1.06);
}

/* ==========================================================================
   13. GALLERY GRID
   ========================================================================== */
.gallery-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-tile img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 18, 16, .5));
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.gallery-tile:hover img {
  transform: scale(1.08);
}

.gallery-tile:hover::after {
  opacity: 1;
}

/* ==========================================================================
   14. FAQ
   ========================================================================== */
.faq__accordion .accordion-item {
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .85rem;
  overflow: hidden;
  background: #fff;
}

.faq__accordion .accordion-button {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-ink);
  background: #fff;
  padding: 1.15rem 1.3rem;
}

.faq__accordion .accordion-button:not(.collapsed) {
  color: var(--clr-gold-deep);
  background: var(--clr-cream);
  box-shadow: none;
}

.faq__accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--clr-gold);
}

.faq__accordion .accordion-button::after {
  width: 1.1rem;
  height: 1.1rem;
  background-size: 1.1rem;
}

.faq__accordion .accordion-body {
  color: var(--clr-muted);
  font-size: .96rem;
  padding: 0 1.3rem 1.3rem;
}

/* ==========================================================================
   15. TESTIMONIALS
   ========================================================================== */
.testi__carousel {
  max-width: 780px;
  margin-inline: auto;
}

.testi-card {
  background: var(--clr-dark-2);
  border: 1px solid rgba(255, 172, 2, .2);
  border-radius: var(--radius);
  padding: 3rem 2.5rem 2.4rem;
  text-align: center;
  position: relative;
  margin: 1rem;
}

.testi-card__quote {
  position: absolute;
  top: -0.4rem;
  left: 1.6rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--clr-gold);
  opacity: .25;
}

.testi-card p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: #f3ece1;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}

.testi-card footer {
  display: flex;
  flex-direction: column;
}

.testi-card footer strong {
  color: var(--clr-gold);
  font-size: 1.05rem;
  letter-spacing: .04em;
}

.testi-card footer span {
  font-size: .82rem;
  color: #b0a596;
}

.testi-card__stars {
  color: var(--clr-gold);
  letter-spacing: .2em;
  margin-top: .8rem;
  font-size: .95rem;
}

.testi__dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.6rem;
}

.testi__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, .25);
  transition: width .35s var(--ease), background .35s var(--ease);
}

.testi__dots button.active {
  width: 30px;
  border-radius: 6px;
  background: var(--clr-gold);
}

/* ==========================================================================
   16. CONTACT
   ========================================================================== */
.contact__info {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact__info li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.3rem;
}

.contact__ico {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  color: var(--clr-gold-deep);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.contact__info strong {
  display: block;
  color: var(--clr-ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.contact__info p {
  margin: .1rem 0 0;
  color: var(--clr-muted);
  font-size: .95rem;
}

.contact__info a:hover {
  color: var(--clr-gold-deep);
}

.contact__form {
  background: #fff;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact__form .form-label {
  font-weight: 500;
  font-size: .9rem;
  color: var(--clr-ink);
  margin-bottom: .35rem;
}

.contact__form .opt {
  color: var(--clr-muted);
  font-weight: 400;
}

.contact__form .form-control,
.contact__form .form-select {
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  font-size: .95rem;
  background: var(--clr-cream);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.contact__form .form-control:focus,
.contact__form .form-select:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 .2rem rgba(255, 172, 2, .18);
  background: #fff;
}

.form__note {
  font-size: .9rem;
  font-weight: 500;
}

.form__note.ok {
  color: #2e7d32;
}

.form__note.err {
  color: #c0392b;
}

.contact__map {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-line);
}

.contact__map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--clr-dark);
  color: #c3b9ab;
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.footer__brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 172, 2, .35);
}

.footer__brand-mark svg {
  width: 30px;
  height: 30px;
  fill: var(--clr-gold);
}

.footer__brand .brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer__brand .brand__name {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: .02em;
}

.footer__brand .brand__sub {
  font-family: var(--font-body);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .42em;
  color: var(--clr-gold);
}

.footer__about {
  font-size: .93rem;
  color: #a99e90;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.footer__social svg {
  width: 17px;
  height: 17px;
  fill: #c3b9ab;
  transition: fill .3s var(--ease);
}

.footer__social a:hover {
  background: var(--clr-gold);
  transform: translateY(-3px);
}

.footer__social a:hover svg {
  fill: var(--clr-dark);
}

.footer__title {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-gold-soft);
  margin-bottom: 1.1rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: .6rem;
}

.footer__links a {
  font-size: .93rem;
  color: #b6ab9d;
}

.footer__links a:hover {
  color: var(--clr-gold);
  padding-left: 5px;
}

.footer__contact {
  font-size: .93rem;
  color: #a99e90;
  font-style: normal;
  line-height: 1.9;
}

.footer__contact a:hover {
  color: var(--clr-gold);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 3rem;
  padding: 1.4rem 0;
  font-size: .84rem;
  color: #8f857a;
}

.footer__bottom p {
  margin: 0;
}

/* ==========================================================================
   18. FLOATING BUTTONS + BACK TO TOP
   ========================================================================== */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.06);
}

.float-btn--wa {
  left: 22px;
  background: #25d366;
}

.float-btn--call {
  right: 22px;
  background: var(--clr-gold);
}

.float-btn--call svg {
  fill: var(--clr-dark);
}

/* gentle attention pulse */
.float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 currentColor;
  opacity: .5;
  animation: ring 2.4s ease-out infinite;
}

.float-btn--wa::before {
  color: #25d366;
}

.float-btn--call::before {
  color: var(--clr-gold);
}

@keyframes ring {
  0% {
    box-shadow: 0 0 0 0 currentColor;
    opacity: .5;
  }

  100% {
    box-shadow: 0 0 0 16px currentColor;
    opacity: 0;
  }
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1039;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--clr-dark);
  color: var(--clr-gold);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--clr-gold);
  color: var(--clr-dark);
}

/* ==========================================================================
   19. SCROLL REVEAL
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   20. RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    background: #fff;
    border: 1px solid var(--clr-line);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-top: .8rem;
    box-shadow: var(--shadow-md);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .nav-cta {
    display: inline-block;
    margin-top: .6rem;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(15, 13, 11, .55), rgba(15, 13, 11, .82));
  }

  .why__list {
    grid-template-columns: 1fr;
  }

  .how__timeline {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.2rem;
  }

  .how__timeline::before {
    display: none;
  }

  .gcarousel__item {
    flex-basis: calc((100% - 2rem) / 3);
  }

  /* 3 across on tablet */
}

@media (max-width: 575.98px) {
  :root {
    --section-y: 3.2rem;
  }

  /* prevent g-5 negative-margin bleed past the container on small screens */
  .row {
    --bs-gutter-x: 1.5rem;
  }

  .hero__meta {
    gap: 1.4rem;
  }

  .hero__meta strong {
    font-size: 1.6rem;
  }

  .hero__actions .btn-gold,
  .hero__actions .btn-ghost {
    flex: 1 1 auto;
    justify-content: center;
  }

  .how__timeline {
    grid-template-columns: 1fr;
  }

  .gcarousel__item {
    flex-basis: calc((100% - 1rem) / 2);
  }

  /* 2 across on mobile */
  .testi-card {
    padding: 2.4rem 1.4rem 1.8rem;
  }

  .testi-card p {
    font-size: 1.2rem;
  }

  .about__media {
    padding-right: 0;
  }

  .about__img-float {
    width: 40%;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ==========================================================================
   21. ACCESSIBILITY — respect reduced motion
   (marquees switch to a static state via JS; here we calm the rest)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clr-gold-deep);
  outline-offset: 2px;
}