/* ==========================================================================
   FONTÉ LOUVRE — Premium Lifestyle & Beauty
   CSS3 · Mobile-first · No frameworks
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS & RESET
   -------------------------------------------------------------------------- */

:root {
  /* Palette */
  --c-bg:        #F5F0E8;     /* ivory */
  --c-bg-card:   #E8CEA3;     /* slightly lighter card */
  --c-bg-dark:   #1E120A;     /* deep espresso for dark sections */
  --c-bg-light:  #664B34;	  /* light espresso for light sections */
  --c-text:      #2C1810;     /* dark espresso */
  --c-text-muted:#7A6653;     /* warm muted for secondary text */
  --c-gold:      #C9A96E;     /* warm gold accent */
  --c-gold-dark: #A8875A;     /* deeper gold for hover states */
  --c-bronze:    #8B7355;     /* muted bronze */
  --c-line:      #E2D9CC;     /* subtle divider */
  --c-white:     #FFFFFF;

  /* Typography */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;

  /* Scale */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  4rem;
  --fs-hero: clamp(3.2rem, 9vw, 6.5rem);

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

  /* Misc */
  --radius-sm: 3px;
  --radius-md: 8px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 24px rgba(44, 24, 16, 0.07);
  --shadow-hover: 0 12px 40px rgba(44, 24, 16, 0.13);
}

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

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

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY UTILITIES
   -------------------------------------------------------------------------- */

.section-eyebrow {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text); 
  margin-bottom: var(--space-xs);
}
.section-eyebrow.light { color: var(--c-gold); }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-3xl));
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-text);
}
.section-title em {
  font-style: italic;
  color: var(--c-bronze);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-intro {
  max-width: 520px;
  margin: var(--space-md) auto 0;
  color: var(--c-text); 
  font-size: var(--fs-md);
}

/* --------------------------------------------------------------------------
   3. ORNAMENTS & DIVIDERS
   -------------------------------------------------------------------------- */

.divider-gold {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin-top: var(--space-md);
}
.divider-gold.centered { margin-inline: auto; }

.hero-ornament {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.ornament-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.6;
}
.ornament-symbol {
  color: var(--c-gold);
  font-size: var(--fs-sm);
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition),
              color var(--transition),
              border-color var(--transition),
              box-shadow var(--transition),
              transform var(--transition);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--c-gold);
  color: var(--c-bg-dark);
  border-color: var(--c-gold);
}
.btn-primary:hover {
  background: var(--c-gold-dark);
  border-color: var(--c-gold-dark);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--c-bg);
  border-color: rgba(245, 240, 232, 0.5);
}
.btn-ghost:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: var(--c-bg);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-line);
}
.btn-ghost-dark:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: var(--fs-base);
}

/* --------------------------------------------------------------------------
   5. HEADER & NAV
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; /* Header always on top — overlay will be below it */
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
}

/* On MOBILE: header always has a dark background — toggle (3 lines) is always visible */
@media (max-width: 899px) {
  .site-header {
    background: var(--c-bg-dark) !important;
    box-shadow: 0 1px 0 rgba(201, 169, 110, 0.12);
  }
  /* When the menu is open: nav-inner (logo + toggle) remains visible,
  the rest of the header (dark bar) covers the top of the overlay — that's OK,
  because the overlay starts below the header */
  .site-header.scrolled {
    background: var(--c-bg-dark) !important;
    backdrop-filter: none;
    box-shadow: 0 1px 0 rgba(201, 169, 110, 0.12);
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-inline: auto;
  padding: 1.2rem var(--space-md);
  transition: padding var(--transition);
}
.site-header.scrolled .nav-inner { padding-block: 0.9rem; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bg);
  transition: color var(--transition);
  text-decoration: none;
}
.site-header.scrolled .logo { color: var(--c-text); }

.logo-mark {
  color: var(--c-gold);
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.logo:hover .logo-mark { transform: rotate(90deg); }
.logo-accent { color: var(--c-gold); }

.nav-links {
  display: none;
  gap: var(--space-lg);
}
.nav-links a {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--c-gold); }
.nav-links a:hover::after { width: 100%; }

.site-header.scrolled .nav-links a { color: var(--c-text-muted); }
.site-header.scrolled .nav-links a:hover { color: var(--c-gold); }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1; /* Above the logo within the nav-inner */
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--c-bg); /* Always light — header is always dark on mobile */
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.22s ease,
              background 0.22s ease;
  transform-origin: center;
}
/* After scrolling on desktop — dark lines on light header */
.site-header.scrolled .nav-toggle span { background: #FFFFFF }
/* Crosshair always light (overlay is dark) */
.nav-toggle.is-active span { background: var(--c-bg) !important; }

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--space-3xl) + 80px) var(--space-md) var(--space-3xl);
  background-color: var(--c-bg-dark);
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(139, 115, 85, 0.05) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

