/* ==========================================================================
   La Casa de Aza - Rustic Spanish Countryside Aesthetic
   "El Libro de Huéspedes" - The Guest Book
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts Import
   Cormorant Garamond: Elegant old-world serif for headings
   Source Sans 3: Warm, readable body text
   Playfair Display: Decorative accents
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* --------------------------------------------------------------------------
   CSS Custom Properties - The Palette of Rural Castilla
   -------------------------------------------------------------------------- */
:root {
  /* Primary Colors - Terracotta & Earth */
  --color-terracotta: #B8654A;
  --color-terracotta-dark: #9A5340;
  --color-terracotta-light: #D4846B;

  /* Secondary - Olive & Forest */
  --color-olive: #4A5D4A;
  --color-olive-dark: #3A4A3A;
  --color-olive-light: #6B7D6B;

  /* Neutrals - Stone, Paper, Wood */
  --color-cream: #F8F4ED;
  --color-parchment: #E8E0D4;
  --color-stone: #D4CCC0;
  --color-stone-dark: #8B8177;
  --color-wood: #6B5B4F;

  /* Text Colors */
  --color-text: #2D2419;
  --color-text-light: #5C4D3D;
  --color-text-muted: #7A6B5A;

  /* Accents */
  --color-gold: #C49A6C;
  --color-gold-light: #DDB98A;
  --color-wine: #722F37;

  /* Shadows */
  --shadow-soft: 0 2px 8px rgba(45, 36, 25, 0.08);
  --shadow-medium: 0 4px 16px rgba(45, 36, 25, 0.12);
  --shadow-strong: 0 8px 32px rgba(45, 36, 25, 0.16);
  --shadow-inner: inset 0 2px 4px rgba(45, 36, 25, 0.06);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle paper texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-terracotta-dark);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

/* Decorative text elements */
.subtitle {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-header p {
  max-width: 600px;
  margin: var(--space-lg) auto 0;
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Layout & Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background-color: var(--color-parchment);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(248, 244, 237, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.header--scrolled {
  box-shadow: var(--shadow-medium);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.header__logo-text span {
  color: var(--color-terracotta);
}

.header__logo-img {
  height: 50px;
  width: auto;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-terracotta);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-terracotta);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--color-stone);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
  transition: all var(--transition-fast);
}

.lang-switcher:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
}

.lang-switcher__current {
  font-weight: 600;
}

.lang-switcher__divider {
  color: var(--color-stone);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle__line {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle--active .nav-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle--active .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle--active .nav-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-strong);
    transition: right var(--transition-base);
  }

  .nav--open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .nav__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 36, 25, 0.5);
    z-index: 999;
  }

  .nav__overlay--visible {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-parchment);
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

/* Placeholder for hero when no image */
.hero__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-stone) 0%,
    var(--color-parchment) 50%,
    var(--color-stone) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__placeholder-text {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(45, 36, 25, 0.3) 0%,
    rgba(45, 36, 25, 0.5) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-cream);
  padding: var(--space-2xl);
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: var(--space-md);
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--color-cream);
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero__description {
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-cream);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.hero__scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.hero__scroll-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  text-transform: uppercase;
}

.btn--primary {
  background-color: var(--color-terracotta);
  color: var(--color-cream);
  border: 2px solid var(--color-terracotta);
}

.btn--primary:hover {
  background-color: var(--color-terracotta-dark);
  border-color: var(--color-terracotta-dark);
  color: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-cream);
  border: 2px solid var(--color-cream);
}

.btn--secondary:hover {
  background-color: var(--color-cream);
  color: var(--color-text);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-terracotta);
  border: 2px solid var(--color-terracotta);
}

.btn--outline:hover {
  background-color: var(--color-terracotta);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn--dark {
  background-color: var(--color-text);
  color: var(--color-cream);
  border: 2px solid var(--color-text);
}

.btn--dark:hover {
  background-color: var(--color-wood);
  border-color: var(--color-wood);
  transform: translateY(-2px);
}

.btn--sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
}

.btn--lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

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

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Placeholder for card images */
.card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-stone) 0%, var(--color-parchment) 100%);
  color: var(--color-text-muted);
  font-family: var(--font-accent);
  font-style: italic;
}

.card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-terracotta);
  color: var(--color-cream);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
}

.card__content {
  padding: var(--space-xl);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.card__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.card__description {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.card__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.card__meta-icon {
  color: var(--color-olive);
}

.card__price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-terracotta);
  margin-bottom: var(--space-lg);
}

