@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --rc:    #F9F4EE;
  --ri:    #FDF8F3;
  --rb:    #EDD8CC;
  --rbm:   #DEC0B0;
  --rbd:   #C9A08C;
  --rg:    #B89A6A;
  --rgl:   #D4B483;
  --rgd:   #8C7247;
  --rbr:   #7A5C3A;
  --rch:   #2A2420;
  --rwg:   #6B5F58;
  --rm:    #9C8E86;
  --rw:    #FFFFFF;
  --rff-d: 'Cormorant Garamond', Georgia, serif;
  --rff-b: 'DM Sans', system-ui, sans-serif;
  --rease: cubic-bezier(.25,.46,.45,.94);
  --rmax:  1200px;
  --rpad:  100px 60px;
}

/* ─── PAGE SHELL ─────────────────────────────────────────── */
body.page .reina-section,
body.page #reina-hero,
body.page #reina-booking,
body.page #reina-cta-banner { box-sizing: border-box; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.reina-display-1 { font-family:var(--rff-d); font-weight:300; font-size:clamp(3rem,6vw,5.5rem); line-height:1.1; letter-spacing:-.01em; }
.reina-display-2 { font-family:var(--rff-d); font-weight:300; font-size:clamp(2.2rem,4vw,3.6rem); line-height:1.15; }
.reina-eyebrow   { font-family:var(--rff-b); font-weight:400; font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color:var(--rg); }
.reina-body-lg   { font-size:1.05rem; line-height:1.8; color:var(--rwg); }

/* ─── ORNAMENT ───────────────────────────────────────────── */
.reina-ornament { display:flex; align-items:center; gap:16px; margin:18px 0 24px; }
.reina-ornament-center { justify-content:center; }
.reina-ornament-line { flex:1; height:1px; background:linear-gradient(90deg,transparent,var(--rgl),transparent); max-width:60px; }
.reina-ornament-diamond { width:6px; height:6px; background:var(--rg); transform:rotate(45deg); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.reina-btn { display:inline-flex; align-items:center; gap:10px; padding:14px 34px; font-family:var(--rff-b); font-weight:400; font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; border-radius:0; border:none; cursor:pointer; transition:all .35s var(--rease); text-decoration:none; }
.reina-btn-gold { background:var(--rg); color:var(--rw)!important; border:1.5px solid var(--rg); }
.reina-btn-gold:hover { background:var(--rgd); border-color:var(--rgd); transform:translateY(-2px); box-shadow:0 12px 30px rgba(184,154,106,.25); color:var(--rw)!important; text-decoration:none; }
.reina-btn-outline { background:transparent; color:var(--rch)!important; border:1.5px solid var(--rch); }
.reina-btn-outline:hover { background:var(--rch); color:var(--ri)!important; transform:translateY(-2px); text-decoration:none; }
.reina-btn-outline-light { background:transparent; color:var(--rw)!important; border:1.5px solid rgba(255,255,255,.6); }
.reina-btn-outline-light:hover { background:rgba(255,255,255,.12); border-color:var(--rw); text-decoration:none; }

/* ─── SECTIONS ───────────────────────────────────────────── */
.reina-section { padding:var(--rpad); background:var(--ri); width:100%; }
.reina-section-cream { background:var(--rc)!important; }
.reina-section-ivory { background:var(--ri)!important; }
.reina-section-ruled { position:relative; }
.reina-section-ruled::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--rgl),transparent); }
.reina-inner { max-width:var(--rmax); margin:0 auto; }
.reina-section-header { margin-bottom:64px; }
.reina-section-center { text-align:center; }

/* ─── FADE UP ────────────────────────────────────────────── */
.reina-fade-up { opacity:0; transform:translateY(28px); transition:opacity .7s var(--rease),transform .7s var(--rease); }
.reina-fade-up.reina-visible { opacity:1; transform:translateY(0); }

