/* ============================================================
   FANTA'S EMPIRE — Main Stylesheet
   Brand Colors: Sky Blue #87CEEB | Lavender #C8A2C8 | Orange #FFA94D
   Supporting: Charcoal #333333 | Soft White #FAFAFA | Gold #D4AF37
   Fonts: Playfair Display | Montserrat | Great Vibes
   ============================================================ */

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

:root {
  --sky-blue:    #87CEEB;
  --lavender:    #C8A2C8;
  --orange:      #FFA94D;
  --charcoal:    #333333;
  --soft-white:  #FAFAFA;
  --gold:        #D4AF37;
  --gold-light:  #E8CB5E;
  --dark:        #1A1A1A;
  --darker:      #111111;
  --mid-gray:    #888888;
  --border:      #E8E3DD;
  --bg-soft:     #F7F3EE;
  --bg-dark:     #1A1A1A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --font-script:  'Great Vibes', cursive;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);

  --transition: 0.3s ease;
  --max-width:  1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--soft-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--dark); color: white; padding: .5rem 1rem; border-radius: var(--radius-sm);
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--sky-blue);
  outline-offset: 3px;
}

/* ── UTILITIES ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }
.section-pad { padding: 5rem 0; }

.bg-dark    { background: var(--bg-dark); }
.bg-soft    { background: var(--bg-soft); }
.bg-darker  { background: var(--darker); }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: .75rem;
}
.section-eyebrow.light { color: var(--orange); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-heading.light { color: var(--soft-white); }

.section-sub {
  color: #666;
  max-width: 600px;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
}

.section-header { margin-bottom: 3rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sky-blue), #5BAFD6);
  color: white;
  box-shadow: 0 4px 20px rgba(135,206,235,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #6CC0E8, #4AA5D0);
  box-shadow: 0 6px 28px rgba(135,206,235,.5);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #B8961E);
  color: white;
  box-shadow: 0 4px 20px rgba(212,175,55,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,175,55,.5);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--sky-blue);
  color: var(--sky-blue);
}
.btn-outline:hover {
  background: var(--sky-blue);
  color: white;
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: white;
}
.btn-outline-light:hover {
  background: white;
  color: var(--charcoal);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-book {
  background: linear-gradient(135deg, var(--gold), #B8961E) !important;
  color: white !important;
  padding: .4rem 1.5rem !important;
  border-radius: 50px !important;
}
.btn-book:hover { transform: translateY(-2px); }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: linear-gradient(90deg, var(--charcoal), #444);
  color: white;
  text-align: center;
  padding: .65rem 3rem .65rem 1rem;
  font-size: .82rem;
  position: relative;
}
.announce-bar p { display: inline; }
.announce-bar a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.announce-close {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: white; font-size: 1.3rem; line-height: 1;
  opacity: .7; transition: opacity .2s;
}
.announce-close:hover { opacity: 1; }

/* ── NAVIGATION ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: .9rem 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-img { height: 90px; width: auto; object-fit: contain; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--orange);
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nav-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: .5rem .40rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: .03em;
}
.nav-link:hover, .nav-link.active { color: var(--sky-blue); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: .65em; transition: transform .2s; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + .5rem); left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .5rem;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s ease;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: .6rem 1rem;
  font-size: .83rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.dropdown-menu li a:hover { background: var(--bg-soft); color: var(--sky-blue); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,.75) 0%,
    rgba(26,26,26,.55) 50%,
    rgba(135,206,235,.15) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  max-width: 680px;
  margin-left: 5%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-bottom: 1.2rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-script {
  font-family: var(--font-script);
  font-size: 1.2em;
  color: var(--gold-light);
  font-style: normal;
  display: block;
  line-height: 1.3;
}
.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll-hint span {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; } 50% { opacity: 1; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: linear-gradient(135deg, var(--charcoal), #444);
  padding: 2rem 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  padding: .5rem 3rem;
  text-align: center;
}
.trust-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.65);
  margin-top: .3rem;
}
.trust-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.15);
}

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--sky-blue), var(--lavender));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 48px; height: 48px;
  color: var(--sky-blue);
  margin-bottom: 1.25rem;
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--charcoal);
}
.why-card p { font-size: .9rem; color: #666; line-height: 1.65; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #222;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.4); }

.service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-card-body {
  padding: 1.5rem;
  flex: 1;
}
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  margin-bottom: .5rem;
}
.service-card-body p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
  transition: letter-spacing .2s;
}
.service-card:hover .service-link { letter-spacing: .1em; }

/* ── SPLIT SECTION ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

.split-content .section-eyebrow { color: var(--orange); }
.split-content p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.feature-list {
  margin: 1.5rem 0;
}
.feature-list li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  font-size: .92rem;
  color: var(--charcoal);
}
.feature-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-blue), var(--lavender));
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.split-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  padding: .75rem 1.25rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.3;
}
.badge-script { font-family: var(--font-script); color: var(--orange); font-size: 1.1rem; display: block; }
.badge-main { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--charcoal); }

/* ── FOUNDER ── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.founder-media {
  position: relative;
}
.founder-media img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative; z-index: 1;
}
.founder-accent {
  position: absolute;
  width: 80%; height: 80%;
  top: -1.5rem; left: -1.5rem;
  background: linear-gradient(135deg, rgba(135,206,235,.25), rgba(200,162,200,.2));
  border-radius: var(--radius-lg);
  z-index: 0;
}
.founder-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  border-left: 3px solid var(--lavender);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.5;
}
.italic-accent { font-style: italic; color: var(--sky-blue); }
.founder-content p { color: #666; line-height: 1.8; margin-bottom: 1rem; }

/* ── GALLERY MOSAIC ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: .75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ── MEMBERSHIP TEASER ── */
.membership-card {
  background: linear-gradient(135deg, var(--charcoal), #2d2d2d);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.membership-card::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.15), transparent 70%);
}
.membership-content { flex: 1; }
.membership-content .section-eyebrow { color: var(--gold); }
.membership-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}
.membership-content p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.membership-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 2rem;
}
.membership-perks li {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  padding-left: 1.2rem;
  position: relative;
}
.membership-perks li::before {
  content: '♛';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: .7rem;
}
.membership-badge {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, rgba(212,175,55,.2), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
  width: 160px; height: 160px;
  justify-content: center;
  flex-shrink: 0;
}
.badge-crown { font-size: 2.5rem; color: var(--gold); }
.membership-badge span:last-child {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
}
.testimonial-card p {
  font-size: .92rem;
  color: #555;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex; flex-direction: column; gap: .15rem;
}
.testimonial-author strong {
  font-size: .9rem;
  color: var(--charcoal);
}
.testimonial-author span {
  font-size: .78rem;
  color: var(--mid-gray);
}