.card__price-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.card__footer {
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-parchment);
  border-top: 1px solid var(--color-stone);
}

/* --------------------------------------------------------------------------
   Room Cards (Extended)
   -------------------------------------------------------------------------- */
.room-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .room-card {
    grid-template-columns: 1fr 1fr;
  }

  .room-card:nth-child(even) {
    direction: rtl;
  }

  .room-card:nth-child(even) > * {
    direction: ltr;
  }
}

.room-card:hover {
  box-shadow: var(--shadow-medium);
}

.room-card__image {
  aspect-ratio: 4/3;
  background: var(--color-parchment);
  position: relative;
  overflow: hidden;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.room-card:hover .room-card__image img {
  transform: scale(1.05);
}

.room-card__content {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-card__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.room-card__capacity {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-olive);
  margin-bottom: var(--space-lg);
}

.room-card__features {
  margin-bottom: var(--space-xl);
}

.room-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-stone);
}

.room-card__feature:last-child {
  border-bottom: none;
}

.room-card__feature-icon {
  color: var(--color-terracotta);
  width: 20px;
  flex-shrink: 0;
}

.room-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.room-card__price-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-terracotta);
}

.room-card__price-label {
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Features Grid
   -------------------------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.feature {
  text-align: center;
  padding: var(--space-xl);
}

.feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-parchment);
  border-radius: 50%;
  color: var(--color-terracotta);
  transition: all var(--transition-base);
}

.feature:hover .feature__icon {
  background: var(--color-terracotta);
  color: var(--color-cream);
  transform: scale(1.1);
}

.feature__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.feature__description {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Menu Section (Restaurant)
   -------------------------------------------------------------------------- */
.menu-section {
  margin-bottom: var(--space-3xl);
}

.menu-section__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-terracotta);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-stone);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-md) 0;
  border-bottom: 1px dashed var(--color-stone);
}

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

.menu-item__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
}

.menu-item__description {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: var(--space-xs);
}

.menu-item__price {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-olive);
  white-space: nowrap;
  margin-left: var(--space-lg);
}

.menu-note {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-parchment);
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  padding: var(--space-2xl);
  background: var(--color-parchment);
  border-radius: var(--radius-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-terracotta);
  color: var(--color-cream);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item__content h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.contact-item__content p,
.contact-item__content a {
  color: var(--color-text-light);
}

.contact-item__content a:hover {
  color: var(--color-terracotta);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  background: var(--color-parchment);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-text);
  color: var(--color-cream);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

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

.footer__tagline {
  color: var(--color-stone);
  font-family: var(--font-accent);
  font-style: italic;
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-cream);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: var(--color-stone);
  transition: color var(--transition-fast);
}

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

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-stone);
  margin-bottom: var(--space-sm);
}

.footer__contact-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-wood);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer__copyright {
  color: var(--color-stone-dark);
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  color: var(--color-stone-dark);
  font-size: 0.875rem;
}

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

/* --------------------------------------------------------------------------
   Cookie Consent Banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text);
  color: var(--color-cream);
  padding: var(--space-lg);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner__text p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner__text a {
  color: var(--color-gold);
}

.cookie-banner__buttons {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.cookie-banner__btn--accept {
  background: var(--color-terracotta);
  color: var(--color-cream);
}

.cookie-banner__btn--accept:hover {
  background: var(--color-terracotta-dark);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--color-stone);
  border: 1px solid var(--color-stone);
}

.cookie-banner__btn--reject:hover {
  border-color: var(--color-cream);
  color: var(--color-cream);
}

/* --------------------------------------------------------------------------
   Page Headers (Interior Pages)
   -------------------------------------------------------------------------- */
.page-header {
  background: var(--color-parchment);
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23D4CCC0' fill-opacity='0.3'/%3E%3C/svg%3E");
  background-size: 30px 30px;
  opacity: 0.3;
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__title {
  margin-bottom: var(--space-md);
}

.page-header__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-text-light);
  font-size: 1.125rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-terracotta);
}

.breadcrumb__separator {
  color: var(--color-stone);
}

.breadcrumb__current {
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   Legal Pages
   -------------------------------------------------------------------------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-terracotta);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-content li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
  position: relative;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-md));
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--color-terracotta);
  border-radius: 50%;
}

.legal-content a {
  color: var(--color-terracotta);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
  }
}

