/* =============================================
   ROMBE ROOFTOP - Visual Design V3
   Brand Color System: ROMBE Terracotta
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* =============================================
   CSS VARIABLES - ROMBE Brand Color System
   ============================================= */
:root {
  /* ROMBE Brand Colors */
  --color-rombe: #D65E39;          /* Primary Brand - Terracotta Orange */
  --color-rombe-dark: #B94B2B;     /* Dark Terracotta - Hover states */
  --color-rombe-light: #E7A493;    /* Soft Terracotta - Borders, highlights */

  /* Warm Neutrals (60% of palette) */
  --color-cream: #F9F5F1;         /* Primary light background */
  --color-white: #FFFFFF;         /* Pure white - typography */
  --color-beige: #EFE6DE;         /* Secondary neutral background */

  /* Black / Dark (10% of palette) */
  --color-black: #000000;          /* Strong typography, buttons */
  --color-dark-text: #171411;      /* Primary dark text */

  /* Text Colors */
  --color-text-primary: #171411;   /* Primary headings */
  --color-text-secondary: #665B54; /* Body text */
  --color-text-muted: #8A7E78;    /* Muted text */
  --color-text-light: #FFFFFF;     /* Text on dark backgrounds */

  /* Backgrounds */
  --bg-primary: var(--color-cream);
  --bg-secondary: var(--color-beige);
  --bg-white: var(--color-white);

  /* Hero Section */
  --hero-bg: var(--color-black);
  --hero-bg-overlay: rgba(0, 0, 0, 0.5);
  --hero-text: var(--color-white);
  --hero-text-muted: rgba(255, 255, 255, 0.7);

  /* Borders */
  --border-subtle: rgba(214, 94, 57, 0.12);
  --border-light: var(--color-rombe-light);
  --border-dark: rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

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

  /* Transitions */
  --transition-smooth: all 0.3s ease;
  --transition-fast: all 0.2s ease;

  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}

p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

ul, ol {
  list-style: none;
}

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

/* =============================================
   TYPOGRAPHY
   ============================================= */
.text-display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.text-heading-1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}

/* Venue Tags */
.venue-tags {
  display: inline-block;
  background: var(--hero-bg);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.text-heading-2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--color-text-primary);
}

.text-heading-3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.text-subtitle {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-rombe);
}

.text-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.text-body-large {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.text-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.text-small {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}

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

@media (min-width: 768px) {
  .section {
    padding: var(--space-xl) 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--space-xl) 2rem;
  }
}

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

.section--dark {
  background-color: var(--color-black);
  color: var(--color-text-light);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
  background: var(--color-black);
}

.nav--scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.875rem 0;
}

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

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-white);
}

.nav__logo span {
  color: var(--color-rombe);
}

.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .nav__logo img {
    height: 32px;
  }
}

.nav__menu {
  display: none;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .nav__menu {
    display: flex;
  }
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hero-text-muted);
  position: relative;
  padding: 0.25rem 0;
}

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

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

.nav__link:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__book {
  display: none;
}

@media (min-width: 768px) {
  .nav__book {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hero-text);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
  }

  .nav__book:hover {
    background: var(--color-rombe);
    color: var(--color-white);
    border-color: var(--color-rombe);
  }
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--hero-text);
  transition: var(--transition-fast);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--hero-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--hero-text);
  transition: var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--color-rombe);
}

/* =============================================
   BUTTONS - ROMBE Button System
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

/* Primary Button - Terracotta */
.btn--primary {
  background: var(--color-rombe);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-rombe-dark);
}

/* Secondary Button - Outline Black */
.btn--outline {
  background: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.btn--outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* Small Button */
.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Outline Light - For dark backgrounds */
.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* Text Button */
.btn--text {
  background: none;
  color: var(--color-text-primary);
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid var(--border-light);
}

.btn--text:hover {
  color: var(--color-rombe);
  border-color: var(--color-rombe);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--hero-bg);
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    align-items: center;
  }
}

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-bg-overlay);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 1.25rem 4rem;
}

@media (min-width: 768px) {
  .hero__content {
    padding: 8rem 2.5rem 5rem;
  }
}

