/* ============================================================
   PALMERA — tropical pastel theme
   Coral × Teal × Sunshine on cream
   ============================================================ */
:root {
  --cream: #fffaf3;
  --sand: #fff0de;
  --coral: #ff6f61;
  --coral-soft: #ffb3a7;
  --teal: #17b8a6;
  --teal-deep: #0e8d80;
  --teal-soft: #b8f2ea;
  --sun: #ffd166;
  --lav: #d9c6ff;
  --ink: #2f4156;
  --gray: #5d6e87; /* AA contrast on cream */
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(47, 65, 86, 0.10);
  --shadow-lg: 0 26px 60px rgba(47, 65, 86, 0.16);
  --radius: 26px;
  --grad-coral: linear-gradient(120deg, #ff6f61 0%, #ff9a76 100%);
  --grad-teal: linear-gradient(120deg, #17b8a6 0%, #4fd8c8 100%);
  --grad-sunset: linear-gradient(120deg, #ff9a76 0%, #ffd166 100%);
  --font-head: 'Baloo 2', 'Hiragino Sans', sans-serif;
  --font-body: 'Nunito', 'Hiragino Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--ink); font-weight: 700; }
.accent { color: var(--coral); }
.accent-teal { color: var(--teal); }
.section { padding: 100px 0; position: relative; }
.section.white { background: var(--white); }
.section.sand { background: var(--sand); }
.container { width: min(1180px, 90%); margin: 0 auto; }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 40px;
  padding: 6px 20px;
  margin-bottom: 18px;
}
.section-title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-lead { color: var(--gray); max-width: 720px; margin: 0 auto 10px; font-size: 1.06rem; }
.squiggle {
  width: 120px; height: 14px;
  margin: 14px auto 24px;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--grad-coral);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 111, 97, 0.35);
}
.btn-primary:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 38px rgba(255, 111, 97, 0.45); }
.btn-teal {
  background: var(--grad-teal);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 184, 166, 0.35);
}
.btn-teal:hover { transform: translateY(-4px) scale(1.03); }
.btn-ghost {
  background: rgba(255,255,255,.75);
  color: var(--ink);
  border: 2px solid rgba(47,65,86,.15);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; transform: translateY(-4px); border-color: var(--teal); color: var(--teal-deep); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(47, 65, 86, 0.10);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding .3s ease;
}
.site-header.scrolled .nav-wrap { padding: 12px 0; }
.logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--coral); }
.logo .palm { font-size: 1.3rem; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  padding: 8px 2px;
  position: relative;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  border-radius: 3px;
  background: var(--grad-coral);
  transition: width .3s ease;
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 260px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all .28s ease;
}
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-links li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block;
  padding: 11px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transition: all .2s ease;
}
.dropdown a:hover { background: var(--sand); color: var(--coral); padding-left: 32px; }

.nav-cta { padding: 11px 26px !important; font-size: .9rem !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; z-index: 110; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 3px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
}
.hero .bg-photo { position: absolute; inset: 0; z-index: 0; }
.hero .bg-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero .bg-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,250,243,.55) 0%, rgba(255,250,243,.75) 60%, var(--cream) 100%);
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero-inner { position: relative; z-index: 2; padding: 160px 0 40px; text-align: center; }
.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(255,255,255,.8);
  border: 2px solid var(--teal-soft);
  border-radius: 50px;
  padding: 9px 24px;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(23,184,166,.15);
}
.hero .kicker::before { content: "🌴"; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.rotator { display: inline-block; }
.rotator .word {
  display: inline-block;
  background: linear-gradient(120deg, var(--teal) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wordIn .55s cubic-bezier(.2,.9,.3,1.2) both;
}
@keyframes wordIn {
  from { opacity: 0; transform: translateY(26px) rotate(-2deg); }
  to { opacity: 1; transform: none; }
}
.hero p.lead { color: #5a6b83; font-size: 1.15rem; max-width: 640px; margin: 0 auto 38px; font-weight: 600; }
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

/* floating tropical bits */
.floaty { position: absolute; z-index: 1; font-size: 2.4rem; animation: floaty 7s ease-in-out infinite; filter: drop-shadow(0 8px 14px rgba(47,65,86,.15)); }
.floaty.f1 { top: 20%; left: 7%; animation-delay: -1s; }
.floaty.f2 { top: 30%; right: 9%; font-size: 3rem; animation-delay: -3s; }
.floaty.f3 { bottom: 26%; left: 12%; font-size: 2rem; animation-delay: -5s; }
.floaty.f4 { bottom: 32%; right: 14%; animation-delay: -2s; }
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-26px) rotate(6deg); }
}

