/* ============================================================
   PERGOLA COTROCENI — Restaurant Website Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --cream: #FAF3E6;
  --ivory: #F5EDE0;
  --honey: #C49A3C;
  --honey-dark: #A67C2E;
  --indigo: #2D4A7A;
  --coral: #C4704D;
  --espresso: #2A2118;
  --text: #2A2118;
  --text-secondary: #7A6F63;
  --overlay: rgba(26, 18, 10, 0.55);
  --overlay-heavy: rgba(26, 18, 10, 0.65);
  --white: #FFFDF8;
  --divider: rgba(196, 154, 60, 0.3);
  --footer-bg: #1E180F;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
  --font-accent: 'Great Vibes', cursive;

  /* Spacing */
  --section-pad-y: clamp(56px, 10vw, 140px);
  --section-pad-x: clamp(24px, 5vw, 80px);
  --max-width: 1200px;
  --gap-lg: 80px;
  --gap-md: 48px;
  --gap-sm: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration: 0.4s;
  --duration-slow: 0.8s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

address {
  font-style: normal;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 999;
  padding: 12px 24px;
  background: var(--honey);
  color: var(--espresso);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ---------- 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;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  text-align: center;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-pad-y) 0;
}

.section--cream { background: var(--cream); }
.section--ivory { background: var(--ivory); }
.section--dark { background: var(--espresso); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--honey);
  margin-bottom: 16px;
}

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

.section-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  line-height: 1.15;
  color: var(--text);
  text-align: center;
  margin-bottom: var(--gap-md);
}

.section-heading--left { text-align: left; }
.section-heading--light { color: var(--white); }

.section-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 24px;
}

.section-body--left {
  text-align: left;
  margin: 0 0 24px;
  max-width: none;
}

.section-body--light { color: rgba(255, 253, 248, 0.7); }

/* ---------- Gold Rule ---------- */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--honey);
  margin: var(--gap-md) auto;
}

.gold-rule--left { margin: var(--gap-sm) 0; }
.gold-rule--center-light {
  width: 60px;
  height: 1px;
  background: var(--honey);
  margin: 24px auto;
}

/* ---------- Ornament ---------- */
.ornament {
  text-align: center;
  margin-bottom: 32px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: var(--honey);
  color: var(--espresso);
  padding: 16px 48px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  z-index: 1;
  transition: color var(--duration) var(--ease);
}

.btn-primary::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--honey-dark);
  transition: height 0.35s var(--ease);
  z-index: -1;
}

.btn-primary:hover::before {
  height: 100%;
}

.btn-primary--large {
  padding: 18px 56px;
  font-size: 0.875rem;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--honey);
  color: var(--honey);
  padding: 10px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}

.btn-outline:hover {
  background: var(--honey);
  color: var(--espresso);
}

.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(255, 253, 248, 0.6);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  padding-top: calc(20px + env(safe-area-inset-top, 0px));
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease), padding var(--duration) var(--ease);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--divider);
  padding: 12px 0;
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--white);
  transition: color var(--duration) var(--ease);
}

.navbar.scrolled .navbar-brand {
  color: var(--text);
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 253, 248, 0.85);
  transition: color var(--duration) var(--ease);
}

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