@media (max-width: 767px) {
  .hero__content {
    padding: 4rem 1.25rem 3rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__scroll {
    display: none;
  }
}

.hero__label {
  margin-bottom: 1.25rem;
}

.hero__title {
  margin-bottom: 1.5rem;
  color: var(--hero-text);
}

.hero__title em {
  font-style: italic;
  color: var(--color-cream);
}

.hero__description {
  max-width: 420px;
  margin-bottom: 2.5rem;
  color: var(--hero-text-muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-rombe);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 5.5rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

/* Sticky Booking Button (Mobile) */
.sticky-booking {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  display: none;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-booking.visible {
  display: flex;
}

.sticky-booking .btn {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

@media (max-width: 767px) {
  .sticky-booking {
    display: flex;
  }
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--color-cream) 0%, transparent 100%);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Hero - Split Layout Variant */
.hero-split {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
}

@media (min-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-split__image {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-split__image {
    min-height: 100vh;
    position: sticky;
    top: 0;
  }
}

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

.hero-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 1.25rem;
  background: var(--bg-primary);
}

@media (min-width: 768px) {
  .hero-split__content {
    padding: 8rem 3rem;
  }
}

.hero-split__label {
  margin-bottom: 1.25rem;
}

.hero-split__title {
  margin-bottom: 1.5rem;
}

.hero-split__text {
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-split__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =============================================
   SPLIT SECTION (Image + Text)
   ============================================= */
.split {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
  }

  .split--reverse .split__image {
    order: 2;
  }

  .split--reverse .split__content {
    order: 1;
  }
}

.split__image {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.split__image--tall {
  aspect-ratio: 3/4;
}

.split__image--wide {
  aspect-ratio: 16/10;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.split__image:hover img {
  transform: scale(1.03);
}

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

.split__label {
  margin-bottom: 1rem;
}

.split__title {
  margin-bottom: 1.5rem;
}

.split__title span {
  color: var(--color-rombe);
}

.split__text {
  margin-bottom: 2rem;
}

/* =============================================
   FULL WIDTH IMAGE SECTION
   ============================================= */
.fullimage {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fullimage {
    min-height: 85vh;
  }
}

.fullimage__bg {
  position: absolute;
  inset: 0;
}

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

.fullimage__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.fullimage__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 4rem 2rem;
}

.fullimage__title {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.fullimage__text {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

/* =============================================
   TWO COLUMN GRID
   ============================================= */
.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

/* =============================================
   THREE COLUMN GRID
   ============================================= */
.grid-3 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* ====================================
   TESTIMONIAL SLIDER
   ==================================== */
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1rem;
}

@media (min-width: 768px) {
  .testimonial-slide {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.testimonial-slide__image {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}

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

.testimonial-slide__content {
  padding: 1rem 0;
}

.testimonial-slide__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #f5c518;
}

.testimonial-slide__quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-slide__author {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.testimonial-slide__type {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.testimonial-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--color-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.testimonial-slider__btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.testimonial-slider__btn--prev {
  left: 0;
}

.testimonial-slider__btn--next {
  right: 0;
}

.testimonial-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-slider__dot.active,
.testimonial-slider__dot:hover {
  background: var(--color-primary);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .testimonial-slider__btn {
    width: 40px;
    height: 40px;
  }

  .testimonial-slider__btn--prev {
    left: -10px;
  }

  .testimonial-slider__btn--next {
    right: -10px;
  }
}

.grid-4 {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

/* ====================================
   CARDS - Editorial Style
   ==================================== */
.card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}

.card__image {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-secondary);
}

.card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.card__content {
  padding: 2rem 1.5rem;
}

.card--icon {
  text-align: center;
  padding: 2rem;
}

.card--icon .card__icon {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.card--icon .card__content {
  padding: 0;
}

.card__label {
  margin-bottom: 0.75rem;
}

.card__title {
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

/* Card - Minimal */
.card--minimal .card__image {
  aspect-ratio: 1;
}

.card--minimal .card__content {
  padding-top: 1.25rem;
}

/* =============================================
   ANSWER MODULES
   ============================================= */
.answer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .answer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .answer-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.answer-card {
  background: var(--bg-white);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
}

.section--alt .answer-card {
  background: var(--bg-primary);
}

.answer-card__title {
  margin-bottom: 0.75rem;
}

.answer-card__text {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.space-comparison {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border: 1px solid var(--color-border);
}

.space-comparison th,
.space-comparison td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}

.space-comparison th {
  font-weight: 600;
  color: var(--color-text);
  background: var(--bg-secondary);
}

.space-comparison tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 767px) {
  .space-comparison,
  .space-comparison tbody,
  .space-comparison tr,
  .space-comparison th,
  .space-comparison td {
    display: block;
  }

  .space-comparison thead {
    display: none;
  }

  .space-comparison tr {
    border-bottom: 1px solid var(--color-border);
  }

  .space-comparison tr:last-child {
    border-bottom: 0;
  }

  .space-comparison td {
    border-bottom: 0;
    padding: 0.5rem 1rem;
  }

  .space-comparison td:first-child {
    padding-top: 1rem;
    font-weight: 600;
  }

  .space-comparison td:last-child {
    padding-bottom: 1rem;
  }

  .space-comparison td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
  }
}

/* =============================================
   AWARDS GRID
   ============================================= */
.awards-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

.award-card {
  background: var(--bg-white);
  padding: var(--space-xl);
  text-align: center;
}

.award-card__image {
  margin-bottom: var(--space-lg);
  overflow: hidden;
}

.award-card__image img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

.award-card__icon {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.award-card__title {
  margin-bottom: 0.5rem;
}

.award-card__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.award-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* =============================================
   INFO GRID
   ============================================= */
.info-grid {
  display: grid;
  gap: var(--space-md);
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
  }
}

.info-item {
  text-align: left;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .info-item {
    padding: 2rem 2.5rem;
    border: 1px solid var(--border-subtle);
  }
}

@media (min-width: 1024px) {
  .info-item {
    padding: 2.5rem 3rem;
  }
}

.info-item__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  color: var(--color-rombe);
}

.info-item__title {
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

.info-item__text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

/* =============================================
   HOURS / TIMETABLE
   ============================================= */
.timetable {
  display: grid;
  gap: 0.5rem;
}

.timetable__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-light);
}

.timetable__day {
  font-weight: 400;
  color: var(--color-text-primary);
}

.timetable__time {
  color: var(--color-rombe);
  font-weight: 500;
}

.timetable__row:last-child {
  border-bottom: none;
}

/* =============================================
   MENU CATEGORIES
   ============================================= */
.menu-category {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.menu-category__title {
  margin-bottom: 1.5rem;
  color: var(--color-rombe);
}

.menu-category__items {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .menu-category__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.menu-item__price {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-rombe);
  white-space: nowrap;
}

.menu-item__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.375rem;
}

/* Dietary badges */
.menu-badges {
  display: flex;
  gap: 0.375rem;
  margin-top: 0.375rem;
}

.menu-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.125rem 0.375rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-badge--v {
  background: #e8f5e9;
  color: #2e7d32;
}

.menu-badge--gf {
  background: #fff3e0;
  color: #e65100;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox__img {
  max-width: 90%;
  max-height: 90vh;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  transition: opacity 0.3s;
  z-index: 10000;
}

.lightbox-nav:hover {
  opacity: 0.7;
}

.lightbox-nav--prev {
  left: 20px;
}

.lightbox-nav--next {
  right: 20px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-black);
  color: var(--color-text-light);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  color: var(--color-text-light);
}

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

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer__info {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer__info p {
  margin: 0;
}

.footer__info a {
  color: var(--color-rombe);
  text-decoration: none;
}

.footer__info a:hover {
  text-decoration: underline;
}

.footer__links a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer__acknowledgement {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__bottom-left > * {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .footer__bottom-left {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}

.footer__legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer__separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.footer__social {
  display: flex;
  gap: 1.25rem;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.footer__social a:hover {
  color: var(--color-rombe);
}

/* =============================================
   PAGE HEADER (for subpages)
   ============================================= */
.page-header {
  position: relative;
  min-height: 60vh;
  min-height: 60dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--hero-bg);
}

.page-header__bg {
  position: absolute;
  inset: 0;
}

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

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-bg-overlay);
}

.page-header__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 1.25rem 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .page-header__content {
    padding: 8rem 2.5rem 4rem;
  }
}

.page-header__label {
  margin-bottom: 1rem;
}

.page-header__title {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.page-header__text {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   FORM ELEMENTS
   ============================================= */
.form-group {
  margin-bottom: 1.5rem;
}

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

.form-input {
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-dark);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-rombe);
}

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

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

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

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-textarea {
  background: var(--color-surface);
  border: 1px solid var(--border-dark);
  padding: 1rem;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
}

/* =============================================
   DIVIDER
   ============================================= */
.divider {
  width: 40px;
  height: 1px;
  background: var(--color-rombe);
  margin: 0 auto;
}

.divider--left {
  margin: 0;
}

/* =============================================
   SPACING UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden { display: none; }

@media (min-width: 768px) {
  .hidden--md { display: block; }
}

@media (min-width: 1024px) {
  .hidden--lg { display: block; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero__scroll-line {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* =============================================
   IMAGE PLACEHOLDERS (for prototype)
   ============================================= */
.img-placeholder {
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
:focus-visible {
  outline: 2px solid var(--color-rombe);
  outline-offset: 2px;
}

/* =============================================
   NEWSLETTER / SUBSCRIBE
   ============================================= */
.newsletter {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
}

.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__label {
  margin-bottom: 1rem;
}

.newsletter__title {
  margin-bottom: 1rem;
}

.newsletter__text {
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  .newsletter__form {
    flex-direction: row;
    gap: 0;
  }
}

.newsletter__input-wrapper {
  flex: 1;
  position: relative;
}

.newsletter__input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-white);
  border: 1px solid var(--border-dark);
  border-right: none;
  transition: var(--transition-fast);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--color-rombe);
}

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

@media (min-width: 480px) {
  .newsletter__input {
    border-right: none;
  }
}

.newsletter__btn {
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-rombe);
  border: 1px solid var(--color-rombe);
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.newsletter__btn:hover {
  background: var(--color-rombe-dark);
  border-color: var(--color-rombe-dark);
}

.newsletter__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.newsletter__privacy {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.newsletter__success {
  display: none;
  padding: 1.5rem;
  text-align: center;
  color: #2e7d32;
  background: #e8f5e9;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.newsletter__success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.newsletter__error {
  display: none;
  padding: 1rem;
  text-align: center;
  color: #c62828;
  background: #ffebee;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-size: 0.875rem;
}

.newsletter__error.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Newsletter in Footer */
.footer__newsletter {
  margin-top: 1.5rem;
  max-width: 320px;
}

.footer__newsletter-title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer__newsletter-form {
  display: flex;
  gap: 0;
}

.footer__newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  transition: var(--transition-fast);
}

.footer__newsletter-input:focus {
  outline: none;
  border-color: var(--color-rombe);
  background: rgba(255, 255, 255, 0.15);
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer__newsletter-btn {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-rombe);
  border: 1px solid var(--color-rombe);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.footer__newsletter-btn:hover {
  background: var(--color-rombe-dark);
  border-color: var(--color-rombe-dark);
}

.footer__newsletter-privacy {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__newsletter-success {
  display: none;
  padding: 0.75rem;
  text-align: center;
  color: #a5d6a7;
  background: rgba(46, 125, 50, 0.2);
  border-radius: var(--radius-md);
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}

.footer__newsletter-success.show {
  display: block;
}

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

/* =============================================
   STORY CARDS
   ============================================= */
.stories-section {
  padding: 4rem 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.story-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.story-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.story-card__content {
  padding: 1.5rem;
}

.story-card__type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.story-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   BREADCRUMB NAVIGATION
   ============================================= */
.breadcrumb {
  padding: 1rem 0;
  background-color: var(--color-cream);
  border-bottom: 1px solid var(--color-beige);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--color-gray);
}

.breadcrumb__item a {
  color: var(--color-rombe);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb__item a:hover {
  color: var(--color-rombe-dark);
  text-decoration: underline;
}

.breadcrumb__item:last-child a {
  color: var(--color-text);
  pointer-events: none;
}

/* =============================================
   FAQ SECTION (Collapsible)
   ============================================= */
.faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-text-primary);
  font-family: inherit;
}

.faq-question:hover {
  color: var(--color-rombe);
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.faq-answer p {
  padding-bottom: 1.25rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
}
}
}
