/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #D4AF37;
  --gold-light: #F5E6A3;
  --gold-dark: #B8860B;
  --bg: #060606;
  --bg2: #0d0d0d;
  --bg3: #111111;
  --text: #f0f0f0;
  --muted: #888;
  --border: rgba(212,175,55,0.2);
  --header-logo-size: 2rem;
  --header-logo-tracking: 2px;
  --header-icon-box: 48px;
  --header-icon-line-width: 30px;
  --header-icon-line-height: 2.5px;
  --header-icon-gap: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

.sans { font-family: 'Montserrat', sans-serif; }

/* ===== STARS BG ===== */
.stars-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1px 1px at 10% 15%, rgba(212,175,55,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 45%, rgba(212,175,55,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 20%, rgba(212,175,55,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 60%, rgba(212,175,55,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 30%, rgba(212,175,55,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 80%, rgba(212,175,55,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 75%, rgba(212,175,55,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 88%, rgba(212,175,55,0.3) 0%, transparent 100%);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
}

#navbar.scrolled {
  background: rgba(6,6,6,0.95);
  border-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
    display: inline-block;
    flex-shrink: 0;
    line-height: 1;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: var(--header-logo-size);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: var(--header-logo-tracking);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.6rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

/* ===== HAMBURGER BUTTON (mobile only) ===== */
.hamburger {
  display: none;
  width: var(--header-icon-box);
  height: var(--header-icon-box);
  flex: 0 0 var(--header-icon-box);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--header-icon-gap);
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: 4px;
  color: var(--gold);
  -webkit-appearance: none;
  appearance: none;
}
.hamburger span {
  display: block;
  width: var(--header-icon-line-width);
  height: var(--header-icon-line-height);
  background: currentColor;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* ===== MOBILE DRAWER (left slide-in, mobile only) ===== */

/* Dark overlay behind the drawer */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9997;
}
.drawer-overlay.open { display: block; }

/* Hide navbar behind drawer when drawer is open */
body.drawer-open #navbar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Drawer panel — slides in from LEFT */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 82%;
  max-width: 300px;
  background: #0d0d0d;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  border-right: 1px solid rgba(212,175,55,0.15);
}
.mobile-drawer.open {
  transform: translateX(0);
}

/* Header row: logo + close button */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background: #0a0a0a;
  z-index: 2;
  min-height: 60px;
}
.drawer-logo {
  display: inline-block;
  line-height: 1;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--header-logo-size);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: var(--header-logo-tracking);
  text-align: left;
  flex: 1;
}
.drawer-close {
  width: var(--header-icon-box);
  height: var(--header-icon-box);
  flex: 0 0 var(--header-icon-box);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(212,175,55,0.35);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: border-color 0.2s, color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.drawer-close:hover { border-color: var(--gold); color: var(--gold); }
.drawer-close:focus-visible,
.hamburger:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.drawer-nav a:focus-visible,
.drawer-cta:focus-visible,
.nav-logo:focus-visible,
.drawer-logo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Vertical nav links */
.drawer-nav {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 0;
  border-bottom: 0;
  justify-content: flex-start;
}
.drawer-nav a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(240,240,240,0.85);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  transition: color 0.2s, background 0.2s, padding-left 0.25s;
}
.drawer-nav a:hover,
.drawer-nav a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.07);
  padding-left: 2rem;
}

/* Hire Me CTA at bottom */
.drawer-cta {
  margin: 1.25rem;
  display: block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000 !important;
  background: var(--gold);
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  transition: background 0.25s;
}
.drawer-cta:hover { background: var(--gold-light); }

/* ===== GOLD DIVIDER ===== */
.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

.gold-line.left { margin: 1.5rem 0; }

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.section-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}

/* ===== GOLD BUTTON ===== */
.btn-gold {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #000;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transition: left 0.4s ease;
}

.btn-gold:hover::before { left: 0; }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline-gold {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover {
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(212,175,55,0.08);
}

.glass-card:hover::before { opacity: 1; }

/* ===== PAGE WRAPPER ===== */
.page-content {
  position: relative;
  z-index: 1;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 12rem 4rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 4rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   VIP FOOTER — 4 COLUMN LUXURY
═══════════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg) 0%, #020202 100%);
  margin-top: 8rem;
}

/* Gold top bar with ornament */
.footer-gold-bar {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 20%, var(--gold) 50%, var(--gold-dark) 80%, transparent 100%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-ornament {
  position: absolute;
  background: var(--bg);
  color: var(--gold);
  font-size: 1.1rem;
  padding: 0 1.25rem;
  line-height: 1;
  letter-spacing: 6px;
}

/* Brand tagline above columns */
.footer-brand-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 4rem 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  line-height: 1;
  text-decoration: none;
  display: block;
}
.footer-brand-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(212,175,55,0.5);
  letter-spacing: 2px;
  margin-top: 0.4rem;
}
.footer-social-icons {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}
.fsi {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.fsi:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.06);
  transform: translateY(-2px);
}

/* 4-column grid */
.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 4rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.3fr;
  gap: 3rem;
}

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 30px; height: 1px;
  background: var(--gold);
}