/* ─── HERO ───────────────────────────────────────────────── */
#reina-hero { min-height:100vh; display:grid; grid-template-columns:1fr 1fr; position:relative; overflow:hidden; background:var(--ri); padding-top:80px; }
.reina-hero-left { display:flex; flex-direction:column; justify-content:center; padding:100px 60px; position:relative; z-index:2; }
.reina-hero-right { position:relative; overflow:hidden; min-height:600px; }
.reina-hero-img-wrap { position:absolute; inset:0; background:radial-gradient(ellipse at 60% 30%,rgba(205,178,153,.45) 0%,transparent 65%),radial-gradient(ellipse at 30% 75%,rgba(184,154,106,.18) 0%,transparent 55%),linear-gradient(160deg,#E8D5C4 0%,#D4B88A 40%,#C9A07A 70%,#B88E6A 100%); }
.reina-hero-img-wrap img { width:100%; height:100%; object-fit:cover; object-position:center 62%; display:block; }
.reina-hero-tag { display:inline-block; font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--rg); padding:6px 14px; border:1px solid rgba(184,154,106,.35); margin-bottom:32px; font-family:var(--rff-b); }
.reina-hero-title { margin-bottom:12px; color:var(--rch); }
.reina-hero-title em { font-style:italic; color:var(--rg); }
.reina-hero-sub { font-family:var(--rff-b); font-size:1.05rem; line-height:1.8; color:var(--rwg); max-width:420px; margin-bottom:44px; }
.reina-hero-ctas { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.reina-hero-scroll { position:absolute; bottom:36px; left:60px; display:flex; align-items:center; gap:12px; font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; color:var(--rm); font-family:var(--rff-b); }
.reina-scroll-line { width:40px; height:1px; background:var(--rgl); animation:reina-scrollLine 2s ease-in-out infinite; display:block; }
@keyframes reina-scrollLine { 0%,100%{transform:scaleX(1)} 50%{transform:scaleX(.5);transform-origin:left} }
.reina-hero-badge { position:absolute; bottom:48px; left:20px; z-index:3; background:transparent; padding:16px 20px; min-width:200px; animation:reina-floatBadge 4s ease-in-out infinite; border-left:2px solid rgba(255,255,255,.6); }
@keyframes reina-floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.reina-hero-badge-num { font-family:var(--rff-d); font-size:2.2rem; font-weight:300; color:var(--rw); line-height:1; }
.reina-hero-badge-label { font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.8); margin-top:4px; font-family:var(--rff-b); }
.reina-hero-badge-divider { height:1px; background:rgba(255,255,255,.3); margin:10px 0; }
.reina-hero-badge-sub { font-size:.78rem; color:rgba(255,255,255,.75); font-family:var(--rff-b); }

/* ─── MARQUEE STRIP — Pure White + Gold Text + Double Border ─ */
.reina-marquee-strip {
  background: #FFFFFF !important;
  border-top: 2px solid #B89A6A !important;
  border-bottom: 2px solid #B89A6A !important;
  position: relative !important;
  padding: 10px 0 !important;
  overflow: hidden !important;
  box-shadow: 
    0 4px 20px rgba(184,154,106,0.12),
    0 -4px 20px rgba(184,154,106,0.08) !important;
}

.reina-marquee-strip::before {
  content: '' !important;
  position: absolute !important;
  top: 3px !important;
  left: 0 !important;
  right: 0 !important;
  border-top: 1px solid rgba(184,154,106,0.3) !important;
  z-index: 2 !important;
}

.reina-marquee-strip::after {
  content: '' !important;
  position: absolute !important;
  bottom: 3px !important;
  left: 0 !important;
  right: 0 !important;
  border-bottom: 1px solid rgba(184,154,106,0.3) !important;
  z-index: 2 !important;
}

.reina-marquee-track span {
  color: #8C7247 !important;
  letter-spacing: .28em !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
}

.reina-marquee-track .reina-marquee-dot,
.reina-marquee-track .reina-marquee-sep {
  color: #B89A6A !important;
}
.reina-marquee-strip {
  overflow: hidden !important;
}
.reina-marquee-track {
  overflow: hidden !important;
  white-space: nowrap !important;
}
/* ─── SERVICES ───────────────────────────────────────────── */
/* ─── SERVICES — 3D Glassy Luxury ───────────────────────── */
.reina-services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px !important;
  background: transparent !important;
}
.reina-service-card {
  background: linear-gradient(160deg,rgba(255,255,255,.98) 0%,rgba(253,248,243,.95) 60%,rgba(249,244,238,.92) 100%) !important;
  border: none !important;
  border-radius: 2px !important;
  padding: 48px 36px 44px !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: default !important;
  transition: all .45s cubic-bezier(.25,.46,.45,.94) !important;
  box-shadow:
    0 1px 2px rgba(42,36,32,.04),
    0 4px 8px rgba(42,36,32,.06),
    0 12px 24px rgba(42,36,32,.08),
    0 24px 48px rgba(184,154,106,.08),
    inset 0 1px 0 rgba(255,255,255,.9) !important;
  outline: 1px solid rgba(184,154,106,.2) !important;
}
.reina-service-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  bottom: auto !important;
  height: 3px !important;
  background: linear-gradient(90deg,transparent,#B89A6A,#D4B483,#B89A6A,transparent) !important;
  transform: none !important;
  transform-origin: unset !important;
  border-radius: 2px 2px 0 0 !important;
}
.reina-service-card::after {
  content: '' !important;
  position: absolute !important;
  top: 3px !important; left: 8% !important; right: 8% !important;
  height: 1px !important;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.8),transparent) !important;
}
.reina-service-card:hover {
  background: linear-gradient(160deg,rgba(255,255,255,1) 0%,rgba(253,248,243,.98) 60%,rgba(249,244,238,.95) 100%) !important;
  transform: translateY(-10px) !important;
  outline-color: rgba(184,154,106,.45) !important;
  box-shadow:
    0 2px 4px rgba(42,36,32,.04),
    0 8px 16px rgba(42,36,32,.08),
    0 24px 48px rgba(42,36,32,.1),
    0 40px 80px rgba(184,154,106,.14),
    inset 0 1px 0 rgba(255,255,255,.95) !important;
}
.reina-service-icon {
  background: linear-gradient(135deg,#C4A882,#B89A6A,#8C7247) !important;
  border: none !important;
  color: #FFFFFF !important;
  width: 52px !important;
  height: 52px !important;
  font-size: 20px !important;
  margin-bottom: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(184,154,106,.35) !important;
}
.reina-service-num {
  font-family: var(--rff-d) !important;
  font-size: .8rem !important;
  font-weight: 400 !important;
  color: rgba(184,154,106,.4) !important;
  position: absolute !important;
  top: 40px !important; right: 40px !important;
  letter-spacing: .1em !important;
}
.reina-service-name {
  font-family: var(--rff-d) !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  color: #2A2420 !important;
  margin-bottom: 14px !important;
  line-height: 1.25 !important;
}
.reina-service-desc {
  font-size: .875rem !important;
  line-height: 1.8 !important;
  color: #6B5F58 !important;
  margin-bottom: 20px !important;
  font-family: var(--rff-b) !important;
}
.reina-service-sublist {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}
.reina-service-sublist li {
  font-size: .82rem !important;
  color: #6B5F58 !important;
  padding: 6px 0 6px 18px !important;
  border-bottom: 1px solid rgba(184,154,106,.1) !important;
  line-height: 1.5 !important;
  position: relative !important;
  font-family: var(--rff-b) !important;
}
.reina-service-sublist li:last-child { border-bottom: none !important; }
.reina-service-sublist li::before {
  content: '\2726' !important;
  position: absolute !important;
  left: 0 !important;
  top: 10px !important;
  font-size: .45rem !important;
  color: #B89A6A !important;
}
.reina-service-arrow {
  display: inline-block !important;
  margin-top: 20px !important;
  font-size: .72rem !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: #B89A6A !important;
  font-weight: 600 !important;
  font-family: var(--rff-b) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(184,154,106,.4) !important;
  padding-bottom: 2px !important;
  cursor: pointer !important;
  transition: color .25s, border-color .25s !important;
  opacity: 1 !important;
  transform: none !important;
}
.reina-service-arrow:hover {
  color: #8C7247 !important;
  border-color: #8C7247 !important;
}

/* ─── PROMOTIONS ─────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   REINA AESTHETICS — PROMOTIONS SECTION CSS v3
   
   INSTRUCTIONS:
   1. In Appearance > Customize > Additional CSS, find and
      DELETE all previous .reina-promos-grid and .reina-promo-*
      rules before pasting this block.
   2. Paste this entire block at the END of your CSS.
   3. Save & clear cache.
   ═══════════════════════════════════════════════════════ */

/* ─── GRID — equal height columns ───────────────────────── */
.reina-promos-grid {
  display: grid;
  grid-template-columns: 1.38fr 1fr 1fr;
  gap: 22px;
  align-items: stretch !important;
}

/* ─── CARD BASE ─────────────────────────────────────────── */
.reina-promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,.99) 0%,
    rgba(253,248,243,.96) 55%,
    rgba(249,244,238,.93) 100%
  );
  outline: 1px solid rgba(184,154,106,.18);
  box-shadow:
    0 1px 2px rgba(42,36,32,.04),
    0 4px 10px rgba(42,36,32,.06),
    0 14px 36px rgba(42,36,32,.08),
    0 24px 52px rgba(184,154,106,.07),
    inset 0 1px 0 rgba(255,255,255,.92);
  transition:
    transform .45s cubic-bezier(.25,.46,.45,.94),
    box-shadow .45s cubic-bezier(.25,.46,.45,.94),
    outline-color .4s;
}