/* ── BOOKING CTA ── */
.booking-cta {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #1d2535 100%);
}
.cta-inner { padding: 2rem 0; }
.cta-sub {
  color: rgba(255,255,255,.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.cta-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cta-contact {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
}
.cta-contact a { color: var(--sky-blue); font-weight: 600; }
.cta-contact a:hover { text-decoration: underline; }

/* ── FOOTER ── */
.site-footer {
  background: var(--darker);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { height: 44px; margin-bottom: 1rem; }
.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: .75rem;
}
.footer-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.5); }

.footer-social {
  display: flex; gap: .75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  color: white;
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-nav h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-nav ul a:hover { color: var(--sky-blue); }

.footer-contact h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-contact-list { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer-contact-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .15rem; }
.footer-contact-list a { color: rgba(255,255,255,.5); }
.footer-contact-list a:hover { color: var(--sky-blue); }

.footer-payment { margin-top: 1.5rem; }
.footer-payment p { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: .5rem; }
.payment-icons { display: flex; align-items: center; gap: .75rem; }
.payment-icons img { height: 24px; }
.zelle-badge {
  background: #6D1ED4;
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 4px;
  letter-spacing: .05em;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); margin-bottom: .3rem; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  filter: drop-shadow(0 4px 16px rgba(37,211,102,.5));
  transition: transform .25s ease, filter .25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 20px rgba(37,211,102,.7));
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1; transform: translateX(0);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-icon { width: 58px; height: 58px; border-radius: 50%; }

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + .75rem);
  white-space: nowrap;
  background: var(--darker);
  color: white;
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .85rem;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateX(6px);
  transition: all .25s ease;
  pointer-events: none;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--darker);
}

/* ── PAGE HEADER (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d2d 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .12;
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--sky-blue); }
.breadcrumb span { opacity: .4; }

/* ── FORMS ── */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px rgba(135,206,235,.2);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-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='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit-wrap { text-align: center; }
.form-status {
  margin-top: 1rem;
  font-weight: 600;
  font-size: .9rem;
  min-height: 1.5em;
}
.form-status.success { color: #2e7d32; }
.form-status.error   { color: #c62828; }

/* ── PAYMENT INFO BOX ── */
.payment-info-box {
  background: linear-gradient(135deg, var(--bg-soft), white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}
.payment-info-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.payment-options { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.payment-option {
  display: flex; align-items: center; gap: .75rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .85rem 1.25rem;
}
.payment-option img { height: 28px; }
.payment-option-info strong { display: block; font-size: .88rem; }
.payment-option-info span { font-size: .78rem; color: var(--mid-gray); }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section-pad { padding: 3.5rem 0; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: .25rem;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; z-index: 1000; }

  .nav-link {
    font-size: 1rem;
    padding: .75rem .5rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: var(--bg-soft);
    margin-top: .25rem;
    margin-bottom: .25rem;
  }

  .hero-content { margin-left: 0; padding: 5rem 1.5rem 3rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: fit-content; }

  .trust-grid { gap: 1.5rem; }
  .trust-item { padding: .5rem 1.5rem; }
  .trust-divider { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .split-grid,
  .split-grid.reverse,
  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-grid.reverse { direction: ltr; }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  .membership-card { flex-direction: column; gap: 2rem; padding: 2.5rem; text-align: center; }
  .membership-perks { grid-template-columns: 1fr; text-align: left; }
  .membership-badge { width: 120px; height: 120px; align-self: center; }

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

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

  .form-row { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .trust-grid { flex-direction: column; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}

/* ── ANIMATIONS & ENTRANCE ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PRINT ── */
@media print {
  .site-header, .site-footer, .whatsapp-float, .announce-bar { display: none; }
  body { color: black; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ── CASH APP PAYMENT STYLES ── */
.payment-option-link {
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.payment-option-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,214,50,.2);
  border-color: #00D632;
}
.cashapp-logo, .zelle-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.cashapp-logo svg, .zelle-logo svg {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.payment-handle {
  font-size: .9rem !important;
  font-weight: 700 !important;
  color: #333 !important;
  display: block;
}
.payment-tap {
  font-size: .72rem !important;
  color: #00D632 !important;
  font-weight: 600 !important;
  display: block;
  margin-top: 1px;
}
.payment-option-link .payment-tap { color: #00D632 !important; }
.footer-cashapp-link {
  display: inline-block;
  transition: opacity .2s, transform .2s;
}
.footer-cashapp-link:hover { opacity: .85; transform: scale(1.03); }
.footer-cashapp-link svg { display: block; height: 24px; width: auto; }
