﻿/* ============================================================
   BLOCK 1 (extracted from index.html)
============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0d0d0d;
  --ggr: linear-gradient(145deg, #C8860A 0%, #E8B84B 50%, #C8860A 100%);
  --gold: #C8860A;
  --gold2: #E8B84B;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: #0d0d0d;
}

#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  max-width: 1380px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 48px;
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color .22s ease;
}

.nav-links a:hover {
  color: var(--gold2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color .22s;
}

.nav-call i {
  color: var(--gold);
  font-size: 0.6rem;
}

.nav-call:hover {
  color: #fff;
}

/* ── Cart icon in navbar (with item count badge) ───────────── */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: color .2s, background .2s, transform .15s;
}
.nav-cart i { font-size: 1rem; }
.nav-cart:hover {
  color: var(--gold2);
  background: rgba(232,184,75,0.10);
}
.nav-cart:active { transform: scale(0.94); }
.nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 100px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(220,38,38,0.55);
}
.nav-cart-badge[hidden] { display: none; }
.nav-cart-mob { display: none; }

.nav-login {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  padding: 8px 18px;
  background: var(--ggr);
  border-radius: 6px;
  filter: brightness(1.08);
  box-shadow: 0 3px 14px rgba(200, 134, 10, 0.4);
  transition: filter .25s, transform .22s;
  white-space: nowrap;
}

.nav-login:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.nav-login-mob {
  display: none;
}

.nav-btn {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding: 9px 22px;
  background: var(--ggr);
  border-radius: 6px;
  box-shadow: 0 3px 14px rgba(200, 134, 10, 0.4), 0 0 20px rgba(232, 184, 75, 0.2);
  transition: filter .25s ease, transform .22s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  filter: brightness(1.08);
}

.nav-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left .5s ease;
}

.nav-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(216, 160, 109, 0.4);
}

.nav-btn:hover::after {
  left: 140%;
}

.mob-call {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-left: auto;
}

.mob-call i {
  color: var(--gold2);
  font-size: 0.65rem;
}

.h-mob-phone {
  display: none;
}

.mob-strip {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 998;
  background: #080808;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(201, 151, 42, 0.12);
}

.mob-strip::-webkit-scrollbar {
  display: none;
}

.mob-strip-inner {
  display: inline-flex;
}

.mob-strip a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.mob-strip a:hover {
  color: var(--gold2);
}

.mob-strip .s-book {
  color: var(--gold2);
  font-weight: 700;
  background: rgba(201, 151, 42, 0.07);
}

.mob-strip .s-login {
  color: var(--gold2);
  font-weight: 700;
  border: 1px solid rgba(200, 134, 10, 0.3);
  margin: 6px 8px;
  padding: 4px 14px;
  border-radius: 4px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(90svh + 60px);
  overflow: hidden;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ── Aurora-style integrated background glow ────────────────────
   The wrapper clips edges so you never see a "circle moving".
   Inside is an oversized layer with 3 stacked radial-gradients that
   translate together — feels like the black background itself is
   slowly breathing warm light, not like a discrete shape drifting.
   One layer, one animation, transform-only → essentially free. */

/* ── Ambient twinkling dots over the hero ───────────────────── */
.hero-twinkles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}
.hero-twinkles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 10px 3px rgba(232, 184, 75, 0.5);
  opacity: 0;
  will-change: opacity, transform;
}
.hero-twinkles span:nth-child(1)  { top: 12%; left:  8%; animation: hero-twinkle 5.2s ease-in-out 0.0s infinite, hero-drift 14s linear 0.0s infinite; }
.hero-twinkles span:nth-child(2)  { top: 22%; left: 18%; animation: hero-twinkle 6.0s ease-in-out 1.2s infinite, hero-drift 17s linear 2.0s infinite; }
.hero-twinkles span:nth-child(3)  { top: 35%; left: 12%; animation: hero-twinkle 4.4s ease-in-out 2.0s infinite, hero-drift 16s linear 1.0s infinite; }
.hero-twinkles span:nth-child(4)  { top: 48%; left: 25%; animation: hero-twinkle 5.6s ease-in-out 0.6s infinite, hero-drift 19s linear 3.5s infinite; }
.hero-twinkles span:nth-child(5)  { top: 64%; left: 10%; animation: hero-twinkle 4.8s ease-in-out 2.4s infinite, hero-drift 15s linear 0.8s infinite; }
.hero-twinkles span:nth-child(6)  { top: 78%; left: 22%; animation: hero-twinkle 5.0s ease-in-out 1.8s infinite, hero-drift 18s linear 2.4s infinite; }
.hero-twinkles span:nth-child(7)  { top: 18%; left: 42%; animation: hero-twinkle 6.4s ease-in-out 0.4s infinite, hero-drift 16s linear 1.6s infinite; }
.hero-twinkles span:nth-child(8)  { top: 30%; left: 56%; animation: hero-twinkle 5.4s ease-in-out 2.8s infinite, hero-drift 20s linear 4.0s infinite; }
.hero-twinkles span:nth-child(9)  { top: 50%; left: 48%; animation: hero-twinkle 4.6s ease-in-out 1.0s infinite, hero-drift 17s linear 2.2s infinite; }
.hero-twinkles span:nth-child(10) { top: 68%; left: 60%; animation: hero-twinkle 5.8s ease-in-out 3.0s infinite, hero-drift 19s linear 3.0s infinite; }
.hero-twinkles span:nth-child(11) { top: 14%; left: 75%; animation: hero-twinkle 5.0s ease-in-out 1.6s infinite, hero-drift 15s linear 0.5s infinite; }
.hero-twinkles span:nth-child(12) { top: 38%; left: 82%; animation: hero-twinkle 6.2s ease-in-out 0.8s infinite, hero-drift 18s linear 2.8s infinite; }
.hero-twinkles span:nth-child(13) { top: 58%; left: 88%; animation: hero-twinkle 5.0s ease-in-out 2.2s infinite, hero-drift 16s linear 1.4s infinite; }
.hero-twinkles span:nth-child(14) { top: 80%; left: 78%; animation: hero-twinkle 5.6s ease-in-out 0.2s infinite, hero-drift 20s linear 3.6s infinite; }

@keyframes hero-twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  50%      { opacity: 1;    transform: scale(1.4); }
}
@keyframes hero-drift {
  from { translate: 0 0; }
  to   { translate: 18px -28px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-twinkles { display: none; }
}
@media (max-width: 768px) {
  .hero-twinkles span {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 8px 2px rgba(232, 184, 75, 0.45);
  }
  .hero-twinkles span:nth-child(1)  { animation-duration: 3.2s, 8s;   }
  .hero-twinkles span:nth-child(2)  { animation-duration: 3.8s, 9s;   }
  .hero-twinkles span:nth-child(3)  { animation-duration: 2.8s, 9s;   }
  .hero-twinkles span:nth-child(4)  { animation-duration: 3.5s, 10s;  }
  .hero-twinkles span:nth-child(5)  { animation-duration: 3.0s, 8.5s; }
  .hero-twinkles span:nth-child(6)  { animation-duration: 3.2s, 10s;  }
  .hero-twinkles span:nth-child(7)  { animation-duration: 4.0s, 9s;   }
  .hero-twinkles span:nth-child(8)  { animation-duration: 3.4s, 11s;  }
  .hero-twinkles span:nth-child(9)  { animation-duration: 2.9s, 9.5s; }
  .hero-twinkles span:nth-child(10) { animation-duration: 3.6s, 10.5s;}
  .hero-twinkles span:nth-child(11) { animation-duration: 3.1s, 8s;   }
  .hero-twinkles span:nth-child(12) { animation-duration: 3.9s, 10s;  }
  .hero-twinkles span:nth-child(13) { animation-duration: 3.2s, 9s;   }
  .hero-twinkles span:nth-child(14) { animation-duration: 3.5s, 11s;  }
}

.hero-img-wrap {
  position: absolute;
  left: 28%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.12) 12%, rgba(0, 0, 0, 0.55) 26%, rgba(0, 0, 0, 0.88) 40%, black 55%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.12) 12%, rgba(0, 0, 0, 0.55) 26%, rgba(0, 0, 0, 0.88) 40%, black 55%);
}

.hero-img-wrap img.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.hero-img-wrap img.slide.active {
  opacity: 1;
}

.hero-img-mobile {
  display: none !important;
}