.navbar.scrolled .nav-link {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-link:hover {
  color: var(--text);
}

.navbar.scrolled .nav-link.btn-outline {
  border-color: var(--honey);
  color: var(--honey);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  margin-left: 16px;
  z-index: 101;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: background var(--duration) var(--ease);
}

.navbar.scrolled .hamburger span {
  background: var(--text);
}

/* ---------- Language Switcher ---------- */
.lang-switcher {
  position: relative;
  margin-left: auto;
}

.lang-current {
  background: none;
  border: 1px solid rgba(196, 154, 60, 0.4);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

.lang-current:hover {
  border-color: var(--honey);
}

.navbar.scrolled .lang-current {
  color: var(--text);
  border-color: rgba(42, 33, 24, 0.2);
}

.navbar.scrolled .lang-current:hover {
  border-color: var(--honey);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}

.lang-option:hover {
  background: var(--cream);
  color: var(--text);
}

.lang-option.active {
  color: var(--honey);
  font-weight: 400;
}

/* Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration) var(--ease), visibility var(--duration) var(--ease);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--espresso);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--white);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drawer-link {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--duration) var(--ease);
}

.drawer-link:hover { color: var(--honey); }

.drawer-cta {
  margin-top: 16px;
  color: var(--honey);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 40px;
  color: rgba(255, 253, 248, 0.4);
  font-size: 0.875rem;
}

.drawer-social {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.drawer-social a {
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  transition: color var(--duration) var(--ease);
}

.drawer-social a:hover { color: var(--honey); }

/* ---------- Drawer Language Switcher ---------- */
.drawer-lang {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.drawer-lang-option {
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: rgba(255, 253, 248, 0.5);
  border: 1px solid rgba(255, 253, 248, 0.15);
  border-radius: 3px;
  background: none;
  cursor: pointer;
  transition: color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.drawer-lang-option:hover {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.4);
}

.drawer-lang-option.active {
  color: var(--honey);
  border-color: rgba(196, 154, 60, 0.5);
}

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

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: auto 250%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 18, 10, 0.25) 0%,
    rgba(26, 18, 10, 0.5) 50%,
    rgba(26, 18, 10, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero-location {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  opacity: 0.8;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  margin-top: 4px;
  opacity: 0.9;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--honey);
  margin: 32px auto;
}

.hero-status {
  position: absolute;
  bottom: 130px;
  right: 2rem;
  z-index: 3;
  color: var(--white);
  opacity: 0.75;
  text-align: right;
  max-width: 90vw;
}

/* Line breaks visible only on portrait mobile */
.mobile-br {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .mobile-br {
    display: inline;
  }
}

.hero-status__main {
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin: 0 0 -0.15rem;
}

.hero-status__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin: 0.15rem 0 0;
  opacity: 0.85;
}

.hero-cta {
  margin-top: 0;
}

/* Hero animation */
.reveal-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

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

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0;
}

.hero-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
  padding: 0;
  position: relative;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}

.hero-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.3);
  transform: translate(-50%, -50%);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.hero-dot.active::before {
  background: var(--honey);
  transform: translate(-50%, -50%) scale(1.3);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 253, 248, 0.5);
  animation: bounce 2s infinite;
}

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

/* ============================================================
   SPACES GALLERY
   ============================================================ */
.spaces-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: var(--gap-md);
}

.space-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.space-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.6s var(--ease);
}

.space-card:hover img {
  transform: scale(1.08);
}

.space-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.space-card:hover .space-overlay {
  opacity: 1;
}

.space-overlay span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
}

.space-overlay span::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--honey);
  margin: 12px auto 0;
}

/* ============================================================
   CONCEPT STRIP
   ============================================================ */
.concept-strip {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.concept-bg {
  position: absolute;
  inset: 0;
  background-size: auto 250%;
  background-position: center;
  background-repeat: no-repeat;
}

.concept-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 18, 10, 0.8) 0%,
    rgba(26, 18, 10, 0.5) 50%,
    rgba(26, 18, 10, 0.15) 100%
  );
}

.concept-content {
  position: relative;
  z-index: 1;
  padding: var(--section-pad-y) var(--section-pad-x);
  max-width: 560px;
}

.concept-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

.concept-heading em {
  font-style: italic;
}

.concept-body {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 253, 248, 0.75);
  margin-bottom: 32px;
}

/* ============================================================
   MENU TEASER
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.menu-image {
  overflow: hidden;
  border-radius: 4px;
}

.menu-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 40%;
}

.menu-categories {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ============================================================
   VIRTUAL TOUR
   ============================================================ */
.tour-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: var(--gap-md) auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1a;
}

.tour-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tour-hint {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 253, 248, 0.4);
  margin-top: 16px;
}

/* ============================================================
   ATMOSPHERE GALLERY
   ============================================================ */
.gallery-section {
  padding: 0;
  overflow: hidden;
}

.gallery-strip {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  gap: 0;
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 40%;
}

/* ============================================================
   RESERVATION CTA
   ============================================================ */
.reservation-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reservation-bg {
  position: absolute;
  inset: 0;
  background-size: auto 130%;
  background-position: center;
  background-repeat: no-repeat;
}

.reservation-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-heavy);
}

.reservation-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--section-pad-y) var(--section-pad-x);
}

.reservation-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.reservation-subtitle {
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 253, 248, 0.7);
  max-width: 520px;
  margin: 0 auto 24px;
}

.reservation-phone {
  margin-top: 20px;
  font-size: 0.875rem;
  color: rgba(255, 253, 248, 0.5);
}

