@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --gold: #c9a84c;
  --gold-light: #e2c97a;
  --gold-dark: #9a7a30;
  --emerald: #1a3a2e;
  --emerald-mid: #244d3d;
  --emerald-light: #2e6350;
  --ivory: #f5f0e8;
  --ivory-dark: #ede6d6;
  --charcoal: #1c1c1c;
  --charcoal-mid: #2e2e2e;
  --white: #ffffff;
  --text-muted: #888;
  --border: rgba(201, 168, 76, 0.25);

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.18);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
}

a,
button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

p {
  line-height: 1.8;
  font-weight: 300;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem 0;
}
.gold-line.center {
  margin: 1.2rem auto;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.btn:hover::before {
  transform: scaleX(1);
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn:hover span {
  color: var(--charcoal);
}
.btn:hover {
  color: var(--charcoal);
}

.btn-solid {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-solid::before {
  background: var(--gold-dark);
}
.btn-solid:hover span {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(26, 58, 46, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 3px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
nav ul li a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  position: relative;
}
nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--gold);
}
nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  color: var(--charcoal) !important;
  background: var(--gold);
  padding: 10px 24px;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
}
.nav-cta::after {
  display: none !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--emerald);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ivory);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav a:hover {
  color: var(--gold);
}

#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 46, 0.82) 0%,
    rgba(28, 28, 28, 0.6) 60%,
    rgba(201, 168, 76, 0.12) 100%
  );
  z-index: 1;
}

.hero-deco {
  position: absolute;
  top: 120px;
  right: 80px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  z-index: 2;
}
.hero-deco::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}
.hero-content .section-label {
  color: var(--gold-light);
}

.hero-title {
  color: var(--white);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-amenities {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(26, 58, 46, 0.9);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}
.hero-amenities .container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.amenity-item i {
  color: var(--gold);
  font-size: 1rem;
}

#sobre {
  padding: 120px 0;
  background: var(--ivory);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-text h2 {
  color: var(--emerald);
  margin-bottom: 1rem;
}
.sobre-text p {
  color: #444;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.sobre-casino-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ivory-dark);
  border-left: 2px solid var(--gold);
  padding: 12px 18px;
  margin: 1.5rem 0;
  font-size: 0.8rem;
  color: #555;
  font-style: italic;
}
.sobre-casino-note i {
  color: var(--gold);
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--emerald);
  display: block;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.sobre-image {
  position: relative;
  height: 580px;
}
.sobre-image img {
  height: 100%;
  object-fit: cover;
}
.sobre-image-frame {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid var(--gold);
  z-index: -1;
}

#habitaciones {
  padding: 120px 0;
  background: var(--charcoal);
}
#habitaciones .section-header {
  text-align: center;
  margin-bottom: 64px;
}
#habitaciones h2 {
  color: var(--ivory);
}
#habitaciones .section-label {
  justify-content: center;
  display: flex;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.room-card {
  position: relative;
  height: 580px;
  overflow: hidden;
  group: true;
}
.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.room-card:hover img {
  transform: scale(1.08);
}

.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 58, 46, 0.95) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  transition: var(--transition);
}

.room-tag {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.room-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}
.room-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.4s;
  opacity: 0;
}
.room-card:hover .room-desc {
  max-height: 100px;
  opacity: 1;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}
.room-price {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.1rem;
}
.room-price span {
  font-size: 0.7rem;
  opacity: 0.7;
}
.room-btn {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
}
.room-btn:hover {
  color: var(--white);
}
.room-btn i {
  margin-left: 6px;
}

#servicios {
  padding: 120px 0;
  background: var(--ivory);
}
.servicios-header {
  text-align: center;
  margin-bottom: 72px;
}
.servicios-header h2 {
  color: var(--emerald);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.servicio-card {
  background: var(--white);
  padding: 52px 40px;
  border: 1px solid var(--ivory-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servicio-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.servicio-card:hover::before {
  width: 100%;
}

.servicio-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.3rem;
  transition: var(--transition);
}
.servicio-card:hover .servicio-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.servicio-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--emerald);
  margin-bottom: 10px;
}
.servicio-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.8;
}