.hero-img-wrap img.slide-m {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img-wrap img.slide-m.active {
  opacity: 1;
}

.svc-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: stretch;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(216, 160, 109, 0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-bar.in {
  opacity: 1;
  transform: translateY(0);
}

.svc-bar-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background .25s;
  text-decoration: none;
}

.svc-bar-card:hover {
  background: rgba(216, 160, 109, 0.08);
}

.svc-bar-icon {
  width: 34px;
  height: 34px;
  background: var(--ggr);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.svc-bar-title {
  font-size: 0.74rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.svc-bar-sub {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.9);
}

.svc-bar-divider {
  width: 1px;
  background: rgba(216, 160, 109, 0.12);
  align-self: stretch;
}

.hero-rule {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--ggr);
  z-index: 10;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .95s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-rule.in {
  transform: scaleX(1);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 64px 64px 72px 100px;
  max-width: 650px;
  width: 100%;
}

.h-el {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}

.h-el.in {
  opacity: 1;
  transform: translateY(0);
}

.h-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2px;
}

.h-title-gold {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.1;
  background: linear-gradient(
    90deg,
    #d9a532 0%,
    #f0c040 35%,
    #ffffff 50%,
    #f0c040 65%,
    #d9a532 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 22px;
  text-decoration: none;
  -webkit-text-decoration: none;
  animation:
    h-title-shift 4.5s linear infinite,
    h-title-glow  3s   ease-in-out infinite;
  will-change: background-position, filter;
}
@keyframes h-title-shift {
  from { background-position:   0% 50%; }
  to   { background-position: 200% 50%; }
}
@keyframes h-title-glow {
  0%, 100% {
    filter:
      drop-shadow(0 0 4px  rgba(240,192,64,0.20))
      drop-shadow(0 0 10px rgba(232,184,75,0.10));
  }
  50% {
    filter:
      drop-shadow(0 0 8px  rgba(240,192,64,0.35))
      drop-shadow(0 0 18px rgba(232,184,75,0.18));
  }
}
@media (prefers-reduced-motion: reduce) {
  .h-title-gold { animation: none; filter: none; }
}

.h-thin-rule {
  width: 34px;
  height: 1.5px;
  background: var(--ggr);
  margin-bottom: 18px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .5s ease, transform .75s cubic-bezier(0.22, 1, 0.36, 1);
}

.h-thin-rule.in {
  opacity: 1;
  transform: scaleX(1);
}

.h-desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  max-width: 440px;
  margin-bottom: 32px;
}

.h-desc strong {
  color: #fff;
  font-weight: 600;
}

.h-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ggr);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 22px;
  height: 42px;
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .32s, transform .26s;
  box-shadow: 0 4px 20px rgba(200, 134, 10, 0.4), 0 0 24px rgba(232, 184, 75, 0.2);
  white-space: nowrap;
  filter: brightness(1.08);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-18deg);
  transition: left .55s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(216, 160, 109, 0.35);
}

.btn-primary:hover::after {
  left: 140%;
}

.btn-primary i {
  font-size: 0.65rem;
  transition: transform .3s;
}

.btn-primary:hover i {
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .3s, color .3s, background .3s;
}

.btn-ghost:hover {
  border-color: rgba(216, 160, 109, 0.45);
  color: var(--gold2);
  background: rgba(216, 160, 109, 0.06);
}

.h-stats {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.h-stat {
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.h-stat:not(:first-child) {
  padding-left: 28px;
}

.h-stat:last-child {
  border-right: none;
}

.hs-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.hs-lbl {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width:1100px) {

  .nav-links,
  .nav-call,
  .nav-btn,
  .nav-login,
  .nav-right .nav-cart {
    display: none;
  }

  .nav-cart-mob {
    display: inline-flex;
  }

  .mob-call {
    display: flex;
  }

  .mob-strip {
    display: block;
  }

  .hero-img-wrap {
    left: 20%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 14%, rgba(0, 0, 0, 0.52) 28%, rgba(0, 0, 0, 0.88) 42%, black 56%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 14%, rgba(0, 0, 0, 0.52) 28%, rgba(0, 0, 0, 0.88) 42%, black 56%);
  }

  .hero-content {
    max-width: 510px;
    padding: 80px 36px 60px;
  }
}

/* =======================================
   MOBILE HERO — overlay ONLY behind text
   Image top stays completely unaffected
======================================= */
@media (max-width:768px) {
  #desktopSlider {
    display: none !important;
  }

  .hero-img-mobile {
    display: block !important;
  }

  /* Full-bleed image background with content overlaid at the bottom.
     Uses 100svh so it always fills the visible viewport on every phone height. */
  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--black);
    position: relative;
    overflow: hidden;
  }

  /* Image fills the ENTIRE hero (absolute, behind content) */
  .hero-img-wrap.hero-img-mobile {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-image: none;
    mask-image: none;
    z-index: 1;
  }
  #mobileSlider img.slide-m {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(1.0) saturate(1.05);
  }

  /* Disable any leftover bottom fade on the image element itself */
  .hero-img-wrap.hero-img-mobile::after { display: none; }

  /* Dark gradient overlay — keeps the top of the image clean and fades to
     near-solid black at the bottom so text on top of it is readable. */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(to top,
      rgba(10,10,10,0.97) 0%,
      rgba(10,10,10,0.92) 22%,
      rgba(10,10,10,0.55) 42%,
      rgba(10,10,10,0.18) 62%,
      rgba(10,10,10,0)    82%);
    pointer-events: none;
  }

  /* Content sits at the BOTTOM of the hero, over the gradient. */
  .hero-content {
    max-width: 100%;
    padding: 80px 24px 36px;
    position: relative;
    z-index: 10;
    margin-top: 0;
    background: transparent;
    flex: 0 0 auto;
  }

  /* Service strip — horizontally scrollable on mobile, sits at the bottom of the hero */
  .svc-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0;
    position: relative;
    z-index: 10;
  }
  .svc-bar::-webkit-scrollbar { display: none; }
  .svc-bar-card {
    flex: 0 0 auto;
    gap: 9px;
    padding: 11px 16px;
  }
  .svc-bar-icon { width: 28px; height: 28px; font-size: 0.68rem; }
  .svc-bar-title { font-size: 0.66rem; margin-bottom: 1px; white-space: nowrap; }
  .svc-bar-sub   { font-size: 0.52rem; white-space: nowrap; }
  .svc-bar-divider { width: 1px; align-self: center; height: 28px; }
}

@media (max-width:640px) {
  .nav-wrap {
    padding: 0 16px;
    height: 52px;
    justify-content: space-between;
  }

  .logo {
    margin-right: 0;
  }

  .logo-img {
    width: 28px;
    height: 28px;
  }

  .logo-name {
    font-size: 0.95rem;
  }

  .nav-login {
    display: none !important;
  }

  .nav-login-mob {
    display: flex !important;
    align-items: center;
    font-size: 0.6rem;
    padding: 7px 14px;
  }

  .mob-strip {
    top: 52px;
  }

  .hero-img-wrap {
    left: 0%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-img-wrap img {
    object-position: center;
  }

  .hero-content {
    padding: 70px 20px 32px;
    margin-top: 0;
  }

  .h-title,
  .h-title-gold {
    font-size: clamp(1.65rem, 6.5vw, 2.3rem);
    margin-bottom: 0;
    text-decoration: none;
  }

  .h-title-gold {
    margin-bottom: 18px;
  }

  .h-thin-rule {
    margin-bottom: 18px;
  }

  .h-desc {
    margin-bottom: 24px;
  }

  .h-btns {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
  }

  .btn-primary,
  .btn-ghost {
    flex: 1;
    min-width: 130px;
    font-size: 0.58rem;
    padding: 0 14px;
    height: 40px;
  }

  .h-stats {
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
  }

  .h-stat {
    flex: 0;
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .h-stat:first-child {
    padding-left: 0;
    text-align: center;
  }

  .h-stat:last-child {
    border-right: none;
    padding-right: 0;
  }

  .hs-num {
    font-size: 1.2rem;
  }

  .hs-lbl {
    font-size: 0.5rem;
  }

  .mob-call {
    display: none !important;
  }

  .h-mob-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
  }

  .h-stats {
    margin-bottom: 8px;
  }

  .h-mob-phone i {
    color: var(--gold2);
    font-size: 0.65rem;
  }
}

/* =======================================
   GALLERY SECTION
======================================= */
/* HERO — SMALL PHONES (≤380px) — uses the same full-bleed image background
   as 768px; only adjusts typography/spacing for very narrow viewports. */
@media (max-width:380px) {

  /* Content padding tightened (the layout itself is inherited from the 768 block) */
  .hero-content {
    padding: 70px 18px 30px;
  }

  .h-title,
  .h-title-gold {
    font-size: clamp(1.65rem, 6.5vw, 2.3rem);
    margin-bottom: 0;
    text-decoration: none;
  }

  .h-title-gold {
    margin-bottom: 18px;
  }

  .h-thin-rule {
    margin-bottom: 18px;
  }

  .h-desc {
    margin-bottom: 24px;
  }

  .h-btns {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
  }

  .btn-primary,
  .btn-ghost {
    flex: 1;
    min-width: 130px;
    font-size: 0.58rem;
    padding: 0 14px;
    height: 40px;
  }

  .h-stats {
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
  }

  .h-stat {
    flex: 0;
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .h-stat:first-child {
    padding-left: 0;
    text-align: center;
  }

  .h-stat:last-child {
    border-right: none;
    padding-right: 0;
  }

  .hs-num {
    font-size: 1.2rem;
  }

  .hs-lbl {
    font-size: 0.5rem;
  }

  .mob-call {
    display: none !important;
  }

  .h-mob-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
  }

  .h-mob-phone i {
    color: var(--gold2);
    font-size: 0.65rem;
  }

  /* Service strip stays visible at this size — tighten card padding */
  .svc-bar-card { padding: 10px 13px; }
}

.gl-section {
  background: linear-gradient(160deg, #fdfaf2 0%, #f9f2e3 40%, #f5ead4 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.gl-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--ggr);
  z-index: 2;
}

.gl-header {
  position: relative;
  text-align: center;
  padding: 56px 24px 32px;
  z-index: 2;
}

.gl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.gl-eyeline {
  display: none;
}

.gl-eyelabel {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gl-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: #0d0d0d;
  line-height: 1.1;
  margin-bottom: 14px;
}

.gl-title em {
  font-style: normal;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gl-sub {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3a3a3a;
  line-height: 1.8;
  margin-bottom: 36px;
}

.gl-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.gl-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(200, 134, 10, 0.25);
  background: rgba(255, 255, 255, 0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all .3s ease;
  backdrop-filter: blur(6px);
}

.gl-filter i {
  font-size: 0.65rem;
}

.gl-filter:hover {
  border-color: rgba(200, 134, 10, 0.5);
  color: var(--gold);
  background: rgba(200, 134, 10, 0.06);
}

.gl-filter.active {
  background: var(--ggr);
  color: #0d0d0d;
  border-color: transparent;
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(200, 134, 10, 0.35);
}

.gl-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 0 20px;
}

.gl-divider-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 134, 10, 0.35));
}