/* Gold shimmer top border */
.reina-promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 5;
  background: linear-gradient(
    90deg, transparent, var(--rg), var(--rgl), var(--rg), transparent
  );
}

/* Glossy highlight line under top border */
.reina-promo-card::after {
  content: '';
  position: absolute;
  top: 3px; left: 6%; right: 6%;
  height: 1px;
  z-index: 5;
  background: linear-gradient(
    90deg, transparent, rgba(255,255,255,.75), transparent
  );
}

.reina-promo-card:hover {
  transform: translateY(-9px);
  outline-color: rgba(184,154,106,.42);
  box-shadow:
    0 2px 4px rgba(42,36,32,.04),
    0 10px 24px rgba(42,36,32,.09),
    0 28px 60px rgba(42,36,32,.1),
    0 40px 80px rgba(184,154,106,.13),
    inset 0 1px 0 rgba(255,255,255,.96);
}

/* ─── IMAGE AREA ─────────────────────────────────────────── */
.reina-promo-img {
  position: relative;
  overflow: hidden;
  height: 280px;
  flex-shrink: 0;
}

/* ─── REAL PHOTO ─────────────────────────────────────────── */
.reina-promo-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
  z-index: 1;
}
.reina-promo-card:hover .reina-promo-photo {
  transform: scale(1.05);
}

/* ─── PHOTO OVERLAY — color grade per card ───────────────── */
.reina-promo-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* New Client — dark espresso vignette, preserves warm skin tones */
.reina-overlay-promo {
  background: linear-gradient(
    180deg,
    rgba(42,36,32,0) 0%,
    rgba(42,36,32,.08) 40%,
    rgba(42,36,32,.32) 100%
  ),
  linear-gradient(
    135deg,
    rgba(184,154,106,.12) 0%,
    transparent 60%
  );
  mix-blend-mode: multiply;
}

/* Signature Facials — soft blush warmth, barely-there */
.reina-overlay-facial {
  background: linear-gradient(
    180deg,
    rgba(237,216,204,.08) 0%,
    rgba(201,160,140,.18) 50%,
    rgba(42,36,32,.22) 100%
  );
  mix-blend-mode: multiply;
}

/* Summer Skin Edit — warm gold bronze, sun-drenched */
.reina-overlay-summer {
  background: linear-gradient(
    160deg,
    rgba(184,154,106,.15) 0%,
    rgba(140,114,71,.2) 50%,
    rgba(42,36,32,.3) 100%
  );
  mix-blend-mode: multiply;
}

/* ─── GLASSY SHEEN LAYER ─────────────────────────────────── */
.reina-promo-photo-sheen {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.18) 0%,
    rgba(255,255,255,.06) 30%,
    rgba(255,255,255,0) 60%
  );
}

/* ─── BADGE ─────────────────────────────────────────────── */
.reina-promo-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 6;
  font-family: var(--rff-b);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--rg);
  color: var(--rw);
}
.reina-badge-blush {
  background: rgba(237,216,204,.92) !important;
  color: var(--rgd) !important;
  border: 1px solid rgba(184,154,106,.3) !important;
}
.reina-badge-dark {
  background: var(--rch) !important;
  color: var(--rgl) !important;
}

/* ─── DISCOUNT FLAG ──────────────────────────────────────── */
.reina-discount-flag {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 6;
  background: linear-gradient(135deg, var(--rg), var(--rgd));
  color: var(--rw);
  padding: 10px 18px 10px 14px;
  font-family: var(--rff-d);
  box-shadow: 0 4px 16px rgba(42,36,32,.25);
}
.reina-discount-flag-num {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  letter-spacing: -.01em;
}
.reina-discount-flag-off {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
  font-family: var(--rff-b);
}

/* ─── CARD BODY ──────────────────────────────────────────── */
.reina-promo-body {
  padding: 26px 28px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.reina-promo-date {
  font-family: var(--rff-b);
  font-size: .67rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rg);
  margin-bottom: 8px;
  display: block;
}
.reina-promo-title {
  font-family: var(--rff-d);
  font-weight: 400;
  color: var(--rch);
  line-height: 1.2;
  margin-bottom: 14px;
  font-size: 1.35rem;
}
.reina-promo-featured .reina-promo-title {
  font-size: 1.9rem;
}
.reina-promo-desc {
  font-family: var(--rff-b);
  font-size: .84rem;
  color: var(--rwg);
  line-height: 1.8;
  margin-bottom: 18px;
}
.reina-promo-note {
  font-family: var(--rff-b);
  font-size: .73rem;
  color: var(--rm);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

/* ─── CTA STACK ──────────────────────────────────────────── */
.reina-promo-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto !important;
}

/* Full-width gold button */
.reina-promo-btn-full {
  display: block !important;
  width: 100% !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

/* Secondary outline button */
.reina-promo-cta-secondary {
  display: block;
  width: 100%;
  padding: 12px 28px;
  background: transparent;
  color: var(--rch) !important;
  font-family: var(--rff-b);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1.5px solid rgba(42,36,32,.25);
  cursor: pointer;
  text-decoration: none !important;
  border-radius: 0;
  text-align: left;
  box-sizing: border-box;
  transition: border-color .3s, background .3s, color .3s;
}
.reina-promo-cta-secondary:hover {
  border-color: var(--rch);
  background: var(--rch);
  color: var(--ri) !important;
  text-decoration: none !important;
}

/* ─── INLINE LINK ────────────────────────────────────────── */
.reina-promo-link {
  font-family: var(--rff-b);
  font-size: .71rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rg) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  transition: gap .3s;
}
.reina-promo-link:hover {
  gap: 14px;
  text-decoration: none !important;
}
.reina-promo-link::after {
  content: '\2192';
}

/* Block-level link (under button in facials card) */
.reina-promo-link-block {
  display: block !important;
  margin-top: 4px;
}

