:root {
  --ink: #142422;
  --muted: #61706c;
  --surface: #fffaf0;
  --surface-strong: #f7ecd8;
  --green: #123d35;
  --green-soft: #2f6b61;
  --teal: #7cc9b8;
  --sun: #f27a45;
  --coral: #f27a45;
  --line: rgba(20, 36, 34, 0.14);
  --shadow: 0 22px 60px rgba(18, 61, 53, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(247, 198, 107, 0.15), transparent 28rem),
    linear-gradient(180deg, #fffaf0, #f7ecd8 52%, #fffaf0);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: #fffaf0;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
  animation: header-drop 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 10px 30px rgba(18, 61, 53, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(18, 61, 53, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 1px;
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffaf0;
  background: var(--green);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 36, 32, 0.9), rgba(13, 36, 32, 0.56) 45%, rgba(13, 36, 32, 0.16)),
    linear-gradient(180deg, rgba(13, 36, 32, 0.18), rgba(13, 36, 32, 0.38));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 112px);
  padding-top: 80px;
}

.hero-content > * {
  animation: hero-rise 820ms cubic-bezier(0.18, 0.78, 0.26, 1) both;
}

.hero-content > :nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 190ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 280ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 370ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(4rem, 14vw, 9.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.hero-lead {
  margin-bottom: 16px;
  color: #fff2cf;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 61, 53, 0.18);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  padding: 0 22px;
  color: var(--green);
  background: var(--sun);
}

.button-secondary {
  padding: 0 22px;
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.72);
  background: rgba(255, 250, 240, 0.08);
}

.button-small {
  width: 100%;
  margin-top: auto;
  padding: 0 18px;
  color: var(--green);
  border-color: var(--green);
  background: transparent;
}

.section {
  scroll-margin-top: 92px;
  padding: clamp(72px, 10vw, 132px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.body-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.concept-section {
  background: var(--surface);
}

.equipment-section,
.delivery-section,
.reservation-section {
  background: var(--surface-strong);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.equipment-item,
.pack-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.equipment-item {
  min-height: 176px;
  padding: 22px;
}

.equipment-item:hover,
.pack-card:hover {
  border-color: rgba(18, 61, 53, 0.28);
  box-shadow: 0 18px 42px rgba(18, 61, 53, 0.13);
  transform: translateY(-5px);
}

.equipment-item span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--green);
  background: var(--teal);
  font-weight: 900;
}

.equipment-item p,
.pack-card p {
  color: var(--muted);
}

.experience-section {
  background: #fef7e9;
}

.experience-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-panel img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  transition: transform 700ms ease;
}

.experience-panel:hover img {
  transform: scale(1.05);
}

.check-list,
.pack-card ul {
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.check-list li,
.pack-card li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.pack-card li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  content: "✓";
  font-weight: 900;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pack-card {
  display: flex;
  min-height: 456px;
  flex-direction: column;
  padding: 26px;
}

.pack-card.featured {
  color: #fffaf0;
  background: var(--green);
  box-shadow: var(--shadow);
}

.pack-card.featured {
  position: relative;
  overflow: hidden;
}

.pack-card.featured::before {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 240px;
  height: 240px;
  content: "";
  background: radial-gradient(circle, rgba(247, 198, 107, 0.24), transparent 70%);
  transform: translate3d(0, 0, 0);
}

.pack-card.featured > * {
  position: relative;
}

.pack-card.featured p,
.pack-card.featured li {
  color: rgba(255, 250, 240, 0.8);
}

.pack-card.featured .button-small {
  color: var(--green);
  border-color: var(--sun);
  background: var(--sun);
}

.pack-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.pack-topline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--green);
  background: var(--sun);
  font-weight: 900;
}

.pack-topline p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pack-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 28px;
}

.service-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--coral);
  color: var(--green);
  background: rgba(247, 198, 107, 0.24);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
}

figure {
  margin: 0;
}

.gallery-carousel {
  position: relative;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 18px;
  cursor: grab;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.gallery-slide {
  width: 100%;
  flex: 0 0 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
  scroll-snap-align: start;
  box-shadow: 0 12px 34px rgba(18, 61, 53, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.gallery-slide:hover {
  box-shadow: 0 22px 54px rgba(18, 61, 53, 0.18);
  transform: translateY(-4px);
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 900ms ease;
}

.gallery-slide:hover img {
  transform: scale(1.045);
}

figcaption {
  padding: 14px 16px 16px;
  color: var(--green);
  font-weight: 900;
}

.gallery-control {
  position: absolute;
  top: 45%;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 50%;
  color: #fffaf0;
  background: rgba(18, 61, 53, 0.78);
  box-shadow: 0 16px 32px rgba(18, 61, 53, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.gallery-control:hover,
.gallery-control:focus-visible {
  background: var(--green);
  transform: translateY(-50%) scale(1.04);
}

.gallery-control span {
  margin-top: -3px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-control-prev {
  left: 12px;
}

.gallery-control-next {
  right: 12px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(18, 61, 53, 0.22);
  transition:
    background 180ms ease,
    transform 180ms ease,
    width 180ms ease;
}

.gallery-dots button.is-active {
  width: 28px;
  background: var(--green);
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.reservation-layout > div > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-actions {
  margin-top: 26px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.social-links {
  gap: 14px;
}

.social-link {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: 0 12px 26px rgba(18, 61, 53, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(18, 61, 53, 0.18);
  filter: saturate(1.08);
}

.social-link svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.social-whatsapp {
  background: #25d366;
}

.social-phone {
  background: var(--green);
}

.social-instagram {
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 22%, #fa7e1e 36%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.social-facebook {
  background: #1877f2;
}

.social-link[aria-disabled="true"] {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.44;
  transform: none;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-form {
  animation: form-glow 7s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 70ms;
}

.reveal-delay-2 {
  transition-delay: 140ms;
}

.reveal-delay-3 {
  transition-delay: 210ms;
}

.reveal-delay-4 {
  transition-delay: 280ms;
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(2.2%, -1.6%, 0);
  }
}

@keyframes form-glow {
  0%,
  100% {
    box-shadow: var(--shadow);
  }

  50% {
    box-shadow: 0 26px 72px rgba(18, 61, 53, 0.2);
  }
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fffefa;
  outline: none;
}

.booking-form textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--green-soft);
  box-shadow: 0 0 0 4px rgba(124, 201, 184, 0.28);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #a33a25;
}

.site-footer {
  padding: 34px 0;
  color: #fffaf0;
  background: var(--green);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  font-weight: 900;
}

@media (max-width: 980px) {
  .equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .packs-grid,
  .split,
  .split.reverse,
  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .pack-card {
    min-height: 0;
  }

  .experience-panel {
    order: -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 250, 240, 0.97);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-image {
    object-position: 54% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(13, 36, 32, 0.78), rgba(13, 36, 32, 0.52));
  }

  .hero-content {
    width: min(100% - 36px, 620px);
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(3.4rem, 20vw, 5.8rem);
  }

  .equipment-grid,
  .check-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions.social-links {
    align-items: center;
    flex-direction: row;
  }

  .button {
    width: 100%;
  }

  .gallery-track {
    gap: 12px;
  }

  .gallery-control {
    width: 40px;
    height: 40px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .gallery-track {
    scroll-behavior: auto;
  }

  .hero-image,
  .hero-content > *,
  .booking-form,
  .site-header {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
}