.gl-divider-line:last-child {
  background: linear-gradient(to left, transparent, rgba(200, 134, 10, 0.35));
}

.gl-divider-icon {
  color: var(--gold);
  font-size: 0.75rem;
}

.gl-grid-wrap {
  padding: 0 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.gl-grid {
  column-count: 5;
  column-gap: 10px;
}

.gl-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gl-item.hidden {
  display: none;
}

.gl-item img {
  width: 100%;
  height: auto;
  /* keep the image's natural aspect ratio — no cropping */
  display: block;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gl-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(to top, rgba(10, 7, 2, 0.92) 0%, rgba(10, 7, 2, 0.65) 35%, rgba(10, 7, 2, 0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px 20px;
}

.gl-item:hover .gl-overlay {
  opacity: 1;
}

.gl-item:hover img {
  transform: scale(1.07);
}

.gl-overlay-tag {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.35s ease 0.05s;
}

.gl-overlay-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.35s ease 0.1s;
}

.gl-overlay-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200, 134, 10, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  font-size: 0.7rem;
  transform: scale(0.7) rotate(-15deg);
  opacity: 0;
  transition: all 0.3s ease 0.08s;
  box-shadow: 0 4px 14px rgba(200, 134, 10, 0.4);
}

.gl-item:hover .gl-overlay-tag,
.gl-item:hover .gl-overlay-title {
  transform: translateY(0);
  opacity: 1;
}

.gl-item:hover .gl-overlay-zoom {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

/* Shape classes no longer force aspect ratios — each photo renders
   at its true proportions so nothing is cropped. */
.gl-item.tall img,
.gl-item.wide img,
.gl-item.sq img,
.gl-item.short img {
  aspect-ratio: auto;
}

.gl-item.featured {
  outline: 2px solid rgba(200, 134, 10, 0.3);
  outline-offset: -2px;
}

.gl-item.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1.5px solid rgba(232, 184, 75, 0.2);
  pointer-events: none;
  z-index: 3;
}

.gl-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  background: var(--ggr);
  color: #0d0d0d;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  filter: brightness(1.08);
  box-shadow: 0 2px 8px rgba(200, 134, 10, 0.4);
}

.gl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 4, 1, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}

.gl-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.gl-lb-inner {
  position: relative;
  max-width: 880px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gl-lb-img-wrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(200, 134, 10, 0.25);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 134, 10, 0.1);
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gl-lightbox.open .gl-lb-img-wrap {
  transform: scale(1);
}

.gl-lb-img-wrap img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.gl-lb-meta {
  text-align: center;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s ease 0.15s;
}

.gl-lightbox.open .gl-lb-meta {
  transform: translateY(0);
  opacity: 1;
}

.gl-lb-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.gl-lb-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.gl-lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.gl-lb-close:hover {
  background: rgba(200, 134, 10, 0.3);
  color: var(--gold2);
  border-color: rgba(200, 134, 10, 0.4);
}

.gl-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  z-index: 2;
}

.gl-lb-nav:hover {
  background: var(--gold);
  color: #0d0d0d;
  border-color: transparent;
}

.gl-lb-prev {
  left: -64px;
}

.gl-lb-next {
  right: -64px;
}

.gl-load-wrap {
  display: flex;
  justify-content: center;
  padding: 36px 24px 0;
}

.gl-load-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1.5px solid rgba(200, 134, 10, 0.4);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.gl-load-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ggr);
  opacity: 0;
  transition: opacity .3s;
}

.gl-load-btn:hover {
  color: #0d0d0d;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(200, 134, 10, 0.35);
}

.gl-load-btn:hover::before {
  opacity: 1;
}

.gl-load-btn span,
.gl-load-btn i {
  position: relative;
  z-index: 1;
}

/* =======================================
   MASONRY GRID RESPONSIVE
======================================= */
@media (max-width: 1200px) {
  .gl-grid {
    column-count: 4;
  }

  .gl-lb-prev {
    left: -52px;
  }

  .gl-lb-next {
    right: -52px;
  }
}

@media (max-width: 900px) {
  .gl-grid {
    column-count: 3;
  }

  .gl-grid-wrap {
    padding: 0 16px;
  }

  .gl-lb-prev {
    left: -44px;
  }

  .gl-lb-next {
    right: -44px;
  }
}

@media (max-width: 640px) {
  .gl-header {
    padding: 44px 20px 28px;
  }

  .gl-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .gl-filters {
    gap: 6px;
  }

  .gl-filter {
    padding: 8px 14px;
    font-size: 0.64rem;
  }

  .gl-grid {
    columns: 2;
    column-gap: 10px;
  }

  .gl-grid-wrap {
    padding: 0 14px;
  }

  .gl-item {
    margin-bottom: 10px;
    border-radius: 10px;
  }

  .gl-item img {
    border-radius: 10px;
  }

  .gl-overlay {
    border-radius: 10px;
    padding: 14px 12px 12px;
  }

  .gl-overlay-title {
    font-size: 0.78rem;
  }

  .gl-lb-prev,
  .gl-lb-next {
    display: none;
  }

  .gl-lb-img-wrap {
    border-radius: 12px;
  }

  .gl-load-wrap {
    padding: 28px 24px 0;
  }
}

@media (max-width: 380px) {

  /* Keep 2 columns even on tiny phones like iPhone SE (375px) */
  .gl-grid {
    columns: 2;
    column-gap: 8px;
  }

  .gl-grid-wrap {
    padding: 0 10px;
  }

  .gl-item {
    margin-bottom: 8px;
  }

  .gl-filter span {
    display: none;
  }

  .gl-filter {
    padding: 9px 12px;
  }

  .gl-overlay-title {
    font-size: 0.68rem;
  }
}

/* ============================================================
   BLOCK 2 (extracted from index.html)
============================================================ */
.br-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fdf3e7 60%, #f9e8d0 100%);
  padding-bottom: 12px;
}

.br-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.br-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.br-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 251, 245, 0.6) 0%, rgba(255, 251, 245, 0.3) 22%, rgba(255, 251, 245, 0.05) 38%, transparent 48%), linear-gradient(to top, rgba(255, 251, 245, 1) 0%, rgba(255, 251, 245, 0.95) 18%, rgba(255, 251, 245, 0.55) 34%, transparent 52%);
}

.br-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 40px 140px;
  max-width: 44%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.br-eyebrow {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #0d0d0d;
  margin-bottom: 12px;
}

.br-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  width: 100%;
}

.br-dline {
  height: 1px;
  background: var(--ggr);
  opacity: 0.45;
  width: 48px;
  flex: none;
}

.br-dicon {
  color: var(--gold);
  font-size: 0.7rem;
}

.br-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  color: #0d0d0d;
  margin: 0;
  text-align: center;
}

.br-title em {
  font-style: normal;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.br-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.85;
  color: #0d0d0d;
  max-width: 360px;
  margin-bottom: 14px;
  text-align: center;
}

.br-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ggr);
  color: #0d0d0d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  border-radius: 6px;
  transition: filter .25s, transform .22s;
  box-shadow: 0 4px 18px rgba(200, 134, 10, 0.45), 0 0 20px rgba(232, 184, 75, 0.2);
  filter: brightness(1.08);
  align-self: center;
}

.br-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.br-btn i {
  font-size: 0.58rem;
  transition: transform .3s;
}

.br-btn:hover i {
  transform: translateX(4px);
}

.br-card-wrap {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  margin-top: 0;
}

.br-card {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #fffbf2 0%, #faecd0 100%);
  border: 1px solid rgba(216, 160, 109, 0.18);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.br-feat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 14px;
  gap: 8px;
}

.br-sep {
  width: 1px;
  background: rgba(216, 160, 109, 0.15);
  align-self: stretch;
  flex-shrink: 0;
}