/* ─── DIVIDER ────────────────────────────────────────────── */
.reina-promo-divider {
  height: 1px;
  background: rgba(184,154,106,.14);
  margin: auto 0 18px;
}

/* ─── TIER CARDS ─────────────────────────────────────────── */
.reina-promo-tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.reina-promo-tier {
  padding: 14px 16px;
  border: 1px solid rgba(184,154,106,.18);
  position: relative;
  overflow: hidden;
}
.reina-promo-tier::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: var(--rg);
}
.reina-promo-tier-name {
  font-family: var(--rff-d);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--rch);
  margin-bottom: 4px;
}
.reina-promo-tier-plus .reina-promo-tier-name {
  color: var(--rgd);
}
.reina-promo-tier-desc {
  font-family: var(--rff-b);
  font-size: .76rem;
  color: var(--rm);
  line-height: 1.6;
}
.reina-promo-tier-tag {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--rff-b);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(184,154,106,.1);
  color: var(--rgd);
  padding: 3px 10px;
  border: 1px solid rgba(184,154,106,.25);
}

/* ─── TREATMENT PILLS ────────────────────────────────────── */
.reina-promo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}
.reina-promo-pill {
  font-family: var(--rff-b);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rwg);
  padding: 5px 12px;
  border: 1px solid rgba(184,154,106,.25);
  background: rgba(249,244,238,.6);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .reina-promos-grid {
    grid-template-columns: 1fr;
  }
  .reina-promo-img {
    height: 260px !important;
  }
}
@media (max-width: 640px) {
  .reina-promo-img {
    height: 220px !important;
  }
  .reina-promo-body {
    padding: 22px 20px 26px;
  }
}

/* ─── BOOKING ────────────────────────────────────────────── */
#reina-booking { background:var(--rch); }
.reina-booking-inner { display:grid; grid-template-columns:1fr 1fr; max-width:var(--rmax); margin:0 auto; }
.reina-booking-left { padding:100px 80px 100px 60px; display:flex; flex-direction:column; justify-content:center; }
.reina-booking-steps { display:flex; flex-direction:column; gap:24px; margin-bottom:44px; }
.reina-booking-step { display:flex; align-items:flex-start; gap:20px; }
.reina-step-num { width:32px; height:32px; min-width:32px; border:1px solid rgba(184,154,106,.4); display:flex; align-items:center; justify-content:center; font-family:var(--rff-d); font-size:.9rem; color:var(--rgl); }
.reina-step-text h4 { font-size:.85rem; letter-spacing:.06em; color:var(--rw); font-weight:400; margin-bottom:2px; font-family:var(--rff-b); }
.reina-step-text p { font-size:.8rem; color:rgba(255,255,255,.4); font-family:var(--rff-b); margin:0; }
.reina-booking-right { background:linear-gradient(145deg,var(--rbm) 0%,var(--rbd) 50%,#A07858 100%); display:flex; align-items:center; justify-content:center; min-height:560px; padding:60px 40px; }
.reina-booking-card { background:var(--rw); padding:44px 44px 48px; width:380px; max-width:100%; box-shadow:0 24px 64px rgba(42,36,32,.2); }
.reina-booking-card h3 { font-family:var(--rff-d); font-size:1.6rem; font-weight:400; color:var(--rch); margin-bottom:6px; }
.reina-booking-card > p { font-size:.8rem; color:var(--rm); margin-bottom:28px; font-family:var(--rff-b); }
.reina-form-group { margin-bottom:16px; }
.reina-form-group label { display:block; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--rwg); margin-bottom:8px; font-family:var(--rff-b); }
.reina-form-group input,.reina-form-group select { width:100%; padding:13px 16px; border:1px solid rgba(184,154,106,.25); background:var(--rc); font-family:var(--rff-b); font-size:.875rem; color:var(--rch); outline:none; transition:border-color .25s; border-radius:0; appearance:none; -webkit-appearance:none; box-sizing:border-box; }
.reina-form-group input:focus,.reina-form-group select:focus { border-color:var(--rg); }
.reina-form-group select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B89A6A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; background-color:var(--rc); padding-right:40px; }
.reina-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.reina-submit-btn { width:100%; margin-top:10px; padding:16px; background:var(--rg); color:var(--rw); font-family:var(--rff-b); font-size:.8rem; letter-spacing:.18em; text-transform:uppercase; border:none; cursor:pointer; transition:background .3s; border-radius:0; }
.reina-submit-btn:hover { background:var(--rgd); }

