:root {
  --teal: #0d9488;
  --teal-dark: #134e4a;
  --emerald: #10b981;
  --amber: #f59e0b;
  --slate: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--slate);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  padding: 11px 0;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid #ccfbf1;
  box-shadow: 0 8px 30px rgba(15,23,42,.06);
  backdrop-filter: blur(14px);
}
.header-inner,
.logo,
.desktop-nav,
.desktop-actions,
.mobile-actions {
  display: flex;
  align-items: center;
}
.header-inner { justify-content: space-between; gap: 20px; }
.logo { gap: 12px; }
.logo img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(13,148,136,.14);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: "Fredoka", sans-serif;
  font-size: 25px;
  letter-spacing: 0;
}
.logo-text strong span { color: var(--teal); font-weight: 500; }
.logo-text small {
  margin-top: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--emerald);
  font-weight: 700;
}
.desktop-nav { gap: 28px; font-weight: 600; font-size: 14px; color: #475569; }
.desktop-nav a { position: relative; padding: 4px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.desktop-actions { gap: 10px; }
.mobile-actions { display: none; gap: 8px; }

.primary-button,
.secondary-button,
.dark-button,
.icon-button,
.menu-button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.primary-button {
  background: var(--teal);
  color: white;
  padding: 12px 22px;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(13,148,136,.18);
}
.primary-button:hover { background: #0f766e; transform: translateY(-1px); }
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: white;
  color: #1e293b;
  padding: 12px 20px;
  font-weight: 800;
}
.secondary-button:hover { border-color: #99f6e4; color: var(--teal); }
.dark-button {
  background: var(--slate);
  color: white;
  padding: 12px 18px;
  font-weight: 800;
}
.icon-button,
.menu-button {
  background: #f8fafc;
  color: #475569;
  padding: 10px 12px;
  font-weight: 800;
}
.whatsapp { color: #047857; background: #ecfdf5; }
.wide { width: 100%; }

.section { position: relative; padding: 88px 0; }
.hero {
  padding-top: 136px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, rgba(240,253,250,.8), #fff 58%, rgba(248,250,252,.85));
  overflow: hidden;
}
.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}
.glow-amber { width: 360px; height: 360px; right: -110px; top: 80px; background: rgba(254,243,199,.72); }
.glow-teal { width: 320px; height: 320px; left: -100px; bottom: 30px; background: rgba(204,251,241,.65); }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1,
.section-heading h2,
.section-copy h2 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
}
.hero-copy h1 { font-size: clamp(42px, 6vw, 68px); }
.hero-copy h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-copy p,
.section-heading p,
.section-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid #99f6e4;
  border-radius: 999px;
  background: #f0fdfa;
  color: #115e59;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--emerald);
  animation: pulse 1.6s ease-in-out infinite;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.feature-grid span {
  padding: 13px 14px;
  border: 1px solid #ccfbf1;
  border-radius: 16px;
  background: rgba(255,255,255,.8);
  font-weight: 700;
  color: #334155;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { position: relative; display: grid; place-items: center; }
.hero-card {
  position: relative;
  width: min(420px, 100%);
  border: 4px solid white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15,23,42,.18);
}
.hero-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  transition: transform .7s ease;
}
.hero-card:hover img { transform: scale(1.05); }
.photo-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 35px rgba(15,23,42,.12);
}
.photo-caption span { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }
.rating-chip {
  position: absolute;
  right: 0;
  top: 28px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #ccfbf1;
  border-radius: 18px;
  color: #115e59;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}
.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 82px;
  fill: #fff;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 62px;
  align-items: center;
}
.about { background: #fff; }
.stacked-photos {
  position: relative;
  min-height: 480px;
}
.main-photo {
  position: absolute;
  inset: 0 auto auto 0;
  width: 86%;
  height: 86%;
  overflow: hidden;
  border-radius: 32px;
  border: 4px solid white;
  box-shadow: 0 24px 60px rgba(15,23,42,.15);
}
.small-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 52%;
  overflow: hidden;
  border-radius: 28px;
  border: 4px solid white;
  box-shadow: 0 24px 60px rgba(15,23,42,.18);
}
.main-photo img,
.small-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.main-photo:hover img,
.small-photo:hover img { transform: scale(1.05); }
.section-copy h2,
.section-heading h2 { font-size: clamp(34px, 5vw, 54px); }
.values { display: grid; gap: 14px; margin-top: 28px; }
.values article,
.info-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 45px rgba(15,23,42,.05);
}
.values h3,
.cards h3,
.gallery-item h3,
.info-card h3 {
  margin: 0 0 8px;
  font-family: "Fredoka", sans-serif;
  font-size: 22px;
}
.values p,
.cards p,
.gallery-item p,
.info-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.services,
.location { background: var(--soft); }
.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.cards {
  display: grid;
  gap: 22px;
}
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 18px 50px rgba(15,23,42,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cards article:hover {
  transform: translateY(-5px);
  border-color: #99f6e4;
  box-shadow: 0 26px 70px rgba(13,148,136,.12);
}
.cards article span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 900;
  font-size: 12px;
}

.gallery { background: white; }
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.filter {
  border: 1px solid var(--line);
  background: white;
  color: #475569;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 800;
  cursor: pointer;
}
.filter.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.gallery-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 18px 50px rgba(15,23,42,.06);
}
.gallery-item.hide { display: none; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .7s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item div { padding: 20px; }
.center { display: flex; justify-content: center; margin-top: 34px; }

.reviews {
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.stars {
  color: var(--amber);
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.reviews footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}
.reviews footer img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}
.reviews footer span { display: flex; flex-direction: column; }
.reviews footer small { color: var(--muted); margin-top: 3px; }

.location .split { grid-template-columns: .85fr 1.15fr; }
.section-copy .info-card { margin-top: 18px; }
.map-card {
  height: 430px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 24px 60px rgba(15,23,42,.1);
}
.map-card iframe { border-radius: 20px; }

.footer {
  padding: 56px 0 24px;
  background: #0f172a;
  color: #cbd5e1;
}
.footer .logo-text strong { color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: 42px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(148,163,184,.2);
}
.footer p { color: #94a3b8; line-height: 1.7; }
.footer nav {
  display: grid;
  gap: 10px;
}
.footer nav a:hover { color: #5eead4; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: #94a3b8;
}
.footer-bottom button {
  border: 0;
  border-radius: 12px;
  background: #1e293b;
  color: white;
  padding: 10px 14px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(15,23,42,.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-panel {
  margin-left: auto;
  width: min(360px, 84vw);
  height: 100%;
  padding: 24px;
  background: white;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}
.mobile-menu nav {
  display: grid;
  gap: 18px;
  font-size: 19px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes wave-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.86); }
}
.animate-wave-bounce { animation: wave-bounce 4s ease-in-out infinite; }
.float-in { animation: float-in .8s cubic-bezier(.2,.8,.2,1) both; }
@keyframes float-in {
  from { opacity: 0; transform: scale(.94) translateY(18px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 960px) {
  .desktop-nav,
  .desktop-actions { display: none; }
  .mobile-actions { display: flex; }
  .hero-grid,
  .split,
  .location .split {
    grid-template-columns: 1fr;
  }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow,
  .hero-buttons { margin-left: auto; margin-right: auto; justify-content: center; }
  .cards.four,
  .cards.three,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stacked-photos { min-height: 420px; }
}

@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 112px; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .primary-button,
  .secondary-button { width: 100%; }
  .rating-chip { position: static; margin-top: 18px; }
  .footer-bottom { flex-direction: column; }
  .logo-text strong { font-size: 21px; }
}