.br-feat-icon {
  width: 52px;
  height: 52px;
  background: var(--ggr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  font-size: 1rem;
  margin-bottom: 4px;
}

.br-feat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.br-feat-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .br-content {
    padding: 48px 36px 28px;
    max-width: 60%;
  }

  .br-card-wrap {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .br-section {
    display: flex;
    flex-direction: column;
  }

  .br-bg {
    position: absolute;
    inset: 0;
    height: 62%;
  }

  .br-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .br-fade {
    background: linear-gradient(to bottom, rgba(255, 251, 245, 0.15) 0%, rgba(255, 251, 245, 0.25) 35%, rgba(255, 251, 245, 0.85) 58%, rgba(255, 251, 245, 1) 72%);
  }

  .br-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 52px 20px 20px;
    align-items: flex-start;
    min-height: 58vw;
  }

  .br-title {
    text-align: left;
    font-size: clamp(1.5rem, 6.5vw, 2.1rem);
  }

  .br-eyebrow {
    text-align: left;
  }

  .br-divider {
    justify-content: flex-start;
  }

  .br-desc {
    text-align: left;
    font-size: 0.8rem;
    max-width: 260px;
  }

  .br-btn {
    font-size: 0.62rem;
    padding: 11px 20px;
  }

  .br-card-wrap {
    position: relative;
    z-index: 2;
    padding: 0 16px;
  }

  .br-card {
    flex-direction: column;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
  }

  .br-feat {
    display: grid;
    grid-template-columns: 44px 90px 1fr;
    align-items: center;
    text-align: left;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(216, 160, 109, 0.1);
    flex: none;
  }

  .br-feat:last-child {
    border-bottom: none;
  }

  .br-feat-icon {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .br-feat-title {
    font-size: 0.65rem;
    text-align: left;
    margin: 0;
  }

  .br-feat-desc {
    font-size: 0.65rem;
    text-align: left;
    margin: 0;
  }

  .br-sep {
    display: none;
  }
}

@media (max-width: 480px) {
  .br-content {
    padding: 44px 16px 16px;
  }

  .br-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
}

/* ============================================================
   BLOCK 3 (extracted from index.html)
============================================================ */
.stats-banner {
  background: linear-gradient(198deg, #1a1000 0%, #2e1f00 40%, #1a1000 100%);
  background-image: url('/assets/img/stats-bg.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 52px 64px;
  width: 100%;
}

.sb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.sb-icon {
  font-size: 1.1rem;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.sb-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.sb-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.sb-sep {
  width: 1px;
  height: 52px;
  background: rgba(216, 160, 109, 0.25);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .stats-banner {
    padding: 28px 20px;
  }

  .sb-inner {
    flex-wrap: wrap;
    gap: 20px;
  }

  .sb-stat {
    flex: 0 0 40%;
  }

  .sb-sep {
    display: none;
  }
}

/* ============================================================
   BLOCK 4 (extracted from index.html)
============================================================ */
.sv-section {
  background: linear-gradient(135deg, #ffffff 0%, #fdfaf2 35%, #faf2e0 65%, #f5e8cc 100%);
  overflow: visible;
  position: relative;
}

.sv-hdr {
  position: relative;
  padding: 40px 380px 40px;
  overflow: visible;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.sv-hdr-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  flex-shrink: 0;
}

.sv-portrait-row {
  display: contents;
}

.sv-portrait {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 5;
  top: 50%;
  transform: translateY(-35%);
}

.sv-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sv-portrait-left {
  left: 20px;
}

.sv-portrait-right {
  right: 20px;
}

.sv-hdr-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.sv-hdr-line {
  display: none;
}

.sv-hdr-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #0d0d0d;
}

.sv-hdr-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #0d0d0d;
  line-height: 1.1;
  margin-bottom: 8px;
}

.sv-hdr-title em {
  font-style: normal;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sv-hdr-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #3a3a3a;
  line-height: 1.75;
  margin-bottom: 20px;
}

.sv-pills-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.sv-pills {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(216, 160, 109, 0.25);
  border-radius: 100px;
  padding: 5px;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.sv-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.45);
  background: transparent;
  cursor: pointer;
  transition: all .3s;
}

.sv-pill i {
  font-size: 0.7rem;
}

.sv-pill.active {
  background: var(--ggr);
  color: #0d0d0d;
  filter: brightness(1.08);
  box-shadow: 0 4px 14px rgba(216, 160, 109, 0.3);
}

.sv-pill:not(.active):hover {
  color: rgba(0, 0, 0, 0.7);
  background: rgba(216, 160, 109, 0.07);
}

.sv-row {
  display: none;
  padding: 0 48px 20px;
}

.sv-row.active {
  display: block;
}

.sv-row-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 20px 20px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.sv-row.active .sv-row-wrap:first-child {
  padding-top: 60px;
}

.sv-cards-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
  padding-left: 14px;
  padding-bottom: 8px;
  cursor: grab;
}

.sv-cards-track:active {
  cursor: grabbing;
}

.sv-cards-track::-webkit-scrollbar {
  display: none;
}

.sv-row-light,
.sv-row-dark {
  background: linear-gradient(135deg, #fffff8 0%, #fdf8ec 100%);
  border: 1px solid rgba(216, 160, 109, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.sv-lbl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  flex: 0 0 180px;
  min-width: 180px;
}

.sv-lbl-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  word-break: keep-all;
}

.sv-lbl-rose,
.sv-lbl-gold {
  color: #0d0d0d;
}

.sv-lbl-divider,
.sv-lbl-divider-gold {
  color: var(--gold);
  font-size: 0.75rem;
}

.sv-lbl-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 1.65;
  margin: 0;
}

.sv-lbl-desc-dark {
  color: #0d0d0d;
}

.sv-lbl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d0d0d;
  text-decoration: none;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  padding: 7px 14px;
  border-radius: 6px;
  width: fit-content;
  transition: all .25s;
}

.sv-lbl-btn:hover,
.sv-lbl-btn-dark:hover {
  background: #0d0d0d;
  color: #fff;
}

.sv-lbl-btn-dark {
  color: #0d0d0d;
  border-color: rgba(0, 0, 0, 0.2);
}

.sv-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 12px 14px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  flex: 0 0 230px;
  min-width: 230px;
  scroll-snap-align: start;
}

.sv-card-light,
.sv-card-dark {
  background: #fff;
  border: 1px solid rgba(216, 160, 109, 0.18);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.sv-card-light:hover,
.sv-card-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(216, 160, 109, 0.4);
}

.sv-card-pop {
  border-color: rgba(216, 160, 109, 0.3) !important;
}

.sv-pop-badge {
  position: absolute;
  top: 12px;
  left: -2px;
  background: var(--ggr);
  color: #0d0d0d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px 4px 16px;
  filter: brightness(1.08);
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.sv-card-img {
  position: relative;
  width: calc(100% + 24px);
  height: 150px;
  margin: -12px -12px 10px -12px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  flex-shrink: 0;
}

/* Floating "Add to Cart" icon in the top-right corner of the card image */
.sv-card-cart {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0d0d0d;
  font-size: 0.78rem;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
  transition: background .2s, color .2s, transform .15s, filter .2s;
  z-index: 4;
}
.sv-card-cart:hover {
  background: var(--ggr);
  filter: brightness(1.08);
  transform: scale(1.08);
}
.sv-card-cart:active { transform: scale(0.94); }
.sv-card-cart:disabled { cursor: wait; opacity: 0.7; }

.sv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}

.sv-card:hover .sv-card-img img {
  transform: scale(1.06);
}

.sv-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #0d0d0d;
  letter-spacing: 0.01em;
  text-transform: none;
  margin: 0;
}

.sv-card-name-white {
  color: #0d0d0d;
}

.sv-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.sv-card-desc-dark {
  color: #0d0d0d;
}

.sv-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.sv-from {
  font-family: 'Poppins', sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0d0d0d;
  align-self: flex-end;
  margin-bottom: 2px;
}

.sv-from-dark {
  color: #0d0d0d;
}

.sv-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.sv-price-rose,
.sv-price-gold {
  color: #b8790a;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.sv-book {
  display: block;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 0;
  border-radius: 7px;
  text-decoration: none;
  margin-top: auto;
  transition: filter .25s, transform .2s;
}

.sv-book-rose,
.sv-book-gold {
  background: var(--ggr);
  color: #0d0d0d;
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(200, 134, 10, 0.4), 0 0 18px rgba(232, 184, 75, 0.18);
}

.sv-book:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.sv-mob-viewall {
  display: none;
}

.sv-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(216, 160, 109, 0.4);
  background: #fff;
  color: var(--gold);
  font-size: 0.72rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  z-index: 10;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
}

.sv-arr:hover {
  background: var(--ggr);
  color: #0d0d0d;
  border-color: transparent;
  filter: brightness(1.08);
  transform: translateY(-50%) scale(1.08);
}

.sv-arr-l {
  left: 186px;
}

.sv-arr-r {
  right: 12px;
}

