/*
Theme Name: OhSuites Las Canteras
Theme URI: https://ohsuites.com
Author: OhSuites
Author URI: https://ohsuites.com
Description: Theme premium para OhSuites - Suites boutique en primera línea de la Playa de Las Canteras, Las Palmas de Gran Canaria
Version: 3.8.1
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ohsuites
Tags: hotel, suites, boutique, beach, las-canteras, one-page, custom-header, custom-logo
*/

/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
  /* Palette — sand, ocean, midnight */
  --color-sand: #F5F0E8;
  --color-sand-light: #FAF8F4;
  --color-ocean: #1A6B7A;
  --color-ocean-light: #2A8B9A;
  --color-ocean-dark: #0E4F5C;
  --color-midnight: #1A1A2E;
  --color-midnight-light: #2D2D44;
  --color-gold: #C4A265;
  --color-gold-light: #D4B878;
  --color-white: #FFFFFF;
  --color-text: #3A3A3A;
  --color-text-light: #7A7A7A;
  --color-divider: rgba(196, 162, 101, 0.3);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant', Georgia, serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1280px;
  --container-narrow: 860px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-sand-light);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease-out); }
ul, ol { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-midnight);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 600px;
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease-out);
}

.site-header--scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.site-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.site-logo span {
  color: var(--color-gold);
}

.main-nav ul {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-out);
}

.main-nav a:hover {
  color: var(--color-white);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Nav booking button */
.nav-book-btn {
  background: var(--color-gold) !important;
  color: var(--color-midnight) !important;
  padding: 0.4rem 1rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  white-space: nowrap !important;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-book-btn:hover {
  background: var(--color-gold-light) !important;
  color: var(--color-midnight) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(196, 162, 101, 0.4);
}

.nav-book-btn::after {
  display: none !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  margin: 6px 0;
  transition: all 0.3s var(--ease-out);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--section-padding);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.2) 0%,
    rgba(26, 26, 46, 0.4) 50%,
    rgba(26, 26, 46, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 700px;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__title em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-gold-light);
}

.hero__description {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-midnight);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 162, 101, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--color-white);
  border-radius: 0;
}

.btn--whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* ============================================
   About / Intro Section
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--color-sand-light);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-gold);
  z-index: -1;
}

.about__text p {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-divider);
  color: var(--color-gold);
  font-size: 1.1rem;
}

.feature-item__text {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
}

/* ============================================
   Suites / Gallery Section
   ============================================ */
.suites {
  padding: var(--section-padding) 0;
  background: var(--color-midnight);
  color: var(--color-white);
}

.suites .section-title {
  color: var(--color-white);
}

.suites__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.suites__header .section-label::before {
  display: none;
}

.suites__header .section-label {
  justify-content: center;
}

.suites__header .section-subtitle {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.6);
}

.suites__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.suite-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  background: var(--color-midnight, #1A1A2E);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.suite-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.suite-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.suite-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.suite-card:hover .suite-card__image img {
  transform: scale(1.06);
}

.suite-card__info {
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.suite-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #fff;
  line-height: 1.3;
}

.suite-card__detail {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.suite-card__price {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold-light);
}

.suite-card__price span {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.5);
}

/* Gallery lightbox placeholder */
.gallery-more {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1rem;
}

/* ============================================
   Rooftop Section
   ============================================ */
.rooftop {
  position: relative;
  overflow: hidden;
  background: var(--color-midnight);
}

.rooftop__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  min-height: 500px;
  z-index: 0;
}

.rooftop__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rooftop__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(to bottom, rgba(26, 26, 46, 0.3) 0%, rgba(26, 26, 46, 0.75) 100%);
  z-index: 1;
}

.rooftop__content {
  position: relative;
  z-index: 2;
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  max-width: 800px;
}

.section-label--light {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.rooftop__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin: 0.8rem 0 1.2rem;
}

.rooftop__desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.rooftop__features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.rooftop__feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: #fff;
}

.rooftop__feat-icon {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  opacity: 0.9;
}

.rooftop__feat strong {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rooftop__feat span:not(.rooftop__feat-icon) {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .rooftop__background, .rooftop__overlay, .rooftop__content { min-height: 55vh; height: auto; }
  .rooftop__content { padding: 3.5rem 1.2rem; }
  .rooftop__features { gap: 2rem; }
}

@media (max-width: 480px) {
  .rooftop__background, .rooftop__overlay, .rooftop__content { min-height: 45vh; }
  .rooftop__features { gap: 1.5rem; }
  .rooftop__feat strong { font-size: 0.75rem; }
}

.rooftop__gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px;
  padding: 0 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.rooftop__gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  opacity: 0.9;
}

