:root {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: #f8f3ed;
  --sea: #050b12;
  --sand: #f1d6ba;
  --bronze: #c57d3a;
  --sunset: #f26c4f;
  --horizon: #e0a878;
  --accent: #f7c490;
  --muted: #b0a79d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--sea);
  color: var(--text, #f8f3ed);
  min-height: 100vh;
}

a {
  color: inherit;
}

.hero {
  padding: 3rem clamp(1.5rem, 3vw, 3.5rem) 4rem;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  position: relative;
  background-image: linear-gradient(180deg, rgba(5, 11, 18, 0.9), rgba(5, 11, 18, 0.7)),
    url('assets/images/morning-view.jpeg');
  background-size: cover;
  background-position: center;
}

.nav {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  margin: 0 auto 1.25rem;
  width: min(1100px, 100%);
  border-radius: 999px;
  background: rgba(5, 11, 18, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 45px rgba(3, 5, 7, 0.4);
  backdrop-filter: blur(18px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.nav:hover {
  background: rgba(8, 14, 25, 0.8);
  box-shadow: 0 25px 50px rgba(3, 5, 7, 0.5);
}

.logo {
  font-family: "Fraunces", serif;
  letter-spacing: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.4rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

 .hero-content h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin: 0.5rem 0;
}

.hero-sub {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-figure {
  position: absolute;
  bottom: 2rem;
  right: clamp(1rem, 5vw, 3rem);
  border-radius: 20px;
  padding: 1.5rem;
  background: rgba(5, 11, 18, 0.85);
  border: 1px dashed rgba(255, 255, 255, 0.5);
  max-width: 250px;
  text-align: right;
  font-size: 0.85rem;
  letter-spacing: 0.2rem;
}

.hero-figure span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
}

.btn {
  border-radius: 999px;
  padding: 0.95rem 2rem;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: linear-gradient(135deg, var(--sunset), var(--horizon));
  box-shadow: 0 12px 35px rgba(242, 108, 79, 0.45);
  color: #fff;
}

.btn.secondary {
  color: var(--sand);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn:hover {
  transform: translateY(-4px) scale(1.01);
}

.btn.primary:hover {
  box-shadow: 0 18px 45px rgba(242, 108, 79, 0.55);
}

.btn.secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

main {
  display: flex;
  justify-content: center;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.4rem 0;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.panel {
  background: rgba(8, 13, 23, 0.9);
  border-radius: 32px;
  padding: clamp(2.2rem, 4vw, 3.8rem);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(3, 5, 7, 0.6);
}

.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(229, 173, 128, 0.18), transparent 55%);
  pointer-events: none;
}

.panel > * {
  position: relative;
  z-index: 1;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.about-layout article {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.menu-grid article {
  padding: 1.6rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.menu-grid h3 {
  margin-top: 0;
  letter-spacing: 0.1rem;
}

.menu-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.menu-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 184, 134, 0.7);
  box-shadow: 0 14px 40px rgba(3, 5, 7, 0.3);
}

.experiences {
  padding-bottom: 2rem;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(1.75rem, 2.4vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.experience-card {
  min-height: 300px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  padding: 2.2rem 2.3rem 2.5rem;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  box-shadow: 0 30px 60px rgba(3, 5, 7, 0.35);
  background-size: 103%;
  background-position: center;
  text-transform: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-size 0.4s ease, filter 0.4s ease;
}

.experience-card h3 {
  margin: 0;
  letter-spacing: 0.2rem;
}

.experience-card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  line-height: 1.4;
}

.experience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 10, 0.75), rgba(4, 7, 10, 0.25));
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.experiences-grid article div,
.experience-card div {
  position: relative;
  z-index: 1;
}

.experiences-grid article:hover,
.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 33px 70px rgba(3, 5, 7, 0.45);
  background-size: 105%;
}

.experience-card:hover::after {
  opacity: 0.95;
}

.sunset {
  background: linear-gradient(135deg, rgba(242, 108, 79, 0.95), rgba(196, 125, 58, 0.95));
  color: #2b0e09;
}

.sunset-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.sunset-stats div {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  min-width: 150px;
  text-align: center;
}

.sunset-stats strong {
  display: block;
  font-size: 1.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-card {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  font-weight: 600;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 35px rgba(3, 5, 7, 0.35);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 30, 0.45), rgba(5, 11, 18, 0.8));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card .gallery-label {
  position: relative;
  z-index: 1;
  text-align: left;
}

.gallery-card .gallery-label small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.gallery-card .gallery-label p {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.2rem;
}

.reservation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.reservation-note {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.1rem;
  margin: 0 0 1rem;
}

.reservation-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 28px;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(3, 5, 7, 0.35);
}

.reservation-aside {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(3, 5, 7, 0.35);
}

.reservation-aside p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.reservation-contact {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.reservation-contact a {
  color: #fff;
  text-decoration: none;
  margin-right: 0.25rem;
}

.reservation-contact a:hover {
  text-decoration: underline;
}

.whatsapp-btn {
  justify-content: center;
  text-align: center;
  width: 100%;
}

.whatsapp-btn.big {
  font-size: 0.9rem;
  padding: 1rem 1.4rem;
  letter-spacing: 0.25rem;
}

.reservation-form label {
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reservation-form input,
.reservation-form textarea {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.9rem 1rem;
  color: #fff;
  font-size: 1rem;
}

.reservation-highlight {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  line-height: 1.6;
}

.reservation-highlight a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.form-message {
  min-height: 1.2rem;
  color: var(--accent);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.location-grid article {
  padding: 1.4rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-grid h3 {
  margin-top: 0;
}

.footer {
  padding: 2.4rem clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: #04080f;
  position: relative;
  z-index: 1;
}

.instagram-preview {
  padding: 3rem clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.instagram-cta-block {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  min-height: 200px;
  display: flex;
  align-items: center;
  box-shadow: 0 30px 60px rgba(3, 5, 7, 0.45);
}

.instagram-cta-block div {
  max-width: 520px;
}

.instagram-cta-block p {
  margin: 0 0 0.9rem;
  letter-spacing: 0.18rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: rgba(248, 243, 237, 0.9);
}


.footer-hours {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.instagram-cta {
  margin-top: 1rem;
  border-color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  padding: 0.8rem 1.2rem;
}

.location-map {
  margin-top: 1.2rem;
}

.location-map a {
  color: var(--accent);
  border-bottom: 1px solid rgba(247, 180, 144, 0.4);
  padding-bottom: 0.1rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: var(--accent);
}

.float-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sunset), var(--horizon));
  color: #fff;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 15px 40px rgba(3, 5, 7, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 50;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.float-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(3, 5, 7, 0.45);
}

@media (max-width: 700px) {
  .instagram-cta-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .float-whatsapp {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .panel {
    padding: 2rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-cta {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav {
    top: 0.6rem;
    border-radius: 24px;
    padding: 0.7rem 1rem;
  }

  .hero-figure {
    position: relative;
    bottom: auto;
    right: auto;
    border-radius: 20px;
    margin-top: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.4);
  }

  .gallery-card {
    min-height: 180px;
  }

  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .reservation-aside {
    order: -1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

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