/* Full-bleed dark background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-bg-dark);
  z-index: -1;
}

section.hero {
  max-width: 100%;
  background-color: var(--c-bg-dark);
}

/* Reset: make hero full-bleed */
.hero {
  max-width: none;
  padding-inline: max(var(--space-md), (100vw - 1200px) / 2 + var(--space-md));
}
/* Flexbox, which arranges a character and a sentence next to each other on a single line */
.hero-eyebrow-wrapper {
  display: flex;
  align-items: center; /* Centers elements vertically */
  gap: var(--space-sm); /* Space between character and text */
  margin-bottom: var(--space-md); /* Indent from main heading */
}
.hero-eyebrow {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--f-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--c-bg);
  margin-bottom: var(--space-lg);
  max-width: 700px;
}
.hero-title em {
  font-style: italic;
  color: var(--c-gold);
}

.hero-sub {
  font-size: var(--fs-md);
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 440px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--c-gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-family: var(--f-body);
}
.hero-bg-shape {
 position: absolute;
 top: 50%;
 right: 8%; /* Subtle offset to the right edge */
 transform: translateY(-50%);
 font-size: 70vh; /* Large area, fills empty space */
 color: var(--c-gold); /* Uses variable for gold */
 opacity: 0.035; /* Very subtle transparency (3.5%) so as not to disturb the text */
 pointer-events: none;
 user-select: none;
 font-family: var(--f-body);
 z-index: 1;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.15); }
}

/* --------------------------------------------------------------------------
   7. ABOUT
   -------------------------------------------------------------------------- */

.about {
  padding-block: var(--space-3xl);
  background-color: var(--c-bg-light); /* DARK BACKGROUND FOR SECTION */
  color: var(--c-bg); /* LIGHT TEXT */
  position: relative;
  overflow: hidden;
}

/* Section for stretching the dark background to the full width of the monitor (Full-bleed) */
.about {
  max-width: none;
  padding-inline: max(var(--space-md), (100vw - 1200px) / 2 + var(--space-md));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 600px;
}

/* Darker elegant gradient for the image box so it doesn't glow white */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2A1A10 0%, #1E120A 100%);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.placeholder-label {
  font-size: var(--fs-sm);
  color: rgba(245, 240, 232, 0.5); /* Softened placeholder text */
  letter-spacing: 0.05em;
  text-align: center;
  padding-inline: var(--space-md);
}

.img-ornament {
  font-size: 1.5rem;
  color: var(--c-gold);
  opacity: 0.5;
}

.about-badge {
  background: var(--c-gold);
  color: var(--c-bg-dark);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  min-width: 140px;
  z-index: 5;
  
  /* MOBILE FIX: Badge will not jump into the image, but will fit neatly below it */
  position: relative;
  margin: var(--space-md) auto 0 auto;
  display: block;
  width: max-content;
}

@media (min-width: 900px) {
  .about-badge {
    position: absolute;
    bottom: -var(--space-md);
    right: -1rem;
    left: auto;
    transform: none;
    margin: 0;
  }
}

.badge-number {
  display: block;
  font-family: var(--f-display);
  font-size: var(--fs-3xl);
  font-weight: 300;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.about-content { }

/* Recolor section title inside About */
.about-content .section-title {
  color: var(--c-bg);
}
.about-content .section-title em {
  color: var(--c-gold);
}

.about-text {
  color: rgba(245, 240, 232, 0.7); /* Light text with luxurious subtle opacity */
  margin-bottom: var(--space-md);
  font-size: var(--fs-md);
  line-height: 1.8;
}

.about-values {
  margin: var(--space-lg) 0 var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Recolor the benefits list to light ivory */
.about-values li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--c-bg); 
  font-weight: 400;
}