.rooftop__gallery-img:hover {
  transform: scale(1.03);
  opacity: 1;
}

@media (max-width: 768px) {
  .rooftop__gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 4px;
    padding: 0 1rem 2rem;
  }
  .rooftop__gallery-img { height: 140px; }
}

@media (max-width: 480px) {
  .rooftop__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    padding: 0 0.5rem 1.5rem;
  }
  .rooftop__gallery-img { height: 120px; border-radius: 4px; }
}

/* ============================================
   Location Section
   ============================================ */
.location {
  padding: var(--section-padding) 0;
  background: var(--color-sand);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.location__map {
  aspect-ratio: 4/3;
  background: var(--color-midnight-light);
  overflow: hidden;
  position: relative;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.8) contrast(1.1);
}

.location__highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-divider);
}

.highlight-item:last-child {
  border-bottom: none;
}

.highlight-item__distance {
  min-width: 80px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-ocean);
  font-weight: 500;
}

.highlight-item__distance span {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--color-text-light);
  display: block;
}

.highlight-item__name {
  font-weight: 400;
  font-size: 0.95rem;
}

/* ============================================
   Contact / WhatsApp Section
   ============================================ */
.contact {
  padding: var(--section-padding) 0;
  background: var(--color-sand-light);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s var(--ease-out);
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-method__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sand);
  color: var(--color-ocean);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.contact-method__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-midnight);
}

.whatsapp-cta {
  padding: 3rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--color-white);
  text-align: center;
}