@media (max-width: 1024px) {
  .sv-hdr {
    padding: 40px 240px 40px;
    min-height: 260px;
  }

  .sv-portrait {
    width: 220px;
    height: 220px;
  }

  .sv-portrait-left {
    left: 10px;
  }

  .sv-portrait-right {
    right: 10px;
  }

  .sv-row {
    padding: 0 16px 16px;
  }

  .sv-row-wrap {
    padding: 20px 16px 16px;
  }

  .sv-lbl {
    flex: 0 0 160px;
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .sv-hdr {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 16px 16px;
    min-height: auto;
    overflow: hidden;
    gap: 16px;
  }

  .sv-hdr-inner {
    order: -1;
    width: 100%;
  }

  .sv-portrait-row {
    display: none !important;
  }

  .sv-portrait {
    display: none !important;
  }

  .sv-hdr-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .sv-hdr-sub {
    font-size: 0.86rem;
    margin-bottom: 14px;
  }

  .sv-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sv-pills::-webkit-scrollbar {
    display: none;
  }

  .sv-pill {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.68rem;
  }

  .sv-row {
    padding: 0 12px 12px;
  }

  .sv-row-wrap {
    flex-direction: column;
    padding: 12px 0;
    border-radius: 0;
    gap: 12px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .sv-row.active .sv-row-wrap:first-child {
    padding-top: 16px;
  }

  .sv-lbl {
    flex: none !important;
    width: 100% !important;
    min-width: unset !important;
    align-items: center;
    text-align: center;
    padding: 8px 0 4px;
    flex-direction: column;
    gap: 4px;
  }

  .sv-lbl-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
  }

  .sv-lbl-desc {
    display: none;
  }

  .sv-lbl-btn {
    display: none;
  }

  .sv-cards-track {
    padding-left: 0;
    gap: 12px;
  }

  .sv-card {
    flex: 0 0 195px;
    min-width: 195px;
    padding: 10px 10px 12px;
    border-radius: 12px;
  }

  .sv-card-img {
    height: 200px;
    width: calc(100% + 20px);
    margin: -10px -10px 10px -10px;
    border-radius: 12px 12px 0 0;
  }

  .sv-card-name {
    font-size: 0.72rem;
  }

  .sv-price {
    font-size: 1rem;
  }

  .sv-book {
    font-size: 0.58rem;
    padding: 8px 0;
  }

  .sv-arr {
    display: none;
  }

  .sv-mob-viewall {
    display: flex;
    justify-content: center;
    padding: 12px 0 4px;
    width: 100%;
  }

  .sv-mob-viewall a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0d0d0d;
    text-decoration: none;
    border: 1.5px solid rgba(0, 0, 0, 0.25);
    padding: 10px 28px;
    border-radius: 8px;
    transition: all .25s;
  }

  .sv-mob-viewall a:hover {
    background: #0d0d0d;
    color: #fff;
  }
}

@media (max-width: 480px) {
  .sv-portrait-row {
    display: none !important;
  }

  .sv-hdr {
    padding: 22px 12px 12px;
  }

  .sv-hdr-title {
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  .sv-pill {
    padding: 7px 12px;
    font-size: 0.62rem;
  }

  .sv-card {
    flex: 0 0 195px;
    min-width: 195px;
  }

  .sv-card-img {
    height: 100px;
  }
}

/* ============================================================
   BLOCK 5 (extracted from index.html)
============================================================ */
.ab-section {
  background: linear-gradient(135deg, #faf5eb 0%, #f5ead5 100%);
  overflow: visible;
  position: relative;
}

.ab-top {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  align-items: start;
  gap: 0;
  padding: 48px 48px 0;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ab-left {
  padding-right: 28px;
  padding-top: 8px;
  padding-left: 48px;
}

.ab-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ab-eyeline {
  display: none;
}

.ab-eyelabel {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.2vw, 3.5rem);
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ab-title-script {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.15;
}

.ab-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #3a3a3a;
  line-height: 1.85;
  max-width: 360px;
  margin-bottom: 32px;
}

.ab-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #0d0d0d;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 4px;
  transition: background .25s, transform .22s;
}

.ab-btn:hover {
  background: #222;
  transform: translateY(-2px);
}

.ab-btn i {
  font-size: 0.65rem;
}

.ab-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
  margin-top: -10px;
}

.ab-arch-wrap {
  position: relative;
  width: 380px;
  height: 520px;
  flex-shrink: 0;
}

.ab-arch-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 155px 155px 0 0;
  padding: 2px;
  background: var(--ggr);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 4;
}

.ab-arch-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #140e06 0%, #0a0805 100%);
  border-radius: 155px 155px 0 0;
  z-index: 1;
}

.ab-arch-border {
  display: none;
}

.ab-arch-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 155px 155px 0 0;
  z-index: 2;
}

.ab-star {
  position: absolute;
  top: -20px;
  right: -10px;
  color: var(--gold2);
  font-size: 1.8rem;
  z-index: 6;
  filter: drop-shadow(0 0 6px rgba(232, 184, 75, 0.6));
}

.ab-leaf {
  position: absolute;
  z-index: 6;
}

.ab-leaf-bl {
  bottom: -20px;
  left: -60px;
  font-size: 5rem;
  color: #1c140a;
  transform: rotate(-25deg);
  opacity: 0.9;
}

.ab-leaf-br {
  bottom: -20px;
  right: -60px;
  font-size: 4.5rem;
  color: var(--gold);
  transform: rotate(15deg) scaleX(-1);
  opacity: 0.85;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-right {
  padding-left: 28px;
  padding-top: 8px;
}

.ab-offer-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
}

.ab-offer-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.ab-offer-line {
  width: 28px;
  height: 1.5px;
  background: var(--ggr);
}

.ab-why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}

.ab-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ab-why-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef9f0, #faecd0);
  border: 1px solid rgba(216, 160, 109, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ab-why-body {
  flex: 1;
}

.ab-why-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.ab-why-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: #3a3a3a;
  line-height: 1.6;
}

.ab-bottom {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1205 40%, #0f0f0f 100%);
  border-top: 1px solid rgba(216, 160, 109, 0.2);
  padding: 48px 80px;
  gap: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ab-bottom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(200, 134, 10, 0.07) 0%, transparent 50%), radial-gradient(ellipse at 100% 50%, rgba(200, 134, 10, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.ab-feat {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 32px;
}

.ab-feat:last-child {
  padding-right: 0;
}

.ab-feat-sep {
  width: 1px;
  background: rgba(216, 160, 109, 0.2);
  align-self: stretch;
  flex-shrink: 0;
}

.ab-feat-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(200, 134, 10, 0.18) 0%, rgba(200, 134, 10, 0.06) 100%);
  border: 1.5px solid rgba(216, 160, 109, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--gold2);
  box-shadow: 0 0 20px rgba(200, 134, 10, 0.12), inset 0 0 12px rgba(200, 134, 10, 0.06);
}

.ab-feat-body {
  flex: 1;
}

.ab-feat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 10px;
}

.ab-feat-rule {
  width: 28px;
  height: 2px;
  background: var(--ggr);
  margin-bottom: 10px;
}

.ab-feat-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.ab-tagline-wrap {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1205 50%, #0f0f0f 100%);
  padding: 8px 0 44px;
}

.ab-tagline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #fdfaf2 0%, #f9f0e0 100%);
  border: 1.5px solid rgba(216, 160, 109, 0.5);
  border-radius: 100px;
  padding: 14px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0d0d0d;
  box-shadow: 0 4px 32px rgba(200, 134, 10, 0.25);
}

.ab-tagline-icon {
  color: var(--gold);
  font-size: 0.58rem;
}

@media (max-width: 1200px) {
  .ab-top {
    grid-template-columns: 1fr 360px 1fr;
    padding: 48px 40px 0;
  }

  .ab-arch-wrap {
    width: 320px;
    height: 460px;
  }

  .ab-left {
    padding-left: 20px;
  }

  .ab-right {
    padding-left: 24px;
  }

  .ab-bottom {
    padding: 40px 60px;
  }

  .ab-feat {
    padding: 0 22px;
  }
}