.reservation-phone a {
  color: rgba(255, 253, 248, 0.7);
  transition: color var(--duration) var(--ease);
}

.reservation-phone a:hover {
  color: var(--honey);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
}

.contact-address {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-hours h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-hours p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-details {
  margin-top: 8px;
}

.contact-details a {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  transition: color var(--duration) var(--ease);
}

.contact-details a:hover {
  color: var(--honey);
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--honey);
  transition: color var(--duration) var(--ease);
}

.social-link:hover {
  color: var(--honey-dark);
}

.social-link svg {
  display: block;
  pointer-events: none;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  border-radius: 4px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: var(--section-pad-y) 0;
}

.newsletter-form {
  max-width: 500px;
  margin: 32px auto 0;
}

.newsletter-form-fields {
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(196, 154, 60, 0.4);
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color var(--duration) var(--ease);
}

.newsletter-input::placeholder {
  color: rgba(255, 253, 248, 0.4);
}

.newsletter-input:focus {
  border-color: var(--honey);
}

.newsletter-btn {
  padding: 14px 32px;
  background: var(--honey);
  color: var(--espresso);
  border: 1px solid var(--honey);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}

.newsletter-btn:hover {
  background: var(--honey-dark);
}

.newsletter-thanks-msg {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
  text-align: center;
  padding: 12px 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  padding: 80px 0 0;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--honey);
  margin-bottom: 8px;
}

.footer-location {
  font-size: 0.8125rem;
  color: rgba(255, 253, 248, 0.35);
}

.footer-links h3,
.footer-connect h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 253, 248, 0.6);
  margin-bottom: 16px;
}

.footer-links a,
.footer-connect a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 253, 248, 0.4);
  line-height: 2;
  transition: color var(--duration) var(--ease);
}

.footer-links a:hover,
.footer-connect a:hover {
  color: var(--honey);
}

.footer-bottom {
  border-top: 1px solid rgba(196, 154, 60, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 253, 248, 0.25);
}

/* ============================================================
   RESERVATION OVERLAY MODAL
   ============================================================ */
.reservation-overlay-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(26, 18, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reservation-overlay-modal.open {
  opacity: 1;
  visibility: visible;
}

.reservation-modal-card {
  display: flex;
  flex-direction: column;
  width: 530px;
  max-width: 95vw;
  height: 85vh;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.reservation-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(42, 33, 24, 0.08);
  background: var(--white);
  flex-shrink: 0;
}

.bk-header-left {
  display: flex;
  align-items: center;
  min-width: 80px; /* mirrors close button width so dots stay centered */
}

.reservation-modal-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--text);
}

/* Back button in modal header (screen 2) */
.bk-btn-back-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--divider);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--duration) var(--ease),
              color var(--duration) var(--ease);
  padding: 0;
}

.bk-btn-back-header:hover {
  border-color: var(--espresso);
  color: var(--espresso);
}

.reservation-modal-close {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1;
  padding: 4px 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}

.reservation-modal-close:hover {
  color: var(--text);
}

/* .reservation-modal-iframe removed — replaced by native booking widget (booking.css) */

@media (max-width: 600px) {
  .reservation-modal-card {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;     /* fallback */
    height: 100dvh;    /* iOS Safari 15.4+: dynamic viewport height, excludes browser chrome */
    max-height: 100vh; /* fallback */
    max-height: 100dvh;
    border-radius: 0;
  }
}

/* ============================================================
   MENU OVERLAY MODAL
   ============================================================ */
.menu-overlay-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(26, 18, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay-modal.open {
  opacity: 1;
  visibility: visible;
}

.menu-modal-card {
  display: flex;
  flex-direction: column;
  width: 900px;
  max-width: 95vw;
  height: 90vh;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.menu-modal-header {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(42, 33, 24, 0.08);
  background: var(--white);
  flex-shrink: 0;
  gap: 16px;
}

.menu-modal-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--text);
  margin-right: auto;
}

.menu-modal-download {
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease);
  display: flex;
  align-items: center;
}

.menu-modal-download:hover {
  color: var(--honey);
}

.menu-modal-close {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1;
  padding: 4px 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}

.menu-modal-close:hover {
  color: var(--text);
}

.menu-modal-iframe {
  flex: 1;
  width: 100%;
  border: none;
}

@media (max-width: 600px) {
  .menu-modal-card {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    border-radius: 0;
  }
}