/* ─── WHY REINA ──────────────────────────────────────────── */
.reina-why-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.reina-why-left { position:relative; }
.reina-why-img-main { width:100%; height:540px; background:linear-gradient(145deg,#D4B88A 0%,#C09870 50%,#A07850 100%); position:relative; overflow:hidden; }
.reina-why-img-main img { width:100%; height:100%; object-fit:cover; display:block; }
.reina-why-img-placeholder { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:12px; opacity:.25; }
.reina-why-img-letter { width:80px; height:80px; border:1px solid #fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--rff-d); font-size:2rem; color:#fff; font-weight:300; }
.reina-why-img-caption { font-family:var(--rff-b); color:#fff; font-size:.9rem; letter-spacing:.2em; text-transform:uppercase; }
.reina-why-img-accent { position:absolute; bottom:-28px; right:-28px; width:200px; height:200px; background:var(--rc); border:8px solid var(--ri); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:4px; padding:20px 24px; text-align:center; }
.reina-why-accent-label { font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--rm); font-family:var(--rff-b); }
.reina-why-accent-name { font-family:var(--rff-d); font-size:1.3rem; font-weight:400; color:var(--rch); line-height:1.2; margin-top:2px; }
.reina-why-accent-cred { font-size:.7rem; letter-spacing:.15em; color:var(--rg); font-family:var(--rff-b); text-transform:uppercase; }
.reina-why-pillars { display:flex; flex-direction:column; gap:36px; margin-top:48px; }
.reina-why-pillar { display:flex; gap:24px; align-items:flex-start; }
.reina-pillar-line { width:1px; min-width:1px; margin-top:4px; background:linear-gradient(180deg,var(--rg),transparent); align-self:stretch; min-height:60px; }
.reina-pillar-content h4 { font-family:var(--rff-d); font-size:1.1rem; font-weight:400; color:var(--rch); margin-bottom:6px; }
.reina-pillar-content p { font-size:.85rem; color:var(--rm); line-height:1.75; font-family:var(--rff-b); margin:0; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.reina-testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.reina-testi-card { background:var(--rw); padding:40px 36px; border-bottom:3px solid var(--rb); transition:border-color .3s,transform .3s; }
.reina-testi-card:hover { border-color:var(--rg); transform:translateY(-4px); }
.reina-testi-stars { color:var(--rg); font-size:.85rem; margin-bottom:18px; letter-spacing:3px; }
.reina-testi-text { font-family:var(--rff-d); font-size:1.05rem; font-style:italic; color:var(--rch); line-height:1.7; margin-bottom:24px; }
.reina-testi-author { display:flex; align-items:center; gap:14px; }
.reina-testi-avatar { width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg,var(--rb),var(--rbd)); display:flex; align-items:center; justify-content:center; font-family:var(--rff-d); font-size:1rem; color:var(--rw); flex-shrink:0; }
.reina-testi-name { font-size:.82rem; font-weight:500; color:var(--rch); font-family:var(--rff-b); }
.reina-testi-meta { font-size:.75rem; color:var(--rm); font-family:var(--rff-b); }

/* ─── LOCATION ───────────────────────────────────────────── */
.reina-location-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.reina-location-map { height:420px; position:relative; overflow:hidden; }
.reina-map-overlay-label { position:absolute; top:20px; left:20px; background:var(--rw); padding:10px 18px; box-shadow:0 4px 20px rgba(0,0,0,.12); border-left:3px solid var(--rg); font-size:.8rem; color:var(--rch); pointer-events:none; z-index:2; font-family:var(--rff-b); }
.reina-map-open-btn { position:absolute; bottom:20px; right:20px; background:var(--rw); padding:10px 18px; font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; color:var(--rch)!important; display:flex; align-items:center; gap:8px; box-shadow:0 4px 20px rgba(0,0,0,.1); z-index:2; text-decoration:none; font-family:var(--rff-b); }
.reina-map-open-btn:hover { color:var(--rg)!important; text-decoration:none; }
.reina-location-info { padding-top:8px; }
.reina-info-block { margin-bottom:0; }
.reina-info-block h4 { font-family:var(--rff-d); font-size:1.05rem; font-weight:400; color:var(--rch); margin-bottom:8px; }
.reina-info-block p { font-size:.88rem; color:var(--rwg); line-height:1.75; font-family:var(--rff-b); margin:0; }
.reina-contact-link { color:var(--rg)!important; text-decoration:none; }
.reina-contact-link:hover { text-decoration:underline; }
.reina-dir-link { display:inline-flex; align-items:center; gap:6px; font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; color:var(--rg)!important; margin-top:10px; transition:gap .25s; font-family:var(--rff-b); text-decoration:none; }
.reina-dir-link:hover { gap:12px; text-decoration:none; }
.reina-info-divider { height:1px; background:rgba(184,154,106,.15); margin:24px 0; }
.reina-hours-grid { display:flex; flex-direction:column; gap:8px; margin-top:10px; }
.reina-hours-row { display:flex; justify-content:space-between; align-items:center; }
.reina-hours-day { font-size:.8rem; color:var(--rwg); font-family:var(--rff-b); }
.reina-hours-time { font-size:.8rem; color:var(--rch); font-weight:400; font-family:var(--rff-b); }
.reina-hours-closed { color:var(--rm)!important; font-style:italic; }
.reina-facilities-strip { display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.reina-facility-tag { font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--rwg); padding:7px 14px; border:1px solid rgba(184,154,106,.25); font-family:var(--rff-b); }

/* ─── CTA BANNER ─────────────────────────────────────────── */
#reina-cta-banner { background:linear-gradient(135deg,#2A2420 0%,#3D2E25 50%,#4A3828 100%); padding:100px 60px; text-align:center; position:relative; overflow:hidden; width:100%; }
#reina-cta-banner::before { content:''; position:absolute; top:-50%; left:-50%; right:-50%; bottom:-50%; background:radial-gradient(ellipse at 30% 50%,rgba(184,154,106,.12) 0%,transparent 60%),radial-gradient(ellipse at 70% 50%,rgba(201,160,140,.08) 0%,transparent 60%); pointer-events:none; }
.reina-cta-inner { position:relative; z-index:2; max-width:680px; margin:0 auto; }
.reina-cta-btns { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* ─── FOOTER ─────────────────────────────────────────────── */
#reina-footer { background:var(--rch); color:rgba(255,255,255,.5); padding:72px 60px 36px; width:100%; box-sizing:border-box; }
.reina-footer-inner { max-width:var(--rmax); margin:0 auto; }
.reina-footer-grid { display:grid; grid-template-columns:1.6fr 1.2fr 0.8fr 1fr; gap:56px; margin-bottom:56px; }
.reina-footer-logo { display:block; margin-bottom:16px; font-family:var(--rff-d); font-size:1.55rem; font-weight:500; color:var(--rw); letter-spacing:.04em; }
.reina-footer-logo span { color:var(--rg); }
.reina-footer-brand p { font-size:.85rem; line-height:1.8; max-width:260px; margin:0 0 12px; }
.reina-footer-director { font-size:.78rem!important; color:rgba(255,255,255,.4)!important; }
.reina-footer-director strong { color:var(--rgl); font-weight:400; }
.reina-footer-social { display:flex; gap:12px; margin-top:20px; }
.reina-footer-social a { width:36px; height:36px; border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.4); transition:all .25s; text-decoration:none; }
.reina-footer-social a:hover { border-color:var(--rg); color:var(--rg); }
.reina-footer-col h5 { font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:20px; font-weight:400; font-family:var(--rff-b); }
.reina-footer-col ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:11px; }
.reina-footer-col a { font-size:.85rem; color:rgba(255,255,255,.5); text-decoration:none; transition:color .25s; }
.reina-footer-col a:hover { color:var(--rgl); }
.reina-footer-bottom { padding-top:28px; border-top:1px solid rgba(255,255,255,.06); display:flex; justify-content:space-between; align-items:center; font-size:.76rem; gap:20px; flex-wrap:wrap; }
.reina-footer-bottom a { color:rgba(255,255,255,.5); text-decoration:none; transition:color .25s; }
.reina-footer-bottom a:hover { color:var(--rgl); }

/* ─── SCROLL TO TOP ──────────────────────────────────────── */
.reina-scroll-top { position:fixed; bottom:32px; right:32px; z-index:9999; width:44px; height:44px; background:var(--rg); color:var(--rw); display:flex; align-items:center; justify-content:center; font-size:18px; cursor:pointer; opacity:0; transition:opacity .3s,transform .3s; transform:translateY(12px); border:none; border-radius:0; }
.reina-scroll-top.reina-show { opacity:1; transform:translateY(0); }
.reina-scroll-top:hover { background:var(--rgd); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:1100px) {
  .reina-services-grid { grid-template-columns:repeat(2,1fr); }
  .reina-footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
}
@media (max-width:1024px) {
  :root { --rpad:80px 40px; }
  #reina-hero { grid-template-columns:1fr; min-height:auto; padding-top:80px; }
  .reina-hero-right { min-height:400px; }
  .reina-hero-badge { left:20px; bottom:20px; }
  .reina-hero-left { padding:80px 40px 60px; }
  .reina-hero-scroll { display:none; }
  .reina-services-grid { grid-template-columns:repeat(2,1fr); }
  .reina-stats-ribbon { grid-template-columns:repeat(2,1fr); gap:1px; }
  .reina-promos-grid { grid-template-columns:1fr; }
  .reina-booking-inner { grid-template-columns:1fr; }
  .reina-booking-left { padding:60px 40px; }
  .reina-why-grid { grid-template-columns:1fr; gap:60px; }
  .reina-why-img-accent { right:20px; bottom:-20px; }
  .reina-testi-grid { grid-template-columns:1fr; }
  .reina-location-grid { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  :root { --rpad:60px 24px; }
  .reina-services-grid { grid-template-columns:1fr; }
  .reina-stats-ribbon { grid-template-columns:repeat(2,1fr); padding:40px 24px; }
  .reina-booking-card { padding:32px 24px; }
  .reina-form-grid { grid-template-columns:1fr; }
  .reina-booking-right { padding:40px 20px; }
  .reina-why-img-main { height:320px; }
  .reina-why-img-accent { width:140px; height:140px; }
  #reina-cta-banner { padding:70px 24px; }
  .reina-cta-btns { flex-direction:column; align-items:center; }
  #reina-navbar { padding:0 20px; }
  .reina-services-grid { grid-template-columns:1fr; }
  .reina-footer-grid { grid-template-columns:1fr; gap:32px; }
  .reina-footer-bottom { flex-direction:column; text-align:center; }
  #reina-footer { padding:56px 24px 32px; }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL SITE STYLES — safe, targeted
═══════════════════════════════════════════════════════════ */

/* Hide our custom reina nav — use GeneratePress nav instead */
#reina-navbar { display:none !important; }
#reina-nav-drawer { display:none !important; }
.reina-nav-overlay { display:none !important; }

/* Hide telephone top bar */
.top-bar { display:none !important; }

/* Hide What's New menu item */
.hide-menu-item { display:none !important; }

/* Nav links */
.main-navigation a {
  color: #2A2420 !important;
  letter-spacing: .15em !important;
  text-transform: uppercase !important;
  font-size: .78rem !important;
  font-weight: 400 !important;
}
.main-navigation a:hover { color: #B89A6A !important; }

/* Nav bottom border */
.site-header { border-bottom: 1px solid rgba(184,154,106,.2) !important; }

/* Active page indicator */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-ancestor > a {
  color: #B89A6A !important;
  border-bottom: 2px solid #B89A6A !important;
  padding-bottom: 4px !important;
}


 
* ========================= PART 1 =========================
   Paste into: Appearance → Custom CSS
   (replace your existing "/* Book Now button */" block)
   ========================================================== */
 
#menu-main-menu > li:last-child > a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: #ffffff !important;
  border-radius: 999px !important;          /* pill shape */
  padding: 13px 32px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: .15em !important;
  line-height: 1 !important;
  border: none !important;
  /* gold base + baked-in diagonal gloss streak */
  background:
    linear-gradient(118deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.45) 47%, rgba(255,255,255,0) 64%),
    linear-gradient(125deg, #D8BC8B 0%, #C0A472 46%, #8C7247 100%) !important;
  box-shadow:
    0 2px 6px rgba(140,114,71,.35),
    0 12px 26px rgba(140,114,71,.30),
    inset 0 1px 0 rgba(255,255,255,.55),     /* top glassy highlight */
    inset 0 -1px 0 rgba(140,114,71,.40) !important;
  transition: transform .3s cubic-bezier(.25,.46,.45,.94), box-shadow .3s ease, filter .3s ease !important;
}
 
#menu-main-menu > li:last-child > a:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 4px 10px rgba(140,114,71,.40),
    0 18px 36px rgba(140,114,71,.34),
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -1px 0 rgba(140,114,71,.45) !important;
}
 
/* animated shine sweep — real  injected by PART 2 */
#menu-main-menu > li:last-child > a .reina-nav-sheen {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, rgba(255,255,255,0), rgba(255,255,255,.5), rgba(255,255,255,0));
  transform: translateX(-120%);
  animation: reinaNavSheen 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes reinaNavSheen {
  0%   { transform: translateX(-120%); }
  60%  { transform: translateX(320%); }
  100% { transform: translateX(320%); }
}

/* ─── NAV — Floating Glass Effect on Scroll ─────────────── */
.site-header {
  background: rgba(253,248,243,.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(184,154,106,.15) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 4px 24px rgba(42,36,32,.06),
    0 1px 3px rgba(42,36,32,.04) !important;
  transition: all .4s cubic-bezier(.25,.46,.45,.94) !important;
}

/* Stronger glass effect when scrolled */
.site-header.sticky-header,
.sticky-enabled .site-header,
.main-navigation.toggled .site-header {
  background: rgba(253,248,243,.96) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 8px 32px rgba(42,36,32,.1),
    0 2px 8px rgba(42,36,32,.06),
    0 1px 0 rgba(184,154,106,.1) !important;
}

.sticky-enabled 
/*.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999 !important;
  width: 100% !important;
}*/
.site-header {
  position: relative !important;
}

.site-header.scrolled {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999 !important;
  background: rgba(253, 248, 243, 0.97) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 2px 20px rgba(42, 36, 32, 0.08) !important;
  animation: navSlideDown 0.3s ease forwards !important;
}

@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
/* Nav logo size fix */
.site-header .custom-logo,
.site-header .site-logo img,
.custom-logo-link img,
.site-header img.custom-logo,
header .custom-logo {
  max-height: 100px !important;
  height: 100px !important;
  width: auto !important;
  display: block !important;
}

/* Give the header enough room for the taller logo */
.site-header .inside-header {
  padding-top: 30px !important;
  padding-bottom: 10px !important;
  min-height: 80px !important;
}
.reina-why-img-accent {
  position: absolute !important;
  bottom: -24px !important;
  right: -24px !important;
  padding: 14px 20px !important;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.75) 0%,
    rgba(253,248,243,0.55) 100%
  ) !important;
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
  border-top: 1px solid rgba(255,255,255,0.95) !important;
  border-left: 1px solid rgba(255,255,255,0.9) !important;
  border-right: 1px solid rgba(184,154,106,0.2) !important;
  border-bottom: 1px solid rgba(184,154,106,0.25) !important;
  box-shadow:
    0 8px 24px rgba(42,36,32,0.12),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(184,154,106,0.12) !important;
  border-radius: 2px !important;
  width: fit-content !important;
  z-index: 10 !important;
}
.reina-why-img-main {
  position: relative !important;
  overflow: visible !important;
}
/* ─── Google Reviews Slider Fix ──────────────────────────── */
.reina-testi-grid {
  display: block !important;
  width: 100% !important;
}

.reina-testi-grid .wprevpro_star_imgs {
  display: flex !important;
  flex-direction: row !important;
}

.reina-testi-grid .wprev_preview_txt_cont_new {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  width: 100% !important;
}

.reina-testi-grid .wp_review_slider_li {
  writing-mode: horizontal-tb !important;
  width: auto !important;
}
/* ─── Reviews Slider — Brand Styling ─────────────────────── */
.wprev_preview_txt_cont_new {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  color: #2A2420 !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.wprevpro_star_imgs img {
  width: 16px !important;
}

.wprev_preview_name_new {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  color: #2A2420 !important;
  text-transform: capitalize !important;
}

.wp_read_more_new {
  color: #B89A6A !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
}

.wprev_preview_bg_new {
  background: #FDF8F3 !important;
  border: 1px solid rgba(184,154,106,0.2) !important;
  box-shadow: 0 4px 20px rgba(42,36,32,0.06) !important;
  border-radius: 2px !important;
}

.wprev_preview_avatar_new {
  border: 2px solid rgba(184,154,106,0.3) !important;
}
/* ─── Read More Reviews Button ───────────────────────────── */
.wprevpro_read_more_reviews,
.wprevpro_read_more_reviews a,
a.wprevpro_read_more_reviews {
  display: inline-block !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #2A2420 !important;
  border: 1px solid #B89A6A !important;
  padding: 14px 32px !important;
  background: transparent !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.wprevpro_read_more_reviews a:hover {
  background: #B89A6A !important;
  color: #FDF8F3 !important;
}
/* ─── Review Cards — More Contrast & Depth ───────────────── */


.wprev_preview_bg_new,
.wprevpro_preview_bg,
.wp_review_slider_li .wprev_preview_bg_new,
div[class*="wprev_preview_bg"] {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,1) 0%,
    rgba(253,248,243,0.85) 50%,
    rgba(255,255,255,0.95) 100%
  ) !important;
  border: 1px solid rgba(184,154,106,0.2) !important;
  border-top: 2px solid rgba(184,154,106,0.5) !important;
  border-bottom: 1px solid rgba(184,154,106,0.15) !important;
  box-shadow: 
    0 12px 40px rgba(42,36,32,0.10),
    0 4px 12px rgba(42,36,32,0.06),
    0 1px 0 rgba(255,255,255,1),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(184,154,106,0.08) !important;
  border-radius: 2px !important;
  padding: 28px !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Glossy sheen on top half */
.wprev_preview_bg_new::before,
div[class*="wprev_preview_bg"]::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 45% !important;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0) 100%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* Gold shimmer line at top */
.wprev_preview_bg_new::after,
div[class*="wprev_preview_bg"]::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184,154,106,0.9),
    transparent
  ) !important;
  z-index: 2 !important;
}
/* ─── Testimonials Section Background ────────────────────── */
#reina-testimonials {
  background: #F2EBE0 !important;
  padding: 80px 0 !important;
}
/* ═══════════════════════════════════════════════════════════
   REINA AESTHETICS — LOCATION SECTION REDESIGN CSS
   
   INSTRUCTIONS:
   Add this block at the END of your existing Custom CSS
   (Appearance → Customize → Additional CSS).
   This REPLACES the existing location CSS rules — the 
   original .reina-location-grid, .reina-location-map, 
   .reina-location-info rules still work for the info 
   blocks; these new rules add the photo/layout layer.
   ═══════════════════════════════════════════════════════ */