@media (max-width: 1024px) {
  .ab-top {
    grid-template-columns: 1fr 280px 1fr;
    padding: 40px 28px 0;
  }

  .ab-arch-wrap {
    width: 260px;
    height: 380px;
  }

  .ab-bottom {
    padding: 36px 40px;
  }

  .ab-feat {
    padding: 0 16px;
  }

  .ab-feat-icon {
    width: 58px;
    height: 58px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .ab-section {
    overflow: hidden;
  }

  .ab-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 24px 0 0 16px;
    overflow: visible;
  }

  .ab-left {
    flex: 0 0 58%;
    width: 58%;
    padding: 0 12px 28px 0;
  }

  .ab-title {
    font-size: clamp(1.45rem, 5vw, 1.9rem);
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .ab-title-script {
    font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  }

  .ab-desc {
    font-size: 0.74rem;
    margin-bottom: 16px;
  }

  .ab-btn {
    font-size: 0.58rem;
    padding: 10px 18px;
  }

  .ab-center {
    flex: 0 0 42%;
    width: 42%;
    overflow: hidden;
    justify-content: center;
  }

  .ab-arch-wrap {
    width: 100%;
    height: 300px;
    border-radius: 110px 110px 0 0;
  }

  .ab-arch-bg {
    border-radius: 110px 110px 0 0;
  }

  .ab-arch-img {
    border-radius: 110px 110px 0 0;
  }

  .ab-arch-wrap::before {
    border-radius: 112px 112px 0 0;
  }

  .ab-leaf-bl {
    left: -20px;
    bottom: -12px;
    font-size: 2.2rem;
  }

  .ab-leaf-br {
    display: none;
  }

  .ab-star {
    top: -6px;
    right: 8px;
    font-size: 1.1rem;
  }

  .ab-right {
    display: none;
  }

  .ab-bottom {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 16px 14px 0;
    width: calc(100% - 28px);
    border-radius: 18px;
    border: 1px solid rgba(216, 160, 109, 0.2);
    overflow: hidden;
  }

  .ab-feat {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(216, 160, 109, 0.1);
  }

  .ab-feat:last-child {
    border-bottom: none;
  }

  .ab-feat-sep {
    display: none;
  }

  .ab-feat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .ab-feat-body {
    flex: 1;
  }

  .ab-feat-title {
    font-size: 0.68rem;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .ab-feat-rule {
    width: 22px;
    height: 2px;
    margin-bottom: 6px;
  }

  .ab-feat-desc {
    font-size: 0.68rem;
    line-height: 1.6;
  }

  .ab-tagline-wrap {
    padding: 14px 16px 32px;
  }

  .ab-tagline {
    font-size: 0.48rem;
    padding: 11px 20px;
    gap: 8px;
    max-width: 300px;
    text-align: center;
  }
}

.ab-mob-grid {
  display: none;
}

@media (max-width: 768px) {
  .ab-mob-grid {
    display: block;
    margin: 16px 16px 0;
    background: linear-gradient(135deg, #fef9f0 0%, #faecd0 100%);
    border: 1px solid rgba(216, 160, 109, 0.15);
    border-radius: 16px;
    overflow: hidden;
    padding-bottom: 16px;
  }

  .ab-mob-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(216, 160, 109, 0.15);
  }

  .ab-mob-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 8px 16px;
    border-right: 1px solid rgba(216, 160, 109, 0.15);
    gap: 10px;
  }

  .ab-mob-grid-item:nth-child(3n) {
    border-right: none;
  }

  .ab-mob-grid-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef9f0, #faecd0);
    border: 1px solid rgba(216, 160, 109, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
  }

  .ab-mob-grid-line {
    width: 24px;
    height: 1.5px;
    background: var(--ggr);
  }

  .ab-mob-grid-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0d0d0d;
    line-height: 1.35;
  }

  .ab-mob-grid-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(216, 160, 109, 0.15);
  }

  .ab-mob-more {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gold);
    text-align: center;
    padding: 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .ab-arch-wrap {
    width: 155px;
    height: 235px;
  }

  .ab-title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .ab-desc {
    max-width: 210px;
  }
}

@media (max-width: 360px) {
  .ab-arch-wrap {
    width: 130px;
    height: 200px;
  }

  .ab-leaf-bl,
  .ab-leaf-br {
    display: none;
  }
}

/* ============================================================
   BLOCK 6 (extracted from index.html)
============================================================ */
/* =======================================
   CLASSES SECTION
======================================= */
.cl-section {
  background: linear-gradient(160deg, #fdfaf2 0%, #f9f2e3 40%, #f5ead4 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
}

.cl-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--ggr);
  z-index: 2;
}

.cl-header {
  text-align: center;
  padding: 0 24px 48px;
  position: relative;
  z-index: 2;
}

.cl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.cl-eyeline {
  display: none;
}

.cl-eyelabel {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cl-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #0d0d0d;
  line-height: 1.1;
  margin-bottom: 10px;
}

.cl-title em {
  font-style: normal;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cl-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #3a3a3a;
  line-height: 1.8;
}

.cl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* "View All Classes" button shown below the grid on the homepage */
.cl-viewall-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 36px;
}
.cl-viewall-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0d0d0d;
  background: var(--ggr);
  border-radius: 10px;
  text-decoration: none;
  filter: brightness(1.05);
  box-shadow: 0 5px 16px rgba(200, 134, 10, 0.32);
  transition: filter .22s, transform .18s, box-shadow .22s;
}
.cl-viewall-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200, 134, 10, 0.4);
}
@media (max-width: 640px) {
  .cl-viewall-wrap { margin-top: 24px; }
  .cl-viewall-btn { padding: 10px 22px; font-size: 0.66rem; }
}

.cl-card {
  background: #fff;
  border: 1px solid rgba(200, 134, 10, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
}

.cl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(200, 134, 10, 0.4);
}

.cl-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.cl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cl-card:hover .cl-card-img img {
  transform: scale(1.07);
}

.cl-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ggr);
  color: #0d0d0d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  filter: brightness(1.08);
  box-shadow: 0 2px 10px rgba(200, 134, 10, 0.4);
  z-index: 2;
}

.cl-card-seats {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cl-card-seats i {
  color: var(--gold2);
  font-size: 0.5rem;
}

.cl-card-body {
  padding: 20px 22px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cl-card-cat {
  font-family: 'Poppins', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.cl-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0d0d0d;
  line-height: 1.25;
  margin-bottom: 8px;
}

.cl-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}

.cl-card-meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(200, 134, 10, 0.1);
  border-bottom: 1px solid rgba(200, 134, 10, 0.1);
}

.cl-meta-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-right: 1px solid rgba(200, 134, 10, 0.12);
}

.cl-meta-item:first-child {
  padding-left: 0;
}

.cl-meta-item:last-child {
  border-right: none;
}

.cl-meta-item i {
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.cl-meta-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b5c3e;
  display: block;
  margin-bottom: 1px;
}

.cl-meta-val {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #0d0d0d;
  display: block;
}

.cl-card-footer {
  padding: 0 22px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cl-price-wrap {
  flex: 1;
}

.cl-price-from {
  font-family: 'Poppins', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #6b5c3e;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1px;
}

.cl-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: #b8790a;
  line-height: 1;
}

.cl-btn-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d0d0d;
  text-decoration: none;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  padding: 9px 14px;
  border-radius: 7px;
  transition: all .25s;
  white-space: nowrap;
}

.cl-btn-details:hover {
  background: #0d0d0d;
  color: #fff;
  border-color: #0d0d0d;
}

.cl-btn-register {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d0d0d;
  text-decoration: none;
  background: var(--ggr);
  padding: 9px 16px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(200, 134, 10, 0.35);
  transition: filter .25s, transform .22s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.cl-btn-register::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left .5s ease;
}

.cl-btn-register:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.cl-btn-register:hover::after {
  left: 140%;
}

.cl-btn-register i {
  font-size: 0.55rem;
}

@media (max-width: 1024px) {
  .cl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 28px;
  }
}

@media (max-width: 640px) {
  .cl-section {
    padding: 52px 0 60px;
  }

  .cl-header {
    padding: 0 20px 36px;
  }

  .cl-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .cl-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 16px;
  }

  .cl-card-img {
    height: 180px;
  }

  .cl-card-body {
    padding: 16px 18px 0;
  }

  .cl-card-footer {
    padding: 0 18px 18px;
  }

  .cl-card-title {
    font-size: 1.05rem;
  }

  .cl-price {
    font-size: 1.15rem;
  }

  .cl-btn-details,
  .cl-btn-register {
    font-size: 0.56rem;
    padding: 8px 12px;
  }
}

@media (max-width: 380px) {
  .cl-card-footer {
    flex-wrap: wrap;
  }

  .cl-price-wrap {
    flex: 0 0 100%;
    margin-bottom: 8px;
  }

  .cl-btn-details,
  .cl-btn-register {
    flex: 1;
    justify-content: center;
  }
}

/* ============================================================
   BLOCK 7 (extracted from index.html)
============================================================ */
/* =======================================
   REVIEWS / TESTIMONIALS
======================================= */
.rv-section {
  background: #000;
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
}

/* ambient glow blobs */
.rv-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(200, 134, 10, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 85% 75%, rgba(200, 134, 10, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 25% at 50% 50%, rgba(232, 184, 75, 0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* top gold rule */
.rv-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ggr);
  opacity: 0.6;
}

/* sparkle dots */
.rv-spark {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.rv-spark::before,
.rv-spark::after {
  content: '';
  position: absolute;
  background: var(--gold2);
  border-radius: 50%;
  animation: rvPulse 3s ease-in-out infinite;
}

.rv-spark-1 {
  top: 10%;
  left: 6%;
}

.rv-spark-1::before {
  width: 5px;
  height: 5px;
  box-shadow: 0 0 10px 3px rgba(232, 184, 75, 0.5);
}

.rv-spark-1::after {
  width: 3px;
  height: 3px;
  top: 20px;
  left: 14px;
  opacity: 0.6;
  animation-delay: .8s;
}

.rv-spark-2 {
  top: 18%;
  right: 8%;
}

.rv-spark-2::before {
  width: 4px;
  height: 4px;
  box-shadow: 0 0 8px 2px rgba(232, 184, 75, 0.45);
  animation-delay: .4s;
}

.rv-spark-2::after {
  width: 3px;
  height: 3px;
  top: 16px;
  left: -10px;
  opacity: 0.5;
  animation-delay: 1.2s;
}

.rv-spark-3 {
  bottom: 14%;
  left: 10%;
}

.rv-spark-3::before {
  width: 4px;
  height: 4px;
  box-shadow: 0 0 8px 2px rgba(232, 184, 75, 0.4);
  animation-delay: 1s;
}

.rv-spark-4 {
  bottom: 20%;
  right: 6%;
}

.rv-spark-4::before {
  width: 5px;
  height: 5px;
  box-shadow: 0 0 10px 3px rgba(232, 184, 75, 0.45);
  animation-delay: .3s;
}

@keyframes rvPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}

/* header */
.rv-header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 32px;
}