.value-icon {
  color: var(--c-gold);
  font-size: 0.6rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.about-img-file {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Intelligently crops the photo to fill the entire reserved box without distortion */
  border-radius: var(--radius-md); /* Preserves rounded corners by design */
  box-shadow: var(--shadow-card); /* Adds a premium shadow under the photo for depth */
}
/* --------------------------------------------------------------------------
   8. SERVICES
   -------------------------------------------------------------------------- */

.services {
  padding-block: var(--space-3xl);
  background: var(--c-bg-card);
  border-top: 1px solid rgba(44, 24, 16, 0.25);    /* DARK BORDER TOP */
  border-bottom: 1px solid rgba(44, 24, 16, 0.25); /* DARK BORDER BOTTOM */
}

/* Fix for properly stretching the background to the sides of the monitor */
.services {
  max-width: none;
  padding-inline: max(var(--space-md), (100vw - 1200px) / 2 + var(--space-md));
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.service-card {
  background: var(--c-bg);
  border: 1px solid rgba(44, 24, 16, 0.25); /* DARK BOX BORDER */
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  
  /* FLEXBOX: This ensures that elements can be pushed down */
  display: flex;
  flex-direction: column;
  
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--c-gold);
}

.service-card--featured {
  background: var(--c-bg-dark);
  border-color: var(--c-gold);
}
.service-card--featured .card-category,
.service-card--featured .card-name,
.service-card--featured .card-price,
.service-card--featured .card-features li { color: var(--c-bg); }
.service-card--featured .card-price strong { color: var(--c-gold); }
.service-card--featured .card-features li::before { color: var(--c-gold); }

.card-badge-top {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-gold);
  color: var(--c-bg-dark);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.card-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(44, 24, 16, 0.25); /* DARK BORDER IN BOX HEADER */
}
.service-card--featured .card-header { border-color: rgba(245, 240, 232, 0.15); }

.card-category {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.card-name {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--c-text);
  margin-bottom: 0.75rem;
}
.card-price {
  font-size: var(--fs-md);
  color: var(--c-text); 
}
.card-price strong {
  font-family: var(--f-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--c-text);
}

.card-features {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.card-features li {
  font-size: var(--fs-sm);
  color: var(--c-text); 
  padding-left: 1.2rem;
  position: relative;
}
.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-size: var(--fs-xs);
  top: 1px;
}

.card-btn { 
  width: 100%; 
  margin-top: auto; /* Sends the button to the very bottom of the box, regardless of the amount of text above it */
}

.services-note {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--c-text); /* DARK: the footnote below the price list will be more prominent */
  max-width: 600px;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   9. GALLERY
   -------------------------------------------------------------------------- */

.gallery {
  padding-block: var(--space-3xl);
  background-color: var(--c-bg);
  max-width: none;
  padding-inline: max(var(--space-md), (100vw - 1200px) / 2 + var(--space-md));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: var(--space-sm);
}

.gallery-item { aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; }
.gallery-item--tall { aspect-ratio: 1/2; grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 16/7; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E8DFD2 0%, #D4C9B8 60%, #C9B89E 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.gallery-item:hover .gallery-placeholder {
  background: linear-gradient(135deg, #DDD3C2 0%, #C9BAA5 60%, #B8A08A 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.gallery-tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  background: rgba(245, 240, 232, 0.7);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   10. BOOKING / CTA
   -------------------------------------------------------------------------- */

.booking {
  padding-block: var(--space-3xl);
  background: var(--c-bg-dark);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
}
.booking .section-title { color: var(--c-bg); }
.booking .section-title em { color: var(--c-gold); }

.booking-inner {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.booking-text {
  color: rgba(245, 240, 232, 0.65);
  font-size: var(--fs-md);
  margin-top: var(--space-lg);
  line-height: 1.8;
}

.booking-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-xl) 0;
  align-items: center;
}
.booking-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  min-width: 260px;
  text-align: left;
  transition: border-color var(--transition), background var(--transition);
}
.booking-badge:hover {
  border-color: var(--c-gold);
  background: rgba(201, 169, 110, 0.08);
}
.badge-icon { font-size: 1.5rem; flex-shrink: 0; }
.booking-badge strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-bg);
  letter-spacing: 0.05em;
}
.booking-badge span {
  font-size: var(--fs-xs);
  color: rgba(245, 240, 232, 0.5);
}

.booking-alt {
  margin-top: var(--space-md);
  font-size: var(--fs-sm);
  color: rgba(245, 240, 232, 0.45);
}
.booking-title {
  color: #FFFFFF; 
}
.phone-link {
  color: var(--c-gold);
  font-weight: 500;
  transition: opacity var(--transition);
}
.phone-link:hover { opacity: 0.8; }

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  background: #140C06;
  color: rgba(245, 240, 232, 0.6);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bg);
  margin-bottom: var(--space-sm);
}
.footer-tagline {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  color: rgba(245, 240, 232, 0.45);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 240, 232, 0.15);
  border-radius: 50%;
  color: rgba(245, 240, 232, 0.5);
  transition: border-color var(--transition), color var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--c-gold); color: var(--c-gold); }