/* ─── MAIN LAYOUT GRID ───────────────────────────────────── */
.reina-loc-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
}

/* ─── LEFT: CLINIC PHOTO ─────────────────────────────────── */
.reina-loc-photo-wrap {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    var(--rb) 0%,
    var(--rbd) 45%,
    var(--rbr) 100%
  );
}

/* When real photo is added, this styles the  tag */
.reina-loc-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--rease);
}
.reina-loc-photo-wrap:hover .reina-loc-photo-img {
  transform: scale(1.03);
}

/* Placeholder styling (remove once real photo is added) */
.reina-loc-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.reina-loc-ph-frame {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}
.reina-loc-ph-inner {
  transform: rotate(-45deg);
  font-size: 22px;
  color: rgba(255,255,255,0.6);
}
.reina-loc-ph-label {
  font-family: var(--rff-b);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Gradient overlay — bottom portion for text legibility */
.reina-loc-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(42,36,32,0.78) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* Content overlaid on photo */
.reina-loc-photo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}

/* Service pills on photo */
.reina-loc-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.reina-loc-pill {
  font-family: var(--rff-b);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 12px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Clinician-Owned badge */
.reina-loc-photo-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reina-loc-badge-tag {
  font-family: var(--rff-d);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rgl);
  letter-spacing: 0.03em;
}

