:root {
  --ink: #201b16;
  --muted: #756b5f;
  --paper: #f6f1e8;
  --cream: #fffaf1;
  --clay: #8d6845;
  --earth: #6f4d34;
  --earth-dark: #3b281d;
  --earth-light: #b58a61;
  --moss: #4d6240;
  --moss-dark: #263a2a;
  --gold: #c3a66b;
  --gold-dark: #967036;
  --line: rgba(32, 27, 22, 0.14);
  --shadow: 0 24px 80px rgba(32, 27, 22, 0.18);
  --soft-shadow: 0 18px 52px rgba(58, 39, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf1 0%, #f4eadc 42%, #fffaf1 100%);
  font-family: Inter, 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;
}

.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, 56px);
  color: #fffaf1;
  background:
    linear-gradient(to bottom, rgba(22, 18, 14, 0.78), rgba(22, 18, 14, 0.18), rgba(22, 18, 14, 0));
  backdrop-filter: blur(10px);
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding-bottom: 8px;
  opacity: 0.9;
  transition: color 220ms ease, opacity 220ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.nav a:hover {
  color: var(--gold);
  opacity: 1;
}

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

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf1;
  padding: 150px clamp(20px, 6vw, 84px) 82px;
}

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

.hero-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.015);
  animation: heroBreath 12s ease-in-out infinite alternate;
}

.hero-image {
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(25, 19, 14, 0.92), rgba(63, 43, 30, 0.38) 48%, rgba(20, 25, 17, 0.62)),
    linear-gradient(180deg, rgba(17, 16, 12, 0.18), rgba(17, 16, 12, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  animation: revealUp 760ms ease both;
}

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

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  font-size: clamp(5rem, 18vw, 13.5rem);
}

.hero-title {
  font-size: clamp(4.4rem, 14vw, 11rem);
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

h2 {
  font-size: clamp(2.2rem, 5.3vw, 5.4rem);
}

.hero-copy {
  width: min(560px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 241, 0.38);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button.primary {
  color: #fffaf1;
  background: linear-gradient(135deg, var(--earth), var(--earth-dark));
  border-color: rgba(181, 138, 97, 0.64);
  box-shadow: 0 16px 42px rgba(59, 40, 29, 0.3);
}

.button.primary:hover {
  transform: translateY(-3px);
  color: #fffaf1;
  background: linear-gradient(135deg, #8a6243, var(--earth-dark));
  border-color: rgba(255, 250, 241, 0.42);
  box-shadow: 0 22px 58px rgba(89, 58, 37, 0.42), 0 0 0 1px rgba(195, 166, 107, 0.3);
}

.button.secondary,
.button.outline {
  color: #fffaf1;
  background: rgba(255, 250, 241, 0.08);
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  transform: translateY(-3px);
  color: var(--gold);
  border-color: rgba(195, 166, 107, 0.66);
  background: rgba(255, 250, 241, 0.14);
}

.button.outline {
  color: var(--ink);
  border-color: var(--line);
}

.section {
  padding: clamp(72px, 10vw, 136px) clamp(20px, 6vw, 84px);
}

.intro {
  position: relative;
  background:
    linear-gradient(180deg, var(--cream), #f6efe3);
}

.intro::before {
  content: "";
  position: absolute;
  top: clamp(32px, 5vw, 70px);
  left: clamp(20px, 6vw, 84px);
  width: min(148px, 24vw);
  height: 1px;
  background: linear-gradient(90deg, var(--earth), rgba(195, 166, 107, 0));
}

.events::before {
  content: "";
  display: block;
  width: min(148px, 24vw);
  height: 1px;
  margin-bottom: clamp(28px, 5vw, 58px);
  background: linear-gradient(90deg, var(--earth), rgba(195, 166, 107, 0));
}

.section-copy {
  max-width: 850px;
}

.intro-heading {
  max-width: 1080px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.intro-heading h2 {
  max-width: 980px;
  font-size: clamp(3.1rem, 8vw, 8.1rem);
}

.intro-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: stretch;
}

.intro-media {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 22px 64px rgba(58, 39, 28, 0.18);
}

.intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 241, 0.34);
  border-radius: inherit;
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 650ms ease, filter 650ms ease;
}

.intro-media:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.05);
}