.footer-heading {
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-bg);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(245, 240, 232, 0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--c-gold); }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: var(--fs-sm);
  color: rgba(245, 240, 232, 0.5);
}
.footer-hours li span:first-child { color: var(--c-bg); font-weight: 400; }

.footer-contact p {
  font-size: var(--fs-sm);
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.footer-contact a {
  color: rgba(245, 240, 232, 0.5);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--c-gold); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  align-items: flex-start;
}
.footer-copy { font-size: var(--fs-xs); color: rgba(245, 240, 232, 0.3); }
.footer-legal {
  display: flex;
  gap: var(--space-md);
}
.footer-legal a {
  font-size: var(--fs-xs);
  color: rgba(245, 240, 232, 0.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--c-gold); 
}
.footer-copy a:hover {
  color: var(--c-gold);
}
/* --------------------------------------------------------------------------
   12. RESPONSIVE — TABLET (640px+)
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  .booking-badges {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item--wide { grid-column: span 2; }
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE — DESKTOP (900px+)
   -------------------------------------------------------------------------- */

@media (min-width: 900px) {
  /* Hamburger hidden on desktop */
  .nav-toggle { display: none; }

  /* Nav lines visible horizontally */
  .nav-links {
    display: flex;
    position: static;
    background: transparent;
    flex-direction: row;
    gap: var(--space-lg);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: none;
  }

  /* Normal header behavior is restored on the desktop */
  .site-header {
    background: transparent !important;
    box-shadow: none !important;
  }
  .site-header.scrolled {
    background: rgba(245, 240, 232, 0.96) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08) !important;
  }
  /* Logo color on desktop */
  .logo { color: var(--c-bg); }
  .site-header.scrolled .logo { color: var(--c-text); }

  /* About two-column */
  .about-grid {
    grid-template-columns: 5fr 6fr;
    gap: var(--space-2xl);
  }
  .about-image {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 600px;
    margin-bottom: 0;
  }

  /* Services three-column */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  /* Gallery full grid */
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
  }
  .gallery-item        { aspect-ratio: unset; }
  .gallery-item--tall  { grid-row: span 2; }
  .gallery-item--wide  { grid-column: span 2; aspect-ratio: unset; }

  /* Footer four-column */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: var(--space-xl);
  }
}

/* --------------------------------------------------------------------------
   14. MOBILE NAV OVERLAY
   -------------------------------------------------------------------------- */

@media (max-width: 899px) {
  .nav-links {
    display: flex;             /* Always flex — animated here via visibility/opacity */
    position: fixed;
    top: 0;                    /* Starts from the top — header covers it from above */
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    z-index: 9998;             /* BELOW header (9999) — toggle remains visible */

    /* Hidden state — visibility+opacity = animateable, display:none is not */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity    0.3s ease,
                visibility 0.3s ease,
                transform  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    color: var(--c-bg) !important;
    font-family: var(--f-display);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: none;
    transition: color var(--transition);
  }
  .nav-links a:hover { color: var(--c-gold) !important; }

  /* Logo color — always light on dark mobile header */
  .logo { color: var(--c-bg) !important; }
}
/* --------------------------------------------------------------------------
   16. LANGUAGE SWITCHER
   -------------------------------------------------------------------------- */

.lang-switcher {
  display: flex;
  align-items: center;   /* Centers SK, | and EN on a common center axis */
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-left: var(--space-md);
  align-self: center;    /* Force centering of the entire menu on the desktop */
}

/* Style for SK / EN texts */
.lang-item {
  color: var(--c-text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  cursor: pointer;
  line-height: 1.2;      /* Exact height so that the text doesn't jump up */
}

a.lang-item:hover {
  color: var(--c-gold);
}

span.lang-item.active {
  color: var(--c-gold);
  font-weight: 600;
  cursor: default;
}

/* ADJUST FOR PIPE CHARACTER (|): This will ensure visibility and correct positioning */
.lang-divider {
  color: #FFFFFF;
  opacity: 0.4;          /* Slightly increased opacity to make it clearly visible */
  line-height: 1.2;
  font-size: 0.85rem;
  display: inline-block;
}

/* Scrolled header fuse */
.site-header.scrolled .lang-item:not(.active),
.site-header.scrolled .lang-divider {
  color: var(--c-text);
}

/* FIX FOR MOBILE VERSION (Up to 899px) */
@media (max-width: 899px) {
  .lang-switcher {
    margin-left: 0;
    margin-top: var(--space-md);
    font-size: var(--fs-md);
    align-self: center;  /* On mobile, center to the middle of the screen */
  }
  
  .lang-item {
    color: var(--c-bg);
  }
  .lang-divider {
    color: var(--c-bg);
    opacity: 0.4;
  }
}