/* ─── RIGHT COLUMN ───────────────────────────────────────── */
.reina-loc-right-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Override existing map styles for new layout */
#reina-location .reina-location-map {
  height: 280px !important;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* ─── INFO STRIP (below map) ─────────────────────────────── */
.reina-loc-info-strip {
  background: var(--rw);
  border-top: 3px solid var(--rg);
  display: grid;
  grid-template-columns: 1.2fr 1px 1.1fr 1px 1fr;
  align-items: start;
  box-shadow: 0 4px 20px rgba(42,36,32,0.07);
}

.reina-loc-strip-divider {
  background: rgba(184,154,106,0.18);
  align-self: stretch;
  width: 1px;
  margin: 20px 0;
}

.reina-loc-info-item {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reina-loc-info-label {
  font-family: var(--rff-b);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rg);
  display: block;
  margin-bottom: 4px;
}

.reina-loc-info-value {
  font-family: var(--rff-b);
  font-size: 0.8rem;
  color: var(--rch);
  line-height: 1.6;
}

/* Hours inside strip */
.reina-loc-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}
.reina-loc-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--rff-b);
  font-size: 0.75rem;
  color: var(--rwg);
}
.reina-loc-hours-highlight {
  color: var(--rg) !important;
  font-weight: 500;
}