.rv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.rv-eyeline {
  display: none;
}

.rv-eyelabel {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rv-lotus {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold2);
  font-size: 1.1rem;
  margin-bottom: 6px;
  opacity: 0.7;
  width: 100%;
}

.rv-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rv-title-script {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  background: linear-gradient(
    90deg,
    #b8790a 0%,
    #f0c040 25%,
    #fff3c4 50%,
    #f0c040 75%,
    #b8790a 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.2;
  margin-bottom: 14px;
  animation:
    rv-title-shift 5s linear infinite,
    rv-title-glow  3.4s ease-in-out infinite;
  will-change: background-position, filter;
}
@keyframes rv-title-shift {
  from { background-position:   0% 50%; }
  to   { background-position: 200% 50%; }
}
@keyframes rv-title-glow {
  0%, 100% {
    filter:
      drop-shadow(0 0 6px  rgba(232,184,75,0.30))
      drop-shadow(0 0 14px rgba(232,184,75,0.15));
  }
  50% {
    filter:
      drop-shadow(0 0 12px rgba(232,184,75,0.55))
      drop-shadow(0 0 26px rgba(232,184,75,0.30));
  }
}
@media (prefers-reduced-motion: reduce) {
  .rv-title-script { animation: none; filter: none; }
}

.rv-heart {
  color: var(--gold);
  font-size: 0.9rem;
  margin-left: 6px;
}

.rv-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rv-dline {
  width: 52px;
  height: 1px;
  background: var(--ggr);
  opacity: 0.35;
}

.rv-dicon {
  color: var(--gold);
  font-size: 0.55rem;
  opacity: 0.7;
}

.rv-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

/* cards grid â†’ SLIDER */
.rv-slider-wrap {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.rv-slider {
  overflow: hidden;
  border-radius: 0;
  cursor: grab;
  user-select: none;
}

.rv-slider:active {
  cursor: grabbing;
}

.rv-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* single card */
.rv-card {
  position: relative;
  background: linear-gradient(145deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  border: 1px solid rgba(200, 134, 10, 0.28);
  border-radius: 20px;
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color .35s ease, box-shadow .35s ease;
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  box-sizing: border-box;
}

.rv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 134, 10, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.rv-card.rv-active {
  border-color: rgba(200, 134, 10, 0.55);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(232, 184, 75, 0.12),
    0 0 40px rgba(200, 134, 10, 0.14);
}

/* nav arrows */
.rv-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.85);
  border: 1.5px solid rgba(200, 134, 10, 0.35);
  color: var(--gold2);
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all .25s;
  backdrop-filter: blur(6px);
}

.rv-nav:hover {
  background: var(--gold);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(200, 134, 10, 0.5);
}

.rv-prev {
  left: -12px;
}

.rv-next {
  right: -12px;
}

/* dot indicators */
.rv-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.rv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(200, 134, 10, 0.25);
  border: 1px solid rgba(200, 134, 10, 0.3);
  cursor: pointer;
  transition: all .3s ease;
}

.rv-dot.rv-dot-active {
  background: var(--ggr);
  width: 22px;
  border-radius: 4px;
  border-color: transparent;
  box-shadow: 0 0 8px rgba(200, 134, 10, 0.5);
}

/* responsive slider */
@media (max-width: 1024px) {
  .rv-slider-wrap {
    padding: 0 28px;
  }

  .rv-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
  }
}

@media (max-width: 860px) {
  .rv-slider-wrap {
    padding: 0 48px;
  }

  .rv-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 22px 22px 24px;
    border-radius: 16px;
  }

  .rv-track {
    gap: 20px;
  }

  .rv-prev {
    left: 0px;
  }

  .rv-next {
    right: 0px;
  }
}

@media (max-width: 480px) {
  .rv-slider-wrap {
    padding: 0 44px;
  }

  .rv-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 18px 18px 20px;
    border-radius: 14px;
  }

  .rv-nav {
    width: 36px;
    height: 36px;
    font-size: 0.68rem;
  }

  .rv-prev {
    left: 0px;
  }

  .rv-next {
    right: 0px;
  }
}

/* avatar circle — sits half above card */
.rv-avatar-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(200, 134, 10, 0.25) 0%, rgba(200, 134, 10, 0.08) 100%);
  border: 2px solid rgba(200, 134, 10, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -45px;
  margin-bottom: 18px;
  flex-shrink: 0;
  position: relative;
  box-shadow:
    0 0 0 6px rgba(200, 134, 10, 0.08),
    0 0 28px rgba(200, 134, 10, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.5);
}

.rv-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(200, 134, 10, 0.18);
}

.rv-avatar-icon {
  font-size: 2rem;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* quote mark */
.rv-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 0.6;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  align-self: flex-start;
  margin-bottom: 8px;
  opacity: 0.9;
  filter: brightness(1.1);
}

/* name */
.rv-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.2;
}

.rv-service {
  font-family: 'Poppins', sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.rv-card-rule {
  width: 36px;
  height: 1.5px;
  background: var(--ggr);
  margin: 0 auto 12px;
  opacity: 0.6;
}

.rv-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 14px;
  flex: 1;
}

/* stars */
.rv-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: auto;
}

.rv-stars i {
  font-size: 0.85rem;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.1);
}

/* bottom stats bar */
.rv-bar {
  position: relative;
  z-index: 2;
  margin: 52px 40px 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  border: 1px solid rgba(200, 134, 10, 0.25);
  overflow: hidden;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.rv-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ggr);
  opacity: 0.5;
}

.rv-bar-inner {
  display: flex;
  align-items: stretch;
  padding: 0 32px;
}

.rv-bar-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 22px 32px 22px 0;
  border-right: 1px solid rgba(200, 134, 10, 0.15);
  flex-shrink: 0;
  gap: 2px;
}

.rv-bar-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

.rv-bar-brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rv-bar-stats {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-around;
  padding: 0 16px;
}

.rv-bar-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
}

.rv-bar-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(200, 134, 10, 0.1);
  border: 1px solid rgba(200, 134, 10, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold2);
  flex-shrink: 0;
}

.rv-bar-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 2px;
}

.rv-bar-stat-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.rv-bar-sep {
  width: 1px;
  background: rgba(200, 134, 10, 0.12);
  align-self: stretch;
  flex-shrink: 0;
}

.rv-bar-thankyou {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 22px 0 22px 32px;
  border-left: 1px solid rgba(200, 134, 10, 0.15);
  flex-shrink: 0;
  text-align: right;
}

.rv-bar-ty-script {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 2px;
}

.rv-bar-ty-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

/* bottom tagline */
.rv-tagline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  padding: 0 24px;
}

.rv-tagline-line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 134, 10, 0.25));
}

.rv-tagline-line:last-child {
  background: linear-gradient(to left, transparent, rgba(200, 134, 10, 0.25));
}

.rv-tagline-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}

.rv-tagline-dot {
  color: var(--gold);
  font-size: 0.45rem;
  opacity: 0.55;
}

/* =======================================
   REVIEWS RESPONSIVE
======================================= */
@media (max-width: 1024px) {
  .rv-bar {
    margin: 44px 28px 0;
  }

  .rv-bar-brand {
    padding-right: 22px;
  }

  .rv-bar-thankyou {
    padding-left: 22px;
  }
}