.about-intro__image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-parchment);
}

.about-intro__content {
  padding: var(--space-lg) 0;
}

.about-intro__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.about-intro__text {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-stone);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline__item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .timeline__item {
    padding-left: 0;
    width: 50%;
    padding-right: var(--space-2xl);
  }

  .timeline__item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: var(--space-2xl);
  }
}

.timeline__marker {
  position: absolute;
  left: 10px;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--color-terracotta);
  border: 4px solid var(--color-cream);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .timeline__marker {
    left: auto;
    right: -11px;
  }

  .timeline__item:nth-child(even) .timeline__marker {
    right: auto;
    left: -11px;
  }
}

.timeline__content {
  background: var(--color-parchment);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-terracotta);
  margin-bottom: var(--space-sm);
}

.timeline__text {
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Intro Cards (Homepage)
   -------------------------------------------------------------------------- */
.intro-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .intro-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-parchment);
}

@media (min-width: 768px) {
  .intro-card {
    aspect-ratio: 4/5;
  }
}

.intro-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.intro-card:hover .intro-card__image {
  transform: scale(1.05);
}

.intro-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xl);
  background: linear-gradient(to top, rgba(45, 36, 25, 0.9) 0%, transparent 100%);
  color: var(--color-cream);
}

.intro-card__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.intro-card__description {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  background: var(--color-olive);
  color: var(--color-cream);
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='2' fill='%23F8F4ED' fill-opacity='0.1'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__title {
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.cta-section__text {
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  font-size: 1.1rem;
}

.cta-section .btn--secondary {
  border-color: var(--color-cream);
}

.cta-section .btn--secondary:hover {
  background: var(--color-cream);
  color: var(--color-olive);
}

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-lg); }
.mt-3 { margin-top: var(--space-xl); }
.mt-4 { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-lg); }
.mb-3 { margin-bottom: var(--space-xl); }
.mb-4 { margin-bottom: var(--space-2xl); }

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --space-4xl: 3rem;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-lg);
  }

  .hero__cta .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Room Gallery/Carousel
   -------------------------------------------------------------------------- */
.room-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}

.room-gallery__main {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.room-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-base);
}

.room-gallery__main img.is-hidden {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.room-gallery__main img.is-active {
  opacity: 1;
  position: relative;
}

.room-gallery__thumbnails {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-xs);
  background: rgba(45, 36, 25, 0.7);
  border-radius: var(--radius-md);
  backdrop-filter: blur(4px);
  max-width: calc(100% - var(--space-xl));
  overflow-x: auto;
}

.room-gallery__thumb {
  width: 48px;
  height: 36px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  border: 2px solid transparent;
}

.room-gallery__thumb:hover {
  opacity: 0.9;
}

.room-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--color-cream);
}

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

.room-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(45, 36, 25, 0.6);
  color: var(--color-cream);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
}

.room-gallery__nav:hover {
  background: rgba(45, 36, 25, 0.85);
}

.room-gallery__nav--prev {
  left: var(--space-sm);
}

.room-gallery__nav--next {
  right: var(--space-sm);
}

.room-gallery__nav svg {
  width: 20px;
  height: 20px;
}

/* Hide nav buttons on small galleries */
@media (max-width: 480px) {
  .room-gallery__nav {
    width: 32px;
    height: 32px;
  }

  .room-gallery__nav svg {
    width: 16px;
    height: 16px;
  }

  .room-gallery__thumb {
    width: 40px;
    height: 30px;
  }
}

/* --------------------------------------------------------------------------
   Menu Recommendations Badge
   -------------------------------------------------------------------------- */
.menu-item--recommended {
  position: relative;
}

.menu-item--recommended::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-terracotta);
  border-radius: 50%;
}

.menu-recommendations {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-terracotta-light) 0%, var(--color-terracotta) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-cream);
  text-align: center;
}

.menu-recommendations__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--color-cream);
}

.menu-recommendations__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.menu-recommendations__item {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.menu-item--award {
  background: linear-gradient(135deg, rgba(196, 154, 108, 0.1) 0%, rgba(196, 154, 108, 0.05) 100%);
  padding: var(--space-sm) var(--space-md);
  margin: calc(-1 * var(--space-sm)) calc(-1 * var(--space-md));
  border-radius: var(--radius-sm);
}

.menu-item__award-badge {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-text);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  margin-left: var(--space-xs);
  text-transform: uppercase;
}