.whatsapp-cta h3 {
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.whatsapp-cta p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.whatsapp-cta .btn {
  background: var(--color-white);
  color: #128C7E;
  font-weight: 600;
}

.whatsapp-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.3s var(--ease-out);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-ocean);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group--privacy { margin-top: 0.5rem; }
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
  cursor: pointer;
}
.privacy-check input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}
.privacy-check a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-midnight);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand .site-logo {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer__legal a {
  margin-left: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal a:hover {
  color: var(--color-gold);
}

/* ============================================
   LEGAL PAGES — Tables & Content
   ============================================ */
article table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
article th, article td { padding: 10px 12px; border: 1px solid #ddd; text-align: left; }
article th { background: #f5f5f5; font-weight: 600; }
article ul, article ol { margin: 0.8rem 0; padding-left: 1.5rem; }
article li { margin-bottom: 0.4rem; }
@media (max-width: 768px) {
  article table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  z-index: 9998;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  fill: var(--color-white);
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .suites__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-midnight);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .main-nav--open { right: 0; }

  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .main-nav a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .lang-switcher { margin-left: 0; margin-right: 0.5rem; }
}

@media (max-width: 768px) {
  .about__grid,
  .location__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__image::after { display: none; }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__scroll { display: none; }

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

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

  .hero__actions .btn {
    justify-content: center;
    width: 100%;
  }
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 0.2rem;
  align-items: center;
  margin-left: 1rem;
}

.lang-switcher__item {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out);
  line-height: 1;
}

.lang-switcher__item:hover {
  color: rgba(255, 255, 255, 0.85);
}

.lang-switcher__item--active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* Suite detail modal/expanded */
.suite-card__desc {
  display: none;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 0.75rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.suite-card--expanded .suite-card__desc {
  display: block;
  max-height: 300px;
}

.suite-card__capacity {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Suites grid 2x4 on desktop */
.suites__grid--full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1200px) {
  .suites__grid--full { grid-template-columns: repeat(3, 1fr); }
  .suite-card__name { font-size: 1.05rem; }
}

@media (max-width: 768px) {
  .suites__grid--full {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .suite-card__info {
    padding: 0.9rem 0.9rem 1.1rem;
  }
  .suite-card__name {
    font-size: 0.95rem;
  }
  .suite-card__detail {
    font-size: 0.7rem;
  }
  .suite-card__capacity {
    font-size: 0.68rem;
  }
  .suite-card__link {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .suites__grid--full {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* Horizontal layout on phone: image left, text right */
  .suite-card {
    flex-direction: row;
    border-radius: 8px;
  }
  .suite-card__image {
    aspect-ratio: auto;
    width: 40%;
    min-height: 160px;
    flex-shrink: 0;
    border-radius: 8px 0 0 8px;
  }
  .suite-card__info {
    padding: 1rem;
    justify-content: center;
    width: 60%;
  }
  .suite-card__name {
    font-size: 1rem;
  }
  .suite-card__detail {
    font-size: 0.75rem;
  }
  .suite-card__capacity {
    font-size: 0.72rem;
    margin-top: 0.4rem;
    padding-top: 0.3rem;
  }
  .suite-card__link {
    font-size: 0.78rem;
    margin-top: 0.4rem;
  }
}

/* ============================================
   WordPress-specific
   ============================================ */
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.5rem; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ===================================================================
   SINGLE SUITE PAGE
   =================================================================== */

/* Hero */
.suite-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.suite-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.suite-hero__bg--gradient {
  background: linear-gradient(135deg, #1A1A2E 0%, #1A6B7A 100%);
}

.suite-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.5) 40%, rgba(26,26,46,0.15) 70%, transparent 100%);
  z-index: 2;
}

.suite-hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: 3rem;
}

.suite-hero__back {
  display: inline-block;
  color: var(--color-gold, #C4A265);
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.suite-hero__back:hover { opacity: 1; }

.suite-hero__title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.suite-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.suite-hero__tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(196, 162, 101, 0.15);
  border: 1px solid rgba(196, 162, 101, 0.3);
  border-radius: 100px;
  color: var(--color-gold, #C4A265);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* Page layout */
.suite-page {
  padding: 3rem 0 4rem;
}

/* Section titles */
.suite-section__title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.6rem;
  color: var(--color-midnight, #1A1A2E);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-gold, #C4A265);
}

/* Gallery */
.suite-gallery {
  margin-bottom: 3rem;
}

.suite-gallery__main {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f0ede8;
}

.suite-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.suite-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold, #C4A265) transparent;
}

.suite-gallery__thumb {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  border: 2px solid transparent;
}

.suite-gallery__thumb:hover {
  opacity: 0.8;
}

.suite-gallery__thumb--active {
  opacity: 1;
  border-color: var(--color-gold, #C4A265);
  box-shadow: 0 0 0 2px rgba(196, 162, 101, 0.3);
}

/* Description */
.suite-description {
  margin-bottom: 3rem;
}

.suite-description__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text, #4A4A5A);
  max-width: 800px;
}

.suite-description__text p {
  margin-bottom: 1rem;
}

/* Amenities */
.suite-amenities {
  margin-bottom: 3rem;
}

.suite-amenities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.suite-amenities__category {
  background: var(--color-cream, #FAF8F4);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(196, 162, 101, 0.15);
}

.suite-amenities__cat-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.1rem;
  color: var(--color-midnight, #1A1A2E);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(196, 162, 101, 0.2);
}

.suite-amenities__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suite-amenities__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--color-text, #4A4A5A);
}

.suite-amenities__icon {
  color: var(--color-gold, #C4A265);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 24px;
  justify-content: center;
}

.suite-amenities__icon svg {
  width: 18px;
  height: 18px;
}

/* Booking CTA */
.suite-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(196, 162, 101, 0.2);
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn--lg {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* Suite card link styling */
a.suite-card {
  text-decoration: none;
  color: #fff;
  display: flex;
}

.suite-card__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-gold, #C4A265);
  letter-spacing: 0.03em;
  opacity: 0.7;
  transition: opacity 0.3s;
}

a.suite-card:hover .suite-card__link {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .suite-hero { height: 40vh; min-height: 280px; }
  .suite-hero__title { font-size: 1.6rem; }
  .suite-hero__content { padding-bottom: 2rem; }
  .suite-hero__meta { gap: 0.4rem; }
  .suite-hero__tag { font-size: 0.7rem; padding: 0.25rem 0.7rem; }
  .suite-hero__back { font-size: 0.8rem; }
  .suite-amenities__grid { grid-template-columns: 1fr; }
  .suite-gallery__thumb { width: 80px; height: 55px; }
  .suite-cta { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; text-align: center; }
  .suite-page { padding: 2rem 0 3rem; }
  .suite-section__title { font-size: 1.3rem; }
  .suite-description__text { font-size: 0.92rem; }
}

@media (max-width: 480px) {
  .suite-hero { height: 35vh; min-height: 240px; }
  .suite-hero__title { font-size: 1.3rem; }
  .suite-hero__tag { font-size: 0.65rem; padding: 0.2rem 0.6rem; }
  .suite-gallery__main img { border-radius: 6px; }
  .suite-gallery__thumbs { gap: 6px; }
  .suite-gallery__thumb { width: 60px; height: 45px; }
}