@media (max-width: 860px) {
  .rv-section {
    padding: 64px 0 56px;
  }

  .rv-bar {
    margin: 40px 20px 0;
    border-radius: 14px;
  }

  .rv-bar-inner {
    flex-direction: column;
    padding: 0;
  }

  .rv-bar-brand {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border-right: none;
    border-bottom: 1px solid rgba(200, 134, 10, 0.15);
    padding: 18px 20px;
  }

  .rv-bar-stats {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    padding: 0;
    justify-items: center;
  }

  .rv-bar-stat {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding: 18px 8px;
  }

  .rv-bar-sep {
    width: auto;
    height: auto;
    align-self: stretch;
    background: rgba(200, 134, 10, 0.12);
  }

  .rv-bar-thankyou {
    align-items: center;
    text-align: center;
    border-left: none;
    border-top: 1px solid rgba(200, 134, 10, 0.15);
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .rv-section {
    padding: 52px 0 44px;
  }

  .rv-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .rv-title-script {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .rv-name {
    font-size: 1rem;
  }

  .rv-text {
    font-size: 0.78rem;
  }

  .rv-bar {
    margin: 32px 14px 0;
  }

  .rv-bar-stats {
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
  }

  .rv-bar-stat-num {
    font-size: 1.1rem;
  }

  .rv-bar-stat-lbl {
    font-size: 0.48rem;
  }

  .rv-bar-stat-icon {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .rv-tagline {
    margin-top: 28px;
  }

  .rv-tagline-text {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 360px) {
  .rv-bar-stats {
    grid-template-columns: 1fr;
  }

  .rv-bar-sep {
    width: 100%;
    height: 1px;
  }

  .rv-bar-stat {
    padding: 14px 16px;
  }
}

/* ============================================================
   BLOCK 8 (extracted from index.html)
============================================================ */
/* =======================================
   FEEDBACK FORM — LIGHT THEME
======================================= */
.fb-section {
  background: linear-gradient(160deg, #fdfaf2 0%, #f9f2e3 40%, #f5ead4 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 88px;
}

.fb-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--ggr);
}

.fb-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 5% 50%, rgba(200, 134, 10, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 95% 50%, rgba(200, 134, 10, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.fb-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.fb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.fb-eyeline {
  display: none;
}

.fb-eyelabel {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fb-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: #0d0d0d;
  line-height: 1.15;
  margin-bottom: 8px;
}

.fb-title em {
  font-style: normal;
  background: linear-gradient(198deg, #7a4e00 0%, #c8860a 48%, #6b3e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fb-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #3a3a3a;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 340px;
}

.fb-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fb-perk {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fb-perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--ggr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  font-size: 0.7rem;
  flex-shrink: 0;
  filter: brightness(1.08);
}

.fb-perk-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0d0d0d;
}

/* form card */
.fb-form-wrap {
  background: #fff;
  border: 1px solid rgba(200, 134, 10, 0.18);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.fb-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ggr);
  border-radius: 24px 24px 0 0;
}

.fb-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 4px;
}

.fb-form-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #6b5c3e;
  margin-bottom: 24px;
}

.fb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.fb-row-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.fb-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b5c3e;
}

.fb-input,
.fb-select,
.fb-textarea {
  background: #faf6ee;
  border: 1.5px solid rgba(200, 134, 10, 0.2);
  border-radius: 9px;
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  color: #0d0d0d;
  outline: none;
  transition: border-color .25s, background .25s;
  width: 100%;
}

.fb-input::placeholder,
.fb-textarea::placeholder {
  color: rgba(0, 0, 0, 0.28);
}

.fb-input:focus,
.fb-select:focus,
.fb-textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.08);
}

.fb-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C8860A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #faf6ee;
}

.fb-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

.fb-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.fb-stars-row {
  display: flex;
  gap: 6px;
}

.fb-star-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.15);
  transition: color .18s, transform .18s;
  padding: 2px;
  line-height: 1;
}

.fb-star-btn.active {
  color: var(--gold);
  transform: scale(1.12);
}

.fb-stars-row:hover .fb-star-btn {
  color: var(--gold);
}

.fb-stars-row .fb-star-btn:hover~.fb-star-btn {
  color: rgba(0, 0, 0, 0.15);
}

.fb-submit {
  width: auto;
  align-self: flex-end;
  margin-top: 20px;
  margin-left: auto;
  padding: 13px 32px;
  background: var(--ggr);
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  filter: brightness(1.08);
  box-shadow: 0 6px 24px rgba(200, 134, 10, 0.4);
  transition: filter .25s, transform .22s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.fb-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left .5s ease;
}

.fb-submit:hover {
  filter: brightness(1.14);
  transform: translateY(-2px);
}

.fb-submit:hover::after {
  left: 140%;
}

.fb-submit i {
  font-size: 0.65rem;
}

.fb-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.fb-success-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.fb-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #0d0d0d;
  margin-bottom: 8px;
}

.fb-success-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #6b5c3e;
}

@media (max-width: 900px) {
  .fb-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 28px;
  }

  .fb-desc {
    max-width: 100%;
  }

  .fb-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .fb-section {
    padding: 52px 0 64px;
  }

  .fb-inner {
    padding: 0 16px;
    gap: 28px;
  }

  .fb-form-wrap {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .fb-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fb-perks {
    grid-template-columns: 1fr;
  }

  .fb-title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .fb-submit {
    width: 100%;
    margin-left: 0;
  }
}

/* ============================================================
   BLOCK 9 (extracted from index.html)
============================================================ */
/* =======================================
   FOOTER
======================================= */
.ft-section {
  background: #000;
  position: relative;
  overflow: hidden;
}

.ft-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ggr);
}

.ft-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 0%, rgba(200, 134, 10, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 90% 100%, rgba(200, 134, 10, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

/* top bar */
.ft-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 40px 52px;
  border-bottom: 1px solid rgba(200, 134, 10, 0.12);
}

/* brand col */
.ft-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.ft-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  border: 1.5px solid rgba(200, 134, 10, 0.3);
}

.ft-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ft-brand-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 280px;
}

.ft-socials {
  display: flex;
  gap: 10px;
}

.ft-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 134, 10, 0.3);
  background: rgba(200, 134, 10, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  font-size: 0.72rem;
  text-decoration: none;
  transition: all .25s;
}

.ft-social:hover {
  background: var(--ggr);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(200, 134, 10, 0.4);
}

/* link cols */
.ft-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200, 134, 10, 0.2);
  display: block;
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ft-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .22s, gap .22s;
}

.ft-link i {
  font-size: 0.5rem;
  color: var(--gold);
  opacity: 0.6;
  transition: opacity .22s;
}

.ft-link:hover {
  color: var(--gold2);
  gap: 12px;
}

.ft-link:hover i {
  opacity: 1;
}

/* contact col */
.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.ft-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(200, 134, 10, 0.1);
  border: 1px solid rgba(200, 134, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ft-contact-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 2px;
}

.ft-contact-val {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1.4;
}

.ft-contact-val a {
  color: inherit;
  text-decoration: none;
  transition: color .22s;
}

.ft-contact-val a:hover {
  color: var(--gold2);
}

/* newsletter */
.ft-newsletter {
  margin-top: 20px;
}

.ft-newsletter-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  display: block;
}

.ft-newsletter-form {
  display: flex;
  gap: 0;
}

.ft-newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 134, 10, 0.25);
  border-right: none;
  border-radius: 7px 0 0 7px;
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #fff;
  outline: none;
  transition: border-color .25s;
}

.ft-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.ft-newsletter-input:focus {
  border-color: rgba(200, 134, 10, 0.55);
}

.ft-newsletter-btn {
  background: var(--ggr);
  color: #000;
  border: none;
  padding: 10px 16px;
  border-radius: 0 7px 7px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
  filter: brightness(1.08);
  transition: filter .25s;
  white-space: nowrap;
}

.ft-newsletter-btn:hover {
  filter: brightness(1.15);
}

/* middle strip */
.ft-mid {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(200, 134, 10, 0.08);
}

.ft-mid-badges {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ft-mid-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.ft-mid-badge i {
  color: var(--gold);
  font-size: 0.75rem;
}

.ft-mid-sep {
  width: 1px;
  height: 24px;
  background: rgba(200, 134, 10, 0.15);
}

.ft-mid-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 400;
  background: var(--ggr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* bottom bar */
.ft-bottom {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ft-copy {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.ft-copy span {
  color: var(--gold);
}

.ft-bottom-links {
  display: flex;
  gap: 20px;
}

.ft-bottom-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color .22s;
}

.ft-bottom-link:hover {
  color: var(--gold2);
}

/* =======================================
   FOOTER RESPONSIVE
======================================= */
@media (max-width: 1024px) {
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 52px 28px 44px;
  }

  .ft-mid {
    padding: 22px 28px;
    flex-wrap: wrap;
  }

  .ft-bottom {
    padding: 18px 28px;
  }
}

@media (max-width: 640px) {
  .ft-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 20px 36px;
  }

  .ft-brand-desc {
    max-width: 100%;
  }

  .ft-mid {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ft-mid-badges {
    flex-wrap: wrap;
    gap: 12px;
  }

  .ft-mid-sep {
    display: none;
  }

  .ft-bottom {
    padding: 16px 20px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .ft-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .ft-col-title::after {
    display: none;
  }
}

/* ============================================================
   NAV — Logged-in user dropdown (added for customer auth)
============================================================ */
.nav-user {
  position: relative;
  flex-shrink: 0;
}

.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 160, 109, 0.28);
  color: rgba(255, 255, 255, 0.95);
  padding: 6px 12px 6px 6px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background .2s, border-color .2s;
}

.nav-user-btn:hover {
  background: rgba(216, 160, 109, 0.1);
  border-color: rgba(216, 160, 109, 0.55);
}

.nav-user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ggr);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  filter: brightness(1.08);
}

.nav-user-name {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-user-caret {
  font-size: 0.55rem;
  color: var(--gold2);
  transition: transform .25s;
}

.nav-user.open .nav-user-caret {
  transform: rotate(180deg);
}

.nav-user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #111;
  border: 1px solid rgba(216, 160, 109, 0.22);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  padding: 6px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 1000;
}

.nav-user.open .nav-user-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-user-menu-head {
  padding: 10px 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 4px;
}

.nav-user-menu-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.nav-user-menu-email {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  word-break: break-all;
}

.nav-user-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s, color .2s;
}

.nav-user-menu-item i {
  color: var(--gold2);
  font-size: 0.7rem;
  width: 14px;
}

.nav-user-menu-item:hover {
  background: rgba(216, 160, 109, 0.12);
  color: var(--gold2);
}

@media (max-width: 1100px) {
  .nav-user {
    display: none;
  }
}