.footer-col-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 0;
}

.footer-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-col-list a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(136,136,136,0.85);
  text-decoration: none;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  padding-left: 0;
}
.footer-col-list a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0;
  margin-right: 0;
  transition: all 0.25s ease;
  position: absolute;
  left: -14px;
}
.footer-col-list a:hover {
  color: var(--gold-light);
  padding-left: 14px;
}
.footer-col-list a:hover::before { opacity: 1; }

/* Contact column */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fc-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.79rem;
  color: rgba(136,136,136,0.85);
  line-height: 1.5;
}
.fc-ico {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
  opacity: 0.7;
}
.fc-row a {
  color: rgba(136,136,136,0.85);
  text-decoration: none;
  transition: color 0.25s;
}
.fc-row a:hover { color: var(--gold); }

/* Reviews slider */
.review-slider-shell {
  position: relative;
}

.review-slider-stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.review-slider-card {
  position: relative;
  padding: 3rem;
  overflow: hidden;
}

.review-slider-card::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.08);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-card-source {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.review-card-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: var(--muted);
}

.review-card-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--text);
  margin-bottom: 2rem;
}

.review-card-home .review-card-text {
  font-size: 1.5rem;
  line-height: 1.7;
}

.review-card-full .review-card-text {
  font-size: 1.6rem;
  line-height: 1.8;
}

.review-card-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.review-card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.review-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.review-card-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.review-card-platform {
  margin-left: auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.28rem 0.7rem;
  white-space: nowrap;
}

.review-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--gold);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.08);
  outline: none;
}

.review-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.35);
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.review-dot.active,
.review-dot:hover,
.review-dot:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.12);
  outline: none;
}

.review-slider-nav {
  display: none;
}

/* Map strip */
.footer-map {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 4rem 0;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  opacity: 0.85;
  filter: grayscale(20%);
}

/* Payment strip */
.footer-payments {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 4rem 0;
}
.footer-payments-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 0 1.75rem;
  border-top: 1px solid rgba(212,175,55,0.12);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.footer-payments-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,240,240,0.95);
  flex: 0 0 auto;
  white-space: nowrap;
}
.footer-payments-list {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.payment-chip {
  min-width: 110px;
  height: 46px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.payment-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.35);
  background: linear-gradient(180deg, rgba(212,175,55,0.08), rgba(255,255,255,0.02));
}
.payment-chip span {
  line-height: 1;
  white-space: nowrap;
}
.payment-chip-paypal span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}
.payment-chip-paypal strong {
  color: #0070ba;
  font-weight: 700;
}
.payment-chip-bank span,
.payment-chip-swift span,
.payment-chip-upwork span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.payment-chip-bank span { color: #7dd3fc; }
.payment-chip-swift span { color: #93c5fd; }
.payment-chip-upwork span { color: #6fda44; }

/* Bottom bar */
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 4rem;
  border-top: 1px solid rgba(212,175,55,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: #333;
  letter-spacing: 1px;
}
.footer-craft {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(212,175,55,0.3);
  letter-spacing: 1px;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: wa-ring 2.2s ease-out infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  #navbar {
    padding: 1.2rem 2rem;
  }

  .nav-links {
    gap: 1.35rem;
  }

  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #navbar { padding: 1.2rem 2rem; }
  .nav-links { display: none !important; }
  .nav-cta  { display: none !important; }
  .hamburger { display: flex !important; }
  .review-slider-stage { grid-template-columns: 1fr; }
  .review-slider-stage .review-arrow { display: none; }
  .review-slider-nav { display: flex; justify-content: center; gap: 0.9rem; margin-top: 1rem; }
  .review-arrow { width: 48px; height: 48px; }
  .review-slider-card { padding: 2.15rem 1.6rem; }
  .review-card-home .review-card-text,
  .review-card-full .review-card-text { font-size: 1.15rem; line-height: 1.8; }
  .review-card-footer { flex-wrap: wrap; align-items: flex-start; }
  .review-card-platform { margin-left: 0; }
  .page-hero { padding: 10rem 2rem 4rem; }
  .page-hero h1 { font-size: 2.5rem; }
  .footer-brand-bar { flex-direction: column; align-items: flex-start; padding: 3rem 1.5rem 2rem; }
  .footer-map { padding: 1.5rem 1.5rem 0; }
  .footer-map iframe { height: 220px; }
  .footer-payments { padding: 1.25rem 1.5rem 0; }
  .footer-payments-inner { align-items: flex-start; flex-direction: column; gap: 1rem; padding: 1.15rem 0 1.35rem; }
  .footer-payments-label { white-space: normal; }
  .payment-chip { min-width: 132px; height: 44px; }
  .footer-brand-name { font-size: 2rem; }
  .footer-main { grid-template-columns: 1fr; padding: 2.5rem 1.5rem 2rem; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: 0.75rem; }
  .section-title { font-size: 2rem; }
  .wa-float { width: 50px; height: 50px; bottom: 1.5rem; right: 1.5rem; }
  .wa-float svg { width: 26px; height: 26px; }
}
