/* ============================================
   AVRA Mykonos - Premium Restaurant Website
   Mediterranean Elegance Stylesheet
   ============================================ */

/* CSS Custom Properties - Mediterranean Palette */
:root {
  /* Primary Colors */
  --color-white: #FFFFFF;
  --color-cream: #FAF8F5;
  --color-sand: #E8E2D9;
  --color-sand-light: #F5F2ED;
  --color-charcoal: #2C2C2C;
  --color-charcoal-light: #4A4A4A;
  --color-olive: #6B7B5E;
  --color-olive-dark: #4A5A3E;
  --color-aegean: #1E3A5F;
  --color-gold: #C4A35A;
  --color-gold-light: #D4B76A;

  /* Text Colors */
  --text-primary: #2C2C2C;
  --text-secondary: #5A5A5A;
  --text-light: #8A8A8A;
  --text-white: #FFFFFF;

  /* Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAF8F5;
  --bg-dark: #1A1A1A;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --bg-overlay-light: rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 10rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
  --transition-smooth: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Header height */
  --header-height: 80px;
  --header-height-scrolled: 70px;
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

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

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.02em;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.9;
}

.text-small {
  font-size: 0.875rem;
}

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: 900px;
}

.container-wide {
  max-width: 1600px;
}

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

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

/* ============================================
   Header - Sticky Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: all var(--transition-medium);
}

.header.scrolled {
  height: var(--header-height-scrolled);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .header__logo,
.header.scrolled .nav__link,
.header.scrolled .header__cta-secondary {
  color: var(--text-primary);
}

.header.scrolled .nav__link:hover {
  color: var(--color-olive);
}

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

.header__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-white);
  transition: color var(--transition-medium);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-white);
  padding: var(--spacing-xs) 0;
  position: relative;
  transition: color var(--transition-medium);
}

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

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

.nav__separator {
  color: var(--text-white);
  opacity: 0.4;
  font-size: 0.75rem;
}

.header.scrolled .nav__separator {
  color: var(--text-primary);
}

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

.header__cta-secondary {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all var(--transition-fast);
}

.header__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.header.scrolled .header__cta-secondary {
  border-color: var(--text-primary);
}

.header.scrolled .header__cta-secondary:hover {
  background: var(--text-primary);
  color: var(--text-white);
}

/* Language Switcher - Desktop */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: var(--spacing-md);
}

.lang-switcher__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-white);
  padding: 0.25rem 0.5rem;
  opacity: 0.6;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}

.lang-switcher__link:hover {
  opacity: 1;
}

.lang-switcher__link.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .lang-switcher__link {
  color: var(--text-primary);
}

.header.scrolled .lang-switcher__link.active {
  background: rgba(0, 0, 0, 0.08);
}

.lang-switcher__separator {
  color: var(--text-white);
  opacity: 0.3;
  font-size: 0.6rem;
}

.header.scrolled .lang-switcher__separator {
  color: var(--text-primary);
}

/* Language Switcher - Mobile (inside sidebar) */
.lang-switcher--mobile {
  display: none;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-switcher--mobile .lang-switcher__link {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  color: var(--text-white);
}

.lang-switcher--mobile .lang-switcher__link.active {
  background: rgba(255, 255, 255, 0.15);
}

.lang-switcher--mobile .lang-switcher__separator {
  color: var(--text-white);
  opacity: 0.3;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: all var(--transition-fast);
}

.header.scrolled .menu-toggle span {
  background: var(--text-primary);
}

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

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

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--color-charcoal);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--color-charcoal-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-white);
}

.btn-secondary:hover {
  background: var(--text-white);
  color: var(--text-primary);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}

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

.btn-gold {
  background: var(--color-gold);
  color: var(--text-white);
}

.btn-gold:hover {
  background: var(--color-gold-light);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  text-align: center;
  color: var(--text-white);
  padding: var(--spacing-md);
  max-width: 800px;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: var(--spacing-sm);
  color: var(--text-white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: var(--spacing-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.6s;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.9s;
}

.hero__scroll {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-white);
  opacity: 0.7;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

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

/* ============================================
   Content Sections
   ============================================ */
.content-section {
  padding: var(--spacing-xxl) 0;
}

.content-section--cream {
  background: var(--bg-secondary);
}

.content-section--dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

.content-section--dark h2,
.content-section--dark h3,
.content-section--dark p {
  color: var(--text-white);
}

.content-section--dark p {
  opacity: 0.85;
}

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

.section-header__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.section-header__title {
  margin-bottom: var(--spacing-md);
}

.section-header__divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto;
}

/* Presentation Section */
.presentation {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.presentation__text {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.presentation__divider {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin: var(--spacing-lg) 0;
  opacity: 0.6;
}

.presentation__heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.presentation__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin: var(--spacing-md) 0;
}

.presentation__list-item {
  font-size: 1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
}

.presentation__list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* ============================================
   Quote Section
   ============================================ */
.quote-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: var(--spacing-lg);
  left: 10%;
  font-family: var(--font-serif);
  font-size: 20rem;
  color: var(--color-sand);
  line-height: 1;
  opacity: 0.5;
  z-index: 0;
}

.quote {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--spacing-md);
}

.quote__text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.quote__author {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-olive);
}

/* ============================================
   Image Gallery
   ============================================ */
.gallery {
  display: grid;
  gap: var(--spacing-sm);
  padding: var(--spacing-xl) 0;
}

.gallery--grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}

.gallery--masonry {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--color-sand);
}

