:root {
  --bg-main: #f7f5f0;
  --bg-soft: #ffffff;
  --ink: #0b1f2a;
  --muted: #4b5a68;
  --line: rgba(11, 31, 42, 0.12);
  --brand: #0c8f7a;
  --brand-dark: #075a4d;
  --accent: #f3c86a;
  --whatsapp: #22c55e;
  --whatsapp-dark: #168f43;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(11, 31, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgba(243, 200, 106, 0.18) 0, rgba(243, 200, 106, 0) 45%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-main) 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-dark);
}

a:hover {
  color: var(--brand);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #111;
  padding: 0.65rem 1rem;
  border-radius: 0 0 10px 10px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(11, 31, 42, 0.08);
}

.bar-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.nav {
  display: flex;
  order: 3;
  width: 100%;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--brand-dark);
  background: rgba(12, 143, 122, 0.1);
  border-color: rgba(12, 143, 122, 0.2);
}

.nav a:focus-visible {
  outline: 2px solid rgba(12, 143, 122, 0.4);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  min-height: 48px;
  padding: 0.7rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(12, 143, 122, 0.3);
  outline-offset: 2px;
}

.btn-mini {
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--whatsapp) 0%, #34d399 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--whatsapp-dark) 0%, #16a34a 100%);
}

.btn-secondary {
  background: #fff;
  border-color: rgba(12, 143, 122, 0.35);
  color: var(--brand-dark);
  box-shadow: 0 10px 22px rgba(11, 31, 42, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(12, 143, 122, 0.6);
  box-shadow: 0 12px 26px rgba(11, 31, 42, 0.12);
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero-copy h1 {
  margin: 0.2rem 0 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.1;
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--brand-dark);
}

.tagline {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.lead {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.3rem 0 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  background: rgba(12, 143, 122, 0.12);
  color: var(--brand-dark);
  font-weight: 600;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.panel-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.panel-card p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.panel-card.highlight {
  background: linear-gradient(135deg, rgba(12, 143, 122, 0.08) 0%, rgba(243, 200, 106, 0.22) 100%);
  border-color: rgba(12, 143, 122, 0.2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(12, 143, 122, 0.4);
}

.info-list {
  margin: 0;
}

.info-list dt {
  font-weight: 600;
  margin-top: 0.7rem;
}

.info-list dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.section {
  padding: 3rem 0;
}

.section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}

.section-head p {
  margin: 0.7rem 0 0;
  max-width: 65ch;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.card,
.contact-card,
.booking-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 14px 30px rgba(11, 31, 42, 0.08);
}

.card h3,
.steps h3,
.contact-card h3,
.booking-form h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.steps {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  counter-reset: step;
}

.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem 1.1rem 3.2rem;
  position: relative;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  font-weight: 600;
}

.steps p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.contact {
  background: linear-gradient(180deg, rgba(12, 143, 122, 0.06) 0%, rgba(255, 255, 255, 0) 80%);
  border-top: 1px solid rgba(11, 31, 42, 0.06);
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.contact-card p {
  margin: 0.6rem 0 1rem;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-list {
  margin: 1rem 0 0;
}

.contact-list dt {
  margin-top: 0.65rem;
  font-weight: 600;
}

.contact-list dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.booking-form p {
  margin: 0.5rem 0 0.9rem;
  color: var(--muted);
}

.booking-form label {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 0.3rem;
  border: 1px solid rgba(11, 31, 42, 0.16);
  border-radius: 14px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(12, 143, 122, 0.2);
  border-color: var(--brand);
}

.form-btn {
  width: 100%;
  margin-top: 1rem;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.form-error {
  min-height: 1.4rem;
  color: #a11515;
  font-weight: 600;
}

.trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.map-wrap {
  margin-top: 1.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 42, 0.1);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
}

.footer {
  background: #0b1f2a;
  color: #d8e6f8;
  padding: 1.8rem 0 5.6rem;
}

.footer a {
  color: #c9f2df;
}

.footer-wrap p {
  margin: 0.35rem 0;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  text-decoration: none;
  background: linear-gradient(135deg, var(--whatsapp) 0%, #34d399 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.35);
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, var(--whatsapp-dark) 0%, #16a34a 100%);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .grid.cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .nav {
    order: initial;
    width: auto;
  }

  .grid.cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