.servicio-card.casino .servicio-name {
  font-style: italic;
}

#reservas {
  padding: 120px 0;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
#reservas::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
}
#reservas::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 50%;
}

.reservas-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}

.reservas-info h2 {
  color: var(--ivory);
  margin-bottom: 1rem;
}
.reservas-info p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.reservas-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.reservas-contact-item i {
  color: var(--gold);
  width: 16px;
}

.reservas-form {
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  padding: 10px 0;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group select {
  background: var(--emerald-mid);
  padding: 10px 8px;
}
.form-group select option {
  background: var(--emerald-mid);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 232, 0.35);
}
.form-group textarea {
  resize: none;
  height: 80px;
}

.form-submit {
  margin-top: 8px;
  width: 100%;
  text-align: center;
}
.form-submit .btn {
  width: 100%;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--ivory);
}
.form-success i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

#testimonios {
  padding: 120px 0;
  background: var(--ivory-dark);
}
.testimonios-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonios-header h2 {
  color: var(--emerald);
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonio-card {
  background: var(--white);
  padding: 44px 36px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
.testimonio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.testimonio-stars {
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}
.testimonio-quote i {
  color: var(--gold);
  opacity: 0.3;
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.testimonio-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #444;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonio-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--ivory-dark);
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
}
.author-city {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.05em;
}

#galeria {
  padding: 0;
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
}
.galeria-item {
  overflow: hidden;
}
.galeria-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.galeria-item:hover img {
  transform: scale(1.08);
}

#footer {
  background: var(--charcoal);
  padding: 90px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-name {
  font-size: 1.8rem;
  color: var(--white);
}
.footer-brand .logo-sub {
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  font-weight: 300;
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.6;
  font-weight: 300;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-awards {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.award-badge {
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 8px 14px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.7);
}

.footer-middle {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.footer-service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-service-item:last-child {
  border-right: none;
}
.footer-service-item i {
  color: var(--gold);
  font-size: 1rem;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: var(--gold);
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal-mid);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 40px;
}
.cookie-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  flex: 1;
}
.cookie-text a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
}
.cookie-text a:hover {
  border-color: var(--gold);
}
.cookie-icon {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 10px 22px;
  border: 1.5px solid var(--gold);
  cursor: none;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-btn.accept {
  background: var(--gold);
  color: var(--charcoal);
}
.cookie-btn.accept:hover {
  background: var(--gold-dark);
  color: var(--white);
}
.cookie-btn.essential {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}
.cookie-btn.essential:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.page-hero {
  height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  margin-top: 0;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 58, 46, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: var(--white);
}
.page-hero .section-label {
  color: var(--gold);
}

.contact-section {
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.contact-form-wrap h2 {
  color: var(--emerald);
  margin-bottom: 12px;
}
.contact-form-wrap p {
  color: #666;
  font-size: 0.88rem;
  margin-bottom: 40px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  background: transparent;
  border-bottom: 1px solid #ddd;
  color: var(--charcoal);
  font-size: 0.88rem;
  padding: 10px 0;
  outline: none;
  width: 100%;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}
.contact-form .form-group label {
  color: var(--emerald);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--emerald);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #bbb;
}
.contact-form .form-group textarea {
  height: 100px;
  resize: none;
}
.contact-form .btn {
  margin-top: 8px;
}

.contact-info {
  padding-top: 60px;
}
.contact-info-card {
  background: var(--emerald);
  padding: 52px 44px;
  margin-bottom: 24px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.6rem;
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-info-item i {
  color: var(--gold);
  margin-top: 3px;
  width: 16px;
}
.contact-info-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-weight: 300;
}

.map-placeholder {
  height: 280px;
  background: var(--charcoal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}
.map-placeholder i {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 60px 0;
}
.contact-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.contact-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--emerald);
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.7;
}