.intro-text {
  position: relative;
  display: grid;
  gap: 20px;
  align-content: center;
  min-height: 430px;
  padding: clamp(26px, 4vw, 44px);
  color: var(--muted);
  border: 1px solid rgba(141, 104, 69, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.88), rgba(244, 234, 220, 0.7)),
    radial-gradient(circle at 84% 18%, rgba(195, 166, 107, 0.2), transparent 34%);
  box-shadow: var(--soft-shadow);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  overflow: hidden;
}

.intro-text::before {
  content: none;
}

.intro-text::after {
  content: "";
  position: absolute;
  left: clamp(26px, 4vw, 44px);
  right: clamp(26px, 4vw, 44px);
  top: clamp(22px, 3vw, 34px);
  height: 1px;
  background: linear-gradient(90deg, rgba(141, 104, 69, 0.46), rgba(195, 166, 107, 0));
}

.intro-text p {
  position: relative;
  z-index: 1;
}

.intro-highlights {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 12px;
}

.intro-highlights span {
  padding: 0 0 8px;
  color: var(--earth-dark);
  border-bottom: 1px solid rgba(141, 104, 69, 0.26);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease, border-color 220ms ease, text-shadow 220ms ease;
}

.intro-highlights span:hover {
  color: var(--gold-dark);
  border-color: rgba(195, 166, 107, 0.6);
  text-shadow: 0 0 16px rgba(195, 166, 107, 0.24);
}

.intro-text p,
.cuisine-card p,
.wellness-band p,
.reserve-copy p,
.footer p {
  margin: 0;
}

.mood-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
  padding: clamp(14px, 2vw, 24px);
  background:
    linear-gradient(135deg, #1f2c20, #3b281d 62%, #211914);
}

.feature {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.08);
}

.feature.tall {
  min-height: 560px;
}

.feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease, filter 650ms ease;
}

.feature:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.feature figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  color: #fffaf1;
  background: rgba(31, 27, 21, 0.42);
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 6px;
  backdrop-filter: blur(16px);
  font-weight: 700;
  transform: translateY(8px);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.feature:hover figcaption {
  transform: translateY(0);
  background: rgba(59, 40, 29, 0.62);
  border-color: rgba(195, 166, 107, 0.48);
}

.cuisine {
  background:
    linear-gradient(180deg, #f4eadc 0%, var(--paper) 100%);
}

.cuisine-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-top: 46px;
}

.cuisine-layout > img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: transform 650ms ease, filter 650ms ease;
}

.cuisine-layout > img:hover {
  transform: translateY(-8px) scale(1.012);
  filter: saturate(1.08) contrast(1.03);
}

.cuisine-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(141, 104, 69, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.94), rgba(246, 241, 232, 0.72));
  box-shadow: var(--soft-shadow);
}

.cuisine-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(141, 104, 69, 0.18), transparent 46%);
  opacity: 0;
  transition: opacity 350ms ease;
}

.cuisine-card:hover::before {
  opacity: 1;
}

.cuisine-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cuisine-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.cuisine-card li {
  position: relative;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  cursor: default;
  transition: color 260ms ease, text-shadow 260ms ease, border-color 260ms ease;
}

.cuisine-card li::after {
  content: none;
}

.cuisine-card li span {
  position: relative;
  display: inline-block;
}

.cuisine-card li span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.cuisine-card li:hover {
  color: var(--gold-dark);
  border-color: rgba(195, 166, 107, 0.48);
  text-shadow: 0 0 18px rgba(195, 166, 107, 0.34);
}

.cuisine-card li:hover span::after {
  transform: scaleX(1);
}

.wellness-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 34px;
  align-items: end;
  padding: clamp(68px, 9vw, 112px) clamp(20px, 6vw, 84px);
  color: #fffaf1;
  background:
    linear-gradient(130deg, rgba(38, 58, 42, 0.98), rgba(83, 60, 41, 0.88)),
    var(--moss);
}