/* hero service cards */
.hero-services { position: relative; z-index: 2; margin-top: 56px; padding-bottom: 80px; }
.hero-services .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hs-item {
  text-align: center;
  padding: 30px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.hs-item:hover { transform: translateY(-10px) rotate(-1deg); border-color: var(--coral-soft); box-shadow: var(--shadow-lg); }
.hs-item .ic {
  width: 62px; height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.hs-item:nth-child(1) .ic { background: #ffe3de; }
.hs-item:nth-child(2) .ic { background: var(--teal-soft); }
.hs-item:nth-child(3) .ic { background: #fff0c2; }
.hs-item:nth-child(4) .ic { background: var(--lav); }
.hs-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.hs-item h3 b { color: var(--coral); }
.hs-item p { color: var(--gray); font-size: .85rem; line-height: 1.6; margin-bottom: 14px; }
.hs-item .rm {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad-teal);
  padding: 8px 22px;
  border-radius: 40px;
  box-shadow: 0 8px 18px rgba(23,184,166,.3);
  transition: transform .25s;
}
.hs-item:hover .rm { transform: scale(1.08); background: var(--grad-coral); box-shadow: 0 8px 18px rgba(255,111,97,.35); }

/* ---------- Wave divider ---------- */
.wave { display: block; width: 100%; height: 70px; margin-bottom: -1px; }

/* ---------- Marquee ---------- */
.marquee-band {
  background: var(--teal);
  padding: 22px 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: var(--shadow);
}
.marquee { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-band:hover .marquee { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  padding: 0 30px;
  position: relative;
  white-space: nowrap;
}
.marquee span::after { content: "✿"; position: absolute; right: -9px; color: var(--sun); font-size: .85rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 56px; }
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px 34px;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: var(--sand);
  transition: transform .4s ease, background .4s ease;
}
.card:nth-child(2)::before { background: var(--teal-soft); }
.card:nth-child(3)::before { background: #fff0c2; }
.card:hover { transform: translateY(-12px) rotate(-.5deg); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scale(1.5); }
.card > * { position: relative; z-index: 1; }
.card .icon {
  width: 84px; height: 84px;
  border-radius: 30px 12px 30px 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 2.1rem;
  background: var(--grad-coral);
  box-shadow: 0 12px 26px rgba(255,111,97,.3);
  transition: transform .35s ease;
}
.card:nth-child(2) .icon { background: var(--grad-teal); box-shadow: 0 12px 26px rgba(23,184,166,.3); }
.card:nth-child(3) .icon { background: var(--grad-sunset); box-shadow: 0 12px 26px rgba(255,209,102,.4); }
.card:hover .icon { transform: rotate(-8deg) scale(1.08); }
.card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card p { color: var(--gray); font-size: .95rem; margin-bottom: 20px; }
.card .more {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--teal-deep);
  border-bottom: 2px dashed var(--teal);
  transition: color .25s;
}
.card .more::after { content: " →"; }
.card:hover .more { color: var(--coral); border-color: var(--coral); }

/* ---------- Photo shapes ---------- */
.blob-photo {
  position: relative;
  min-height: 380px;
  border-radius: 58% 42% 45% 55% / 48% 55% 45% 52%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: blob 12s ease-in-out infinite;
}
.blob-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@keyframes blob {
  0%,100% { border-radius: 58% 42% 45% 55% / 48% 55% 45% 52%; }
  50% { border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%; }
}
.feat-visual {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform .4s ease;
  border: 6px solid #fff;
}
.feature-row:nth-child(even) .feat-visual { transform: rotate(1.5deg); }
.feat-visual:hover { transform: rotate(0) scale(1.02); }
.feat-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
ul.checks { margin-top: 24px; }
ul.checks li { padding: 9px 0 9px 42px; position: relative; color: #5a6b83; font-weight: 600; }
ul.checks li::before {
  content: "✓";
  position: absolute; left: 0; top: 9px;
  width: 28px; height: 28px;
  border-radius: 50% 50% 50% 8px;
  background: var(--grad-teal);
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(23,184,166,.3);
}

/* ---------- Feature rows ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 56px 0; }
.feature-row:nth-child(even) .feat-visual { order: 2; }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(140deg, var(--teal) 0%, #14a494 55%, var(--teal-deep) 100%);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.stats::before, .stats::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.stats::before { width: 340px; height: 340px; top: -140px; right: -80px; }
.stats::after { width: 240px; height: 240px; bottom: -110px; left: 6%; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 38px; text-align: center; position: relative; z-index: 1; }
.stat-ic { font-size: 2rem; margin-bottom: 8px; }
.stat-num { font-family: var(--font-head); font-size: clamp(2.4rem, 4.4vw, 3.4rem); font-weight: 800; color: #fff; line-height: 1.1; }
.stat-num .plus { color: var(--sun); }
.stat-label { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: .85; margin-top: 8px; font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad-coral);
  border-radius: 32px;
  padding: 66px 56px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 26px 60px rgba(255,111,97,.35);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "🌺";
  position: absolute;
  font-size: 9rem;
  right: -20px; top: -30px;
  opacity: .25;
  transform: rotate(15deg);
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); position: relative; z-index: 1; }
.cta-band p { opacity: .92; margin-top: 6px; position: relative; z-index: 1; font-weight: 600; }
.cta-band .btn { background: #fff; color: var(--coral); position: relative; z-index: 1; }
.cta-band .btn:hover { transform: translateY(-4px) scale(1.04); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: 190px 0 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--cream);
}
.page-hero .bg-photo { position: absolute; inset: 0; z-index: 0; }
.page-hero .bg-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .bg-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,250,243,.6) 0%, rgba(255,250,243,.8) 55%, var(--cream) 100%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 14px; }
.page-hero p { color: #5a6b83; max-width: 640px; margin: 0 auto; font-weight: 600; }
.breadcrumb { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); margin-top: 22px; }
.breadcrumb a { color: var(--teal-deep); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 56px; counter-reset: step; }
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .3s ease;
}
.step:hover { transform: translateY(-10px) rotate(-.6deg); }
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-head);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  background: var(--grad-coral);
  border-radius: 50% 50% 50% 12px;
  box-shadow: 0 10px 22px rgba(255,111,97,.3);
  margin-bottom: 16px;
}
.step:nth-child(2)::before { background: var(--grad-teal); box-shadow: 0 10px 22px rgba(23,184,166,.3); }
.step:nth-child(3)::before { background: var(--grad-sunset); box-shadow: 0 10px 22px rgba(255,209,102,.4); }
.step:nth-child(4)::before { background: linear-gradient(120deg, #b79cf5, var(--lav)); box-shadow: 0 10px 22px rgba(183,156,245,.4); }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: .9rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info .info-item { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }
.contact-info .info-item .ico {
  width: 56px; height: 56px;
  border-radius: 50% 50% 50% 12px;
  background: var(--grad-teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  box-shadow: 0 10px 22px rgba(23,184,166,.3);
}
.contact-info .info-item:nth-child(odd) .ico { background: var(--grad-coral); box-shadow: 0 10px 22px rgba(255,111,97,.3); }
.contact-info h4 { margin-bottom: 2px; }
.contact-info p { color: var(--gray); font-size: .95rem; }
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 46px;
  position: relative;
}
.contact-form::before {
  content: "";
  position: absolute;
  inset: auto 0 100% 0;
  height: 10px;
  border-radius: 10px 10px 0 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--sand);
  border-radius: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 18px;
  transition: border .25s, box-shadow .25s;
  background: var(--cream);
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(23,184,166,.15);
  background: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 90px 0 0;
  position: relative;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.site-footer h5 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
}
.site-footer h5::after { content: ""; display: block; width: 36px; height: 3px; border-radius: 3px; background: var(--grad-coral); margin-top: 8px; }
.site-footer .logo { color: #fff; margin-bottom: 14px; }
.site-footer p, .site-footer a { font-size: .92rem; color: rgba(255,255,255,.68); }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { transition: color .2s, padding-left .2s; }
.site-footer ul a:hover { color: var(--sun); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .85s ease, transform .85s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity .85s ease, transform .85s ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity .85s ease, transform .85s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

.fade-up { animation: fadeUp 1s ease both; }
.fade-up.fd1 { animation-delay: .15s; }
.fade-up.fd2 { animation-delay: .3s; }
.fade-up.fd3 { animation-delay: .45s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(44px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
/* ============================================================
   TROPICAL REMIX v2 — distinct identity overrides
   ============================================================ */

/* ---------- Floating capsule navbar ---------- */
.site-header { background: transparent !important; box-shadow: none !important; padding-top: 16px; }
.site-header .nav-wrap {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border: 2px solid #ffe9d6;
  border-radius: 60px;
  padding: 10px 14px 10px 26px;
  box-shadow: 0 14px 34px rgba(47,65,86,.14);
  transition: padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled .nav-wrap { padding: 6px 12px 6px 24px; box-shadow: 0 10px 26px rgba(47,65,86,.2); }

/* ---------- Jelly buttons ---------- */
.btn:hover { animation: jelly .55s ease; }
@keyframes jelly {
  0% { transform: translateY(-3px) scale(1,1); }
  30% { transform: translateY(-4px) scale(1.1,.9); }
  50% { transform: translateY(-4px) scale(.94,1.06); }
  70% { transform: translateY(-4px) scale(1.03,.97); }
  100% { transform: translateY(-3px) scale(1,1); }
}

/* ---------- Hero: cream wave over the photo bottom ---------- */
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 90px;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 90' preserveAspectRatio='none'%3E%3Cpath d='M0,50 C150,90 300,10 450,45 C600,80 750,15 900,45 C1050,75 1150,35 1200,50 L1200,90 L0,90 Z' fill='%23fffaf3'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  pointer-events: none;
}

/* ---------- Postcard hero service cards ---------- */
.hs-item { border: 2px dashed transparent; position: relative; }
.hs-item:nth-child(1) { transform: rotate(-1.6deg); }
.hs-item:nth-child(2) { transform: rotate(1.2deg) translateY(10px); }
.hs-item:nth-child(3) { transform: rotate(-1deg); }
.hs-item:nth-child(4) { transform: rotate(1.8deg) translateY(8px); }
.hs-item::after {
  content: "🌞";
  position: absolute;
  top: 10px; right: 12px;
  font-size: 1rem;
  padding: 4px 6px;
  border: 2px dashed var(--coral-soft);
  border-radius: 6px;
  opacity: .6;
  transform: rotate(8deg);
}
.hs-item:hover { transform: rotate(0) translateY(-10px); border-color: var(--teal-soft); }

/* ---------- Sunset marquee ---------- */
.marquee-band { background: var(--grad-sunset); }
.marquee span { color: #fff; text-shadow: 0 2px 8px rgba(255,111,97,.4); }
.marquee span::after { content: "🌴"; color: inherit; font-size: .95rem; }

/* ---------- Squiggle underline on centered titles ---------- */
.center .section-title::after {
  content: "";
  display: block;
  width: 130px; height: 12px;
  margin: 14px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 12'%3E%3Cpath d='M2,6 Q12,0 22,6 T42,6 T62,6 T82,6 T102,6 T122,6' fill='none' stroke='%23ffd166' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ---------- Stats: beach balls instead of a band ---------- */
.stats { background: transparent; color: var(--ink); padding: 100px 0; }
.stats::before, .stats::after { content: none; }
.stats-grid { gap: 30px; }
.stats-grid > div {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  animation: floaty 8s ease-in-out infinite;
}
.stats-grid > div:nth-child(1) { background: radial-gradient(circle at 30% 25%, #fff 0%, #ffe3de 45%, #ffcdc4 100%); transform: rotate(-3deg); }
.stats-grid > div:nth-child(2) { background: radial-gradient(circle at 30% 25%, #fff 0%, var(--teal-soft) 45%, #8ee6da 100%); animation-delay: -2s; transform: rotate(2deg); }
.stats-grid > div:nth-child(3) { background: radial-gradient(circle at 30% 25%, #fff 0%, #fff0c2 45%, #ffe08f 100%); animation-delay: -4s; transform: rotate(-2deg); }
.stats-grid > div:nth-child(4) { background: radial-gradient(circle at 30% 25%, #fff 0%, var(--lav) 45%, #c3a8f8 100%); animation-delay: -6s; transform: rotate(3deg); }
.stats .stat-num { color: var(--ink); font-size: clamp(1.9rem, 3vw, 2.6rem); }
.stats .stat-num .plus { color: var(--coral); }
.stats .stat-label { color: #5a6b83; opacity: 1; font-size: .68rem; letter-spacing: .16em; margin-top: 4px; }
.stats .stat-ic { font-size: 1.7rem; margin-bottom: 4px; }

/* ---------- Sand sections get a wavy top ---------- */
.section.sand { margin-top: 40px; }
.section.sand::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -39px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C150,0 300,40 450,15 C600,-5 750,35 900,15 C1050,0 1150,30 1200,20 L1200,40 Z' fill='%23fff0de'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* ---------- SUNSET FOOTER ---------- */
.site-footer {
  background: linear-gradient(180deg, #ffd9a0 0%, #ffab7e 30%, #ff7e6b 62%, #c06a97 100%);
  color: rgba(255,255,255,.95);
  padding: 150px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before { /* cream wave from previous section */
  content: "";
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 70' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1200,0 L1200,25 C1050,65 900,5 750,35 C600,65 450,10 300,40 C150,68 50,30 0,45 Z' fill='%23fffaf3'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  z-index: 2;
}
.site-footer::after { /* setting sun */
  content: "";
  position: absolute;
  top: 64px; right: 9%;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff6c9, var(--sun) 70%);
  box-shadow: 0 0 70px 18px rgba(255, 209, 102, .55);
  animation: floaty 9s ease-in-out infinite;
}
.footer-grid { position: relative; z-index: 3; }
.footer-grid::after { /* palm silhouette */
  content: "🌴";
  position: absolute;
  bottom: -40px; left: -30px;
  font-size: 9rem;
  opacity: .18;
  transform: rotate(-8deg);
  pointer-events: none;
}
.site-footer h5 { color: #fff; }
.site-footer h5::after { background: var(--sun); }
.site-footer p, .site-footer a { color: rgba(255,255,255,.88); }
.site-footer ul a:hover { color: #fff7d6; }
.site-footer .logo { color: #fff; }
.site-footer .logo span { color: #ffe08f; }
.footer-bottom {
  position: relative;
  z-index: 3;
  border-top: none;
  background: rgba(60, 20, 60, .22);
  color: rgba(255,255,255,.85);
}

@media (max-width: 1024px) {
  .hero-services .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .split, .feature-row, .contact-grid { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feat-visual { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    flex-direction: column;
    background: var(--cream);
    width: min(320px, 82vw);
    height: 100vh;
    padding: 90px 32px 40px;
    gap: 22px;
    align-items: flex-start;
    box-shadow: -10px 0 50px rgba(47,65,86,.2);
    transition: right .35s ease;
    z-index: 105;
  }
  .nav-links.open { right: 0; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; background: transparent; padding: 6px 0 0 14px; }
  .hamburger { display: block; }
  .section { padding: 64px 0; }
  .hero-services .grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 32px; }
  .floaty { display: none; }
}