/* Phone in strip */
.reina-loc-phone {
  font-family: var(--rff-d);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--rch) !important;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.reina-loc-phone:hover {
  color: var(--rg) !important;
}

/* Book Now CTA inside strip */
.reina-loc-cta-btn {
  margin-top: 8px !important;
  padding: 11px 20px !important;
  font-size: 0.72rem !important;
  justify-content: center;
}

/* ─── AMENITIES STRIP ────────────────────────────────────── */
.reina-loc-amenities {
  padding-top: 32px;
  border-top: 1px solid rgba(184,154,106,0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reina-loc-amenity-label {
  font-family: var(--rff-b);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rg);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .reina-loc-main-grid {
    grid-template-columns: 1fr;
  }
  .reina-loc-photo-wrap {
    height: 400px;
  }
  #reina-location .reina-location-map {
    height: 240px !important;
  }
  .reina-loc-info-strip {
    grid-template-columns: 1fr;
  }
  .reina-loc-strip-divider {
    width: auto;
    height: 1px;
    margin: 0 20px;
  }
}

@media (max-width: 640px) {
  .reina-loc-photo-wrap {
    height: 300px;
  }
  .reina-loc-photo-content {
    padding: 20px 22px;
  }
  .reina-loc-amenities {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/* ═══════════════════════════════════════════════════════════
   REINA LOCATION SECTION — REFINEMENT FIXES
   
   INSTRUCTIONS:
   Paste this at the very BOTTOM of your Additional CSS,
   AFTER the previous location CSS you just added.
   These rules override and fine-tune the layout.
   ═══════════════════════════════════════════════════════ */

/* Fix 1: Section title — bring down to match other section headings */
#reina-location .reina-display-2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
}

/* Fix 2: Photo height — match the combined height of map + info strip */
.reina-loc-photo-wrap {
  height: 100% !important;
  min-height: 480px !important;
  align-self: stretch !important;
}

/* Fix 3: Make the main grid rows stretch so both columns are equal height */
.reina-loc-main-grid {
  align-items: stretch !important;
}

/* Fix 4: Right column — remove any gap between map and info strip */
.reina-loc-right-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  height: 100% !important;
}

/* Fix 5: Map — let it grow to fill available space above the strip */
#reina-location .reina-location-map {
  flex: 1 !important;
  min-height: 220px !important;
  height: auto !important;
}

/* Fix 6: Info strip — even 3-column grid, tighter padding */
.reina-loc-info-strip {
  grid-template-columns: 1fr 1px 1fr 1px 1fr !important;
  flex-shrink: 0 !important;
}

.reina-loc-info-item {
  padding: 20px 18px !important;
}

/* Fix 7: Book Now button — compact, fits the strip */
.reina-loc-cta-btn {
  padding: 10px 16px !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.18em !important;
  margin-top: 10px !important;
}

/* Fix 8: Amenities — more breathing room at top */
.reina-loc-amenities {
  padding-top: 40px !important;
  margin-top: 8px !important;
}

/* Fix 9: Phone number — slightly smaller to match strip */
.reina-loc-phone {
  font-size: 1rem !important;
}

/* Fix 10: Hours rows — tighter spacing inside strip */
.reina-loc-hours {
  gap: 3px !important;
}
.reina-loc-hours-row {
  font-size: 0.72rem !important;
}

/* Responsive: stack cleanly on tablet/mobile */
@media (max-width: 1024px) {
  .reina-loc-photo-wrap {
    min-height: 320px !important;
    height: 320px !important;
  }
  #reina-location .reina-location-map {
    height: 220px !important;
    flex: none !important;
  }
  .reina-loc-info-strip {
    grid-template-columns: 1fr !important;
  }
  .reina-loc-strip-divider {
    width: auto !important;
    height: 1px !important;
    margin: 0 18px !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   REINA LOCATION — PATCH 2
   Paste at the very BOTTOM of Additional CSS.
   ═══════════════════════════════════════════════════════ */

/* Fix 1: Force photo to fill full column height */
#reina-location .reina-loc-main-grid {
  align-items: stretch !important;
}
#reina-location .reina-loc-photo-wrap {
  position: relative !important;
  height: auto !important;
  min-height: 100% !important;
  align-self: stretch !important;
  display: block !important;
}

/* ========================= PART 1 =========================
   Appearance → Custom CSS — paste as a NEW block at the bottom.
   Higher-specificity selector overrides the inline blush rule.
   ========================================================== */
 
body .main-navigation ul#menu-main-menu > li:last-child > a {
  position: relative;
  overflow: hidden;
  /* gold gradient + gloss streak (transparent color layer so
     the old blush background-color can't show through) */
  background-color: transparent !important;
  background-image:
    linear-gradient(118deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.45) 47%, rgba(255,255,255,0) 64%),
    linear-gradient(125deg, #D8BC8B 0%, #C0A472 46%, #8C7247 100%) !important;
  color: #ffffff !important;
  padding: 10px 26px !important;
  border-radius: 999px !important;          /* full pill */
  border: none !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  margin-left: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
  box-shadow:
    0 2px 6px rgba(140,114,71,.35),
    0 12px 26px rgba(140,114,71,.30),
    inset 0 1px 0 rgba(255,255,255,.55),     /* top glassy highlight */
    inset 0 -1px 0 rgba(140,114,71,.40) !important;
  transition: transform .3s cubic-bezier(.25,.46,.45,.94), box-shadow .3s ease, filter .3s ease !important;
}
 
body .main-navigation ul#menu-main-menu > li:last-child > a:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 4px 10px rgba(140,114,71,.40),
    0 18px 36px rgba(140,114,71,.34),
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -1px 0 rgba(140,114,71,.45) !important;
}
 
/* animated shine sweep — real  injected by PART 2 */
body .main-navigation ul#menu-main-menu > li:last-child > a .reina-nav-sheen {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, rgba(255,255,255,0), rgba(255,255,255,.5), rgba(255,255,255,0));
  transform: translateX(-120%);
  animation: reinaNavSheen 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes reinaNavSheen {
  0%   { transform: translateX(-120%); }
  60%  { transform: translateX(320%); }
  100% { transform: translateX(320%); }
}