.wellness-band::after {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 84px);
  right: clamp(20px, 6vw, 84px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 250, 241, 0), rgba(255, 250, 241, 0.42), rgba(255, 250, 241, 0));
}

.wellness-band p {
  color: rgba(255, 250, 241, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.events {
  background:
    linear-gradient(180deg, var(--cream), #f3e8d9);
}

.events-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 0.76fr;
  gap: 16px;
  margin-top: 46px;
  align-items: stretch;
}

.events-gallery img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(0.95);
  transition: transform 650ms ease, filter 650ms ease, box-shadow 650ms ease;
  box-shadow: 0 14px 34px rgba(58, 39, 28, 0.1);
}

.events-gallery img:hover {
  transform: translateY(-8px);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 24px 58px rgba(32, 27, 22, 0.18);
}

.reserve {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin: clamp(20px, 5vw, 72px);
  padding: clamp(34px, 6vw, 72px);
  color: #fffaf1;
  border-radius: 6px;
  background:
    linear-gradient(105deg, rgba(32, 27, 22, 0.9), rgba(84, 57, 38, 0.68) 58%, rgba(32, 27, 22, 0.36)),
    url("assets/images/evento-terraza.jpg") center / cover;
  box-shadow: 0 26px 78px rgba(58, 39, 28, 0.24);
}

.reserve::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: inherit;
}

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

.reserve h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5.2vw, 5.2rem);
  line-height: 0.98;
}

.reserve-copy p {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.84);
  font-size: 1.08rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 30;
  min-width: 154px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 8px 9px 8px 20px;
  color: var(--earth-dark);
  background: linear-gradient(135deg, #fffaf1, #eadcc8);
  border: 1px solid rgba(141, 104, 69, 0.36);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(58, 39, 28, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(58, 39, 28, 0.34), 0 0 0 1px rgba(195, 166, 107, 0.25);
}

.whatsapp-label {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.whatsapp-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fffaf1;
  background: linear-gradient(135deg, var(--earth), var(--earth-dark));
  border-radius: 50%;
}

.whatsapp-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 29;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 190px 14px max(24px, env(safe-area-inset-left));
  color: var(--ink);
  background: rgba(255, 250, 241, 0.96);
  border-top: 1px solid rgba(195, 166, 107, 0.5);
  box-shadow: 0 -16px 48px rgba(32, 27, 22, 0.16);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 2px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.cookie-accept {
  min-height: 42px;
  padding: 0 18px;
  color: #fffaf1;
  background: var(--earth-dark);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-accept:hover {
  background: var(--earth);
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes heroBreath {
  from {
    transform: scale(1.015);
  }

  to {
    transform: scale(1.055);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .intro,
  .cuisine-layout,
  .wellness-band,
  .reserve {
    grid-template-columns: 1fr;
  }

  .intro-showcase {
    grid-template-columns: 1fr;
  }

  .intro .section-copy,
  .intro-text {
    min-height: auto;
  }

  .intro-media {
    width: min(520px, 100%);
  }

  .intro-media img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .mood-grid,
  .events-gallery {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature.tall,
  .events-gallery img {
    min-height: auto;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .reserve-actions {
    margin-top: 4px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 58px;
    height: 58px;
  }

  .hero {
    padding-top: 126px;
    padding-bottom: 42px;
  }

  .hero-title {
    font-size: clamp(3.55rem, 18vw, 5rem);
  }

  .hero-actions,
  .reserve-actions,
  .button {
    width: 100%;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .reserve {
    margin: 20px;
  }

  .whatsapp-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    min-width: 58px;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .whatsapp-icon {
    width: 44px;
    height: 44px;
  }

  .whatsapp-icon svg {
    width: 28px;
    height: 28px;
  }

  .cookie-banner {
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 84px 12px 16px;
    gap: 12px;
  }

  .cookie-banner strong {
    font-size: 0.98rem;
  }

  .cookie-banner p {
    font-size: 0.78rem;
  }

  .cookie-accept {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

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