/* ============================================
   FOOTMARK SURF STAY — Shared Styles
   ============================================ */

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0d1f3c;
  --navy-2:  #122a4d;
  --ocean:   #0d7da6;
  --wave:    #1ab3d8;
  --sunset:  #f47c20;
  --gold:    #e8a830;
  --sand:    #f3e4c4;
  --cream:   #faf6ee;
  --ink:     #1c2733;
  --ink-soft:#5b6b7a;
  --white:   #ffffff;

  --serif: 'Fraunces', 'Georgia', serif;
  --display: 'Bebas Neue', sans-serif;
  --script: 'Pacifico', cursive;
  --body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ---------- NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,31,60,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26,179,216,0.18);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mark {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.brand-mark span { color: var(--wave); }
.brand-sub {
  font-family: var(--script);
  font-size: 0.95rem;
  color: var(--gold);
  margin-left: 0.3rem;
}

.nav-links {
  display: flex;
  gap: 2.1rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--wave); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--sunset);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.nav-cta svg { width: 16px; height: 16px; fill: white; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 1.75rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(26,179,216,0.18);
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 1.9rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sunset), var(--gold));
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(244,124,32,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(244,124,32,0.45); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--wave); color: var(--wave); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.45); }
.btn-whatsapp svg { width: 18px; height: 18px; fill: white; }

/* ---------- ECONOMY/SECTION LABELS ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.05;
}
.section-title span { color: var(--ocean); }

.section-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-top: 1rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2rem;
  margin-top: 6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-mark { font-size: 1.6rem; }
.footer-tag {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.8rem;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wave);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.6rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer-credit a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--wave); }
.social-row { display: flex; gap: 0.9rem; }
.social-row a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: all 0.2s;
}
.social-row a:hover { border-color: var(--wave); background: rgba(26,179,216,0.1); }
.social-row svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- WAVE DIVIDER ---------- */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
}

/* ---------- UTILITY ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