.privacy-section {
  padding: 100px 0;
}
.privacy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}

.privacy-nav {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  padding: 32px;
}
.privacy-nav h4 {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 20px;
}
.privacy-nav ul {
  list-style: none;
}
.privacy-nav ul li {
  margin-bottom: 10px;
}
.privacy-nav ul li a {
  font-size: 0.78rem;
  color: #666;
  transition: color 0.3s;
  display: block;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
}
.privacy-nav ul li a:hover {
  color: var(--emerald);
  border-color: var(--gold);
}

.privacy-content h1 {
  color: var(--emerald);
  margin-bottom: 8px;
}
.privacy-content .section-label {
  margin-bottom: 0;
}
.privacy-content .gold-line {
  margin-bottom: 32px;
}

.privacy-block {
  margin-bottom: 52px;
  scroll-margin-top: 100px;
}
.privacy-block h2 {
  font-size: 1.5rem;
  color: var(--emerald);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--ivory-dark);
  padding-bottom: 12px;
}
.privacy-block p {
  font-size: 0.87rem;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.85;
}
.privacy-block ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.privacy-block ul li {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 6px;
}

.restaurante-section {
  padding: 100px 0;
}
.spa-section {
  padding: 100px 0;
  background: var(--emerald);
}

.rest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rest-text h2 {
  color: var(--emerald);
  margin-bottom: 1rem;
}
.rest-text p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.menu-tabs {
  margin-top: 32px;
}
.tab-btns {
  display: flex;
  gap: 2px;
  margin-bottom: 24px;
}
.tab-btn {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-muted);
  cursor: none;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--emerald);
  color: var(--gold);
  border-color: var(--emerald);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dotted var(--ivory-dark);
  font-size: 0.85rem;
}
.menu-item-name {
  color: var(--charcoal);
  font-weight: 500;
}
.menu-item-price {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.rest-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  height: 500px;
}
.rest-gallery-main {
  grid-row: span 2;
}
.rest-gallery img {
  height: 100%;
  object-fit: cover;
}
.rest-gallery-top {
  height: 248px;
}
.rest-gallery-bottom {
  height: 248px;
}

.spa-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.spa-text h2 {
  color: var(--ivory);
  margin-bottom: 1rem;
}
.spa-text .section-label {
  color: var(--gold);
}
.spa-text p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.spa-services {
  list-style: none;
  margin: 24px 0;
}
.spa-services li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.spa-services li i {
  color: var(--gold);
  width: 16px;
}

.spa-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 44px 36px;
}
.spa-form-wrap h3 {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.6rem;
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rooms-grid .room-card:last-child {
    grid-column: span 2;
  }
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-middle {
    grid-template-columns: repeat(2, 1fr);
  }
  .reservas-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sobre-image {
    height: 400px;
  }
  .testimonios-grid {
    grid-template-columns: 1fr 1fr;
  }
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .galeria-item:first-child {
    grid-column: span 2;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .privacy-nav {
    position: static;
  }
  .rest-grid,
  .spa-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-deco {
    display: none;
  }
  .hero-amenities .container {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .rooms-grid .room-card:last-child {
    grid-column: span 1;
  }
  .servicios-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-middle {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sobre-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .testimonios-grid {
    grid-template-columns: 1fr;
  }
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .galeria-item:first-child {
    grid-column: span 2;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cookie-inner {
    flex-direction: column;
    padding: 20px;
  }
  .cookie-btns {
    width: 100%;
    flex-direction: column;
  }
  .cookie-btn {
    text-align: center;
  }
  .rest-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }
  .rest-gallery-main,
  .rest-gallery-top,
  .rest-gallery-bottom {
    height: 220px;
  }
  .rest-gallery-main {
    grid-row: auto;
  }
}