/* ============================================================
   MOBILE FIXED CTA
   ============================================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 24px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: var(--white);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.mobile-cta.visible {
  transform: translateY(0);
}

.mobile-cta-btn {
  display: block;
  text-align: center;
  background: var(--honey);
  color: var(--espresso);
  padding: 14px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}

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

.reveal-stagger .reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger.visible .reveal-child { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible .reveal-child:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible .reveal-child:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible .reveal-child:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.visible .reveal-child:nth-child(4) { transition-delay: 0.45s; }

/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .spaces-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .gallery-item {
    flex: 0 0 320px;
  }

  .gallery-item img {
    height: 360px;
  }

  .newsletter-form-fields {
    flex-direction: row;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .navbar-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .lang-switcher {
    margin-left: 16px;
  }

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

  .gallery-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    overflow: visible;
  }

  .gallery-item {
    flex: unset;
  }

  .gallery-item img {
    height: 340px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE BOTTOM CTA
   ============================================================ */
@media (max-width: 1023px) {
  .mobile-cta {
    display: block;
  }

  /* Add bottom padding to main for mobile CTA */
  .footer {
    padding-bottom: 72px;
  }
}

@media (max-width: 767px) {
  .newsletter-form-fields {
    flex-direction: column;
    gap: 0;
  }

  .newsletter-input {
    border-bottom: none;
  }

  .concept-strip {
    min-height: 400px;
  }

  .tour-wrapper {
    aspect-ratio: 4 / 3;
  }
}

/* Mobile hero layout: portrait phones OR landscape phones */
@media (max-width: 767px), (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 100svh;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 70px;
    padding-bottom: 20px;
  }
  
  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-dots {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-bottom: 0.5rem;
  }

  .hero-status {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    width: 100%;
    max-width: none;
    text-align: right;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-status__main {
    font-size: 0.7rem;
    line-height: 1.4;
  }
  
  .hero-status__sub {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .scroll-indicator {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger .reveal-child {
    opacity: 1;
    transform: none;
  }

  .reveal-hero {
    opacity: 1;
    transform: none;
  }

  .hero-slide {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- Focus States ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 4px;
}

/* Focus on dark backgrounds — use light outline */
.hero a:focus-visible,
.hero button:focus-visible,
.concept-strip a:focus-visible,
.reservation-cta a:focus-visible,
.section--dark a:focus-visible,
.section--dark button:focus-visible,
.section--dark input:focus-visible,
.drawer a:focus-visible,
.drawer button:focus-visible,
.footer a:focus-visible {
  outline-color: var(--white);
}

.hamburger:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.navbar.scrolled .hamburger:focus-visible {
  outline-color: var(--honey);
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .navbar,
  .hamburger,
  .drawer,
  .drawer-overlay,
  .mobile-cta,
  .scroll-indicator,
  .hero-dots,
  .newsletter-section,
  .btn-primary,
  .btn-outline,
  .btn-outline-light,
  .reservation-overlay-modal,
  .menu-overlay-modal {
    display: none !important;
  }

  .hero {
    height: auto;
    min-height: 0;
    page-break-after: always;
  }

  .hero-slide {
    display: none;
  }

  .hero-slide.active {
    display: block;
    position: relative;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    color: #000 !important;
  }

  .section {
    padding: 32px 0;
  }

  .reveal,
  .reveal-stagger .reveal-child {
    opacity: 1 !important;
    transform: none !important;
  }

  img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }

  a[href^="#"]::after,
  a[href^="tel"]::after {
    content: '';
  }
}

/* ── Menu section — PDF secondary link ────────────────────── */
.menu-pdf-link {
  display: block;
  width: fit-content;
  margin-top: 0.6rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C49A3C;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 154, 60, 0.4);
  transition: border-color 0.2s;
}
.menu-pdf-link:hover { border-bottom-color: #C49A3C; }

/* Space cards as links */
a.space-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ── FAQ section ───────────────────────────────────────────── */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.faq-list details {
  border-bottom: 1px solid rgba(196, 154, 60, 0.2);
}

.faq-list details:first-child {
  border-top: 1px solid rgba(196, 154, 60, 0.2);
}

.faq-list summary {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #2D4A7A;
  padding: 1.1rem 1.8rem 1.1rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 300;
  color: #C49A3C;
  transition: transform 0.2s;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list summary:hover { color: #C49A3C; }

.faq-list .faq-answer {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  padding: 0 1.8rem 1.1rem 0;
}