.gallery__item--large {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery__item--medium {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery__item--small {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery__item--wide {
  grid-column: span 8;
  grid-row: span 2;
}

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

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-overlay-light);
  opacity: 0;
  transition: opacity var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

/* Simple Gallery Grid for Fallback */
.gallery-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  padding: var(--spacing-lg) 0;
}

.gallery-simple__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-sand-light);
}

.gallery-simple__item:nth-child(2) {
  aspect-ratio: 3/4;
}

.gallery-simple__item:nth-child(5) {
  aspect-ratio: 16/9;
  grid-column: span 2;
}

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

.gallery-simple__item:hover .gallery-simple__img {
  transform: scale(1.03);
}

/* ============================================
   Terroir / Story Section
   ============================================ */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.story-section--reverse {
  direction: rtl;
}

.story-section--reverse > * {
  direction: ltr;
}

.story__image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

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

.story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-xl);
  background: var(--bg-secondary);
}

.story__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-bottom: var(--spacing-sm);
}

.story__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
}

.story__text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.story__list {
  margin-top: var(--spacing-md);
}

.story__list-item {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: var(--spacing-xs) 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.story__list-item::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--color-gold);
}

/* ============================================
   Menu / Carte Page
   ============================================ */
.menu-hero {
  height: 60vh;
  min-height: 400px;
}

.menu-section {
  padding: var(--spacing-xl) 0;
  border-bottom: 1px solid var(--color-sand);
}

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

.menu__category {
  margin-bottom: var(--spacing-lg);
}

.menu__category-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.menu__category-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--spacing-sm) auto 0;
}

.menu__items {
  max-width: 800px;
  margin: 0 auto;
}

.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px dotted var(--color-sand);
}

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

.menu__item-info {
  flex: 1;
  padding-right: var(--spacing-md);
}

.menu__item-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.menu__item-description {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.menu__item-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.menu__image {
  margin: var(--spacing-lg) 0;
  height: 400px;
  overflow: hidden;
}

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

.menu__note {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--bg-secondary);
  margin-top: var(--spacing-xl);
}

.menu__note p {
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-hero {
  height: 50vh;
  min-height: 350px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) 0;
}

.contact__info {
  padding: var(--spacing-lg) 0;
}

.contact__group {
  margin-bottom: var(--spacing-lg);
}

.contact__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-bottom: var(--spacing-xs);
}

.contact__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.contact__text a {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 3px;
}

.contact__text a:hover {
  color: var(--color-olive);
}

.contact__hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xs) var(--spacing-md);
}

.contact__hours dt {
  font-weight: 500;
  color: var(--text-primary);
}

.contact__hours dd {
  color: var(--text-secondary);
}

.contact__map {
  height: 100%;
  min-height: 400px;
  background: var(--color-sand-light);
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-sand);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--text-primary);
  color: var(--text-white);
  border-color: var(--text-primary);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer__brand {
  padding-right: var(--spacing-lg);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.footer__tagline {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
}

.footer__title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  opacity: 0.5;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer__link {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer__link:hover {
  opacity: 1;
}

.footer__text {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.8;
}

.footer__social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.5);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer__legal {
  display: flex;
  gap: var(--spacing-md);
}

.footer__legal-link {
  font-size: 0.8rem;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.footer__legal-link:hover {
  opacity: 0.8;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scrollDown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 0.5;
  }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all var(--transition-smooth);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all var(--transition-smooth);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all var(--transition-smooth);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children animations */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-medium);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 992px) {
  .story-section {
    grid-template-columns: 1fr;
  }

  .story__image {
    min-height: 400px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact__map {
    order: -1;
  }

  .gallery--masonry {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery__item--large {
    grid-column: span 6;
  }

  .gallery__item--medium {
    grid-column: span 3;
  }

  .gallery__item--wide {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hide desktop language switcher on mobile */
  .lang-switcher:not(.lang-switcher--mobile) {
    display: none;
  }

  /* Show mobile language switcher inside sidebar */
  .lang-switcher--mobile {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    transition: right var(--transition-medium);
  }

  .header__nav.active {
    right: 0;
  }

  .nav {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .nav__link {
    font-size: 1.2rem;
    color: var(--text-white);
  }

  .nav__separator {
    display: none;
  }

  .header__ctas {
    flex-direction: column;
    margin-top: var(--spacing-md);
  }

  .header__cta-secondary {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .hero__title {
    letter-spacing: 0.1em;
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }

  .footer__brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: var(--spacing-md);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .gallery--masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .gallery__item--large,
  .gallery__item--medium,
  .gallery__item--wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery__item--small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-simple__item:nth-child(5) {
    grid-column: span 1;
  }

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

@media (max-width: 480px) {
  :root {
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
  }

  .hero {
    min-height: 600px;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.7rem;
  }

  .menu__item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xs);
  }

  .menu__item-price {
    align-self: flex-end;
  }

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

  .gallery-simple {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  color: var(--text-white);
  padding: var(--spacing-sm) var(--spacing-md);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--spacing-sm);
}

/* Screen reader only */
.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;
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-white);
  padding: var(--spacing-md);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

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

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

.cookie-banner__text {
  flex: 1;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cookie-banner__text a {
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: var(--spacing-sm);
}

.cookie-banner__btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-banner__btn--accept {
  background: var(--text-white);
  color: var(--text-primary);
}

.cookie-banner__btn--decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .hero__scroll {
    display: none;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: var(--spacing-lg);
  }

  .hero__overlay {
    background: transparent;
  }

  .hero__title,
  .hero__subtitle {
    color: var(--text-primary);
  }

  body {
    font-size: 12pt;
  }
}
