@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600&family=Caveat:wght@400;600;700&display=swap');

:root {
  --olive: #5C6B3C;
  --olive-dark: #3D4A28;
  --olive-light: #8A9A5B;
  --terracotta: #C67B5C;
  --terracotta-dark: #A85D3F;
  --sand: #F5E6D3;
  --sand-light: #FDF8F3;
  --cream: #FFFBF5;
  --earth: #8B6F47;
  --earth-dark: #6B5535;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --white: #FFFFFF;
  --gold: #D4A853;
  --sage: #B2C9A3;
  --sage-light: #D4E4CB;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(44,44,44,0.08);
  --shadow-lg: 0 12px 48px rgba(44,44,44,0.12);
  --shadow-sm: 0 2px 8px rgba(44,44,44,0.06);
  --shadow-md: 0 6px 24px rgba(44,44,44,0.1);
  --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--charcoal); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.script-font { font-family: 'Caveat', cursive; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,251,245,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(92,107,60,0.1);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(255,251,245,0.97); box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--olive-dark); letter-spacing: -0.5px; flex-shrink: 0;
}
.nav-logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(92,107,60,0.18); }
.nav-logo span { color: var(--terracotta); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--charcoal-light);
  position: relative; transition: var(--transition); letter-spacing: 0.3px; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--terracotta); transition: var(--transition); border-radius: 1px;
}
.nav-links a:hover { color: var(--olive-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--olive-dark); font-weight: 600; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: block;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  padding-top: 10px;
  list-style: none; z-index: 200;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-dropdown-menu.open {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu-inner {
  background: var(--cream); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px; box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px 0; overflow: hidden;
}
.nav-dropdown-menu li a {
  display: block; padding: 10px 20px; color: var(--charcoal);
  font-size: 0.9rem; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu li a::after { display: none; }
.nav-dropdown-menu li a:hover { color: var(--olive-dark); background: rgba(92,107,60,0.06); }

.nav-auth { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-btn {
  display: inline-flex; align-items: center; padding: 7px 18px;
  border-radius: 50px; font-size: 0.85rem; font-weight: 600; transition: var(--transition); white-space: nowrap;
}
.nav-btn-outline { border: 1.5px solid var(--olive); color: var(--olive); background: transparent; }
.nav-btn-outline:hover { background: var(--olive); color: var(--white); }
.nav-btn-solid { background: var(--terracotta); color: var(--white); border: 1.5px solid var(--terracotta); box-shadow: 0 2px 8px rgba(198,123,92,0.3); }
.nav-btn-solid:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); transform: translateY(-1px); }
.nav-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(92,107,60,0.2); }
.nav-avatar-initial {
  width: 34px; height: 34px; border-radius: 50%; background: var(--terracotta); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown arrow — desktop only for visual hint */
.nav-dropdown-toggle::after { content: ' ›'; font-size: 0.75em; opacity: 0.5; }

/* Mobile-only auth row — hidden on desktop */
.nav-auth-mobile { display: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 40%, var(--olive-light) 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,83,0.15), transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(198,123,92,0.1), transparent 50%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 120px 24px 80px; max-width: 800px; }
.hero-logo { width: 82px; height: 82px; margin: 0 auto 24px; border-radius: 24px; object-fit: cover; border: 4px solid rgba(255,255,255,0.25); box-shadow: 0 18px 40px rgba(15,23,11,0.18); }
.hero-badge {
  display: inline-block; padding: 8px 24px; border-radius: 50px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  color: var(--sand); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero h1 { font-size: clamp(2.8rem,6vw,5rem); color: var(--white); font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 .accent { color: var(--gold); }
.hero-sub { font-family: 'Caveat', cursive; font-size: clamp(1.3rem,3vw,1.8rem); color: var(--sage-light); margin-bottom: 40px; }
.hero p.desc { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 44px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── HERO THIRDS ─── */
.hero-thirds { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr 1fr; width: 100%; min-height: 100vh; align-items: stretch; }
.hero-center { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 120px 24px 80px; text-align: center; }
.hero-side { display: flex; flex-direction: column; align-items: stretch; justify-content: center; padding: 40px 16px; overflow: hidden; }

/* Side panel carousel */
.hsp-carousel { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 12px; }
.hsp-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.hsp-slide.active { opacity: 1; }
.hsp-slide img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.hsp-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); color: #fff; font-size: 0.85rem; border-radius: 0 0 12px 12px; }
.hsp-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); border: none; color: #fff; font-size: 1.4rem; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; z-index: 4; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.hsp-arrow:hover { background: rgba(255,255,255,0.35); }
.hsp-prev { left: 8px; }
.hsp-next { right: 8px; }
.hsp-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 4; }
.hsp-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s; }
.hsp-dot.active { background: #fff; }

/* Side panel gallery */
.hsp-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
.hsp-gallery-item { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 1; }
.hsp-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.hsp-gallery-item:hover img { transform: scale(1.05); }
.hsp-gallery-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 6px 8px; font-size: 0.75rem; color: #fff; background: linear-gradient(to top, rgba(0,0,0,0.55), transparent); }

.hsp-empty { display: flex; align-items: center; justify-content: center; min-height: 300px; opacity: 0.5; font-size: 0.9rem; color: rgba(255,255,255,0.8); text-align: center; padding: 24px; border: 2px dashed rgba(255,255,255,0.2); border-radius: 12px; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-size: 0.92rem; font-weight: 600; transition: var(--transition); cursor: pointer; border: none; letter-spacing: 0.3px; font-family: inherit; }
.btn-primary { background: var(--terracotta); color: var(--white); box-shadow: 0 4px 16px rgba(198,123,92,0.35); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,123,92,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-dark { background: var(--olive); color: var(--white); box-shadow: 0 4px 16px rgba(92,107,60,0.3); }
.btn-dark:hover { background: var(--olive-dark); transform: translateY(-2px); }
.btn-sm { padding: 9px 22px; font-size: 0.85rem; }

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-alt { background: var(--sand-light); }
.section-dark { background: var(--olive-dark); color: var(--white); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .tag { font-family: 'Caveat', cursive; font-size: 1.2rem; color: var(--terracotta); margin-bottom: 12px; display: block; }
.section-dark .section-header .tag { color: var(--gold); }
.section-header h2 { font-size: clamp(2rem,4vw,2.8rem); color: var(--olive-dark); margin-bottom: 16px; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { font-size: 1.05rem; color: var(--charcoal-light); max-width: 600px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.75); }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--terracotta), var(--gold)); margin: 20px auto 0; border-radius: 2px; }

/* ─── FEATURES ROW ─── */
.features-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); margin-top: -48px; position: relative; z-index: 10;
}
.feature-item { padding: 40px 32px; text-align: center; border-right: 1px solid rgba(92,107,60,0.08); transition: var(--transition); }
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--sand-light); }
.feature-item .icon { font-size: 2rem; margin-bottom: 14px; }
.feature-item h3 { font-size: 1.05rem; color: var(--olive-dark); margin-bottom: 8px; }
.feature-item p { font-size: 0.85rem; color: var(--charcoal-light); }
a.feature-link { display: block; text-decoration: none; color: inherit; }

/* ─── CARDS ─── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 32px; }
.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(92,107,60,0.06); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 220px; background: linear-gradient(135deg, var(--sage-light), var(--sage)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img .placeholder-icon { font-size: 3rem; opacity: 0.5; }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--olive-dark); }
.card-body .subtitle { font-family: 'Caveat', cursive; font-size: 1.1rem; color: var(--terracotta); margin-bottom: 14px; }
.card-body p { font-size: 0.92rem; color: var(--charcoal-light); line-height: 1.7; }
.card-meta { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.card-meta span { font-size: 0.8rem; padding: 4px 12px; border-radius: 50px; background: var(--sand); color: var(--earth); font-weight: 500; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--terracotta); font-size: 0.9rem; font-weight: 600; transition: gap 0.2s; }
.card-link:hover { gap: 10px; }

/* ─── WORKSHOP CARDS ─── */
.workshop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 32px; }
.workshop-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(92,107,60,0.06); position: relative; overflow: hidden; }
.workshop-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--olive), var(--terracotta)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.workshop-card:hover::before { transform: scaleX(1); }
.workshop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.workshop-icon { width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px; background: linear-gradient(135deg, var(--sage-light), var(--sage)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.workshop-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--olive-dark); }
.workshop-card p { font-size: 0.9rem; color: var(--charcoal-light); }

/* ─── TEAM / FARMER PROFILES ─── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 40px; }
.team-card { display: flex; gap: 24px; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(92,107,60,0.06); transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--sage-light), var(--sage)); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--olive); border: 3px solid var(--white); box-shadow: var(--shadow); overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-info h3 { font-size: 1.3rem; color: var(--olive-dark); margin-bottom: 4px; }
.team-info .role { font-family: 'Caveat', cursive; font-size: 1.1rem; color: var(--terracotta); margin-bottom: 10px; }
.team-info p { font-size: 0.9rem; color: var(--charcoal-light); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 32px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-icon { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px; background: linear-gradient(135deg, var(--sage-light), var(--sage)); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--olive-dark); }
.contact-card .subtitle { font-size: 0.82rem; color: var(--charcoal-light); margin-bottom: 12px; }
.contact-card a { color: var(--terracotta); font-weight: 500; transition: var(--transition); font-size: 0.95rem; }
.contact-card a:hover { color: var(--terracotta-dark); }
.contact-map-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; background: var(--olive); color: #fff; border-radius: 6px; padding: 8px 16px; font-size: 0.85rem; font-weight: 600; transition: background 0.2s; }
.contact-map-btn:hover { background: var(--olive-dark); color: #fff; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid rgba(92,107,60,0.1); box-shadow: var(--shadow); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--olive-dark); transition: color 0.2s; }
.faq-question:hover, .faq-question[aria-expanded="true"] { color: var(--terracotta); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--terracotta); transition: transform 0.3s ease; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 28px 22px; margin: 0; color: var(--charcoal-light); line-height: 1.8; font-size: 0.97rem; }

/* ─── VALUES / DARK SECTION ─── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 32px; }
.value-item { text-align: center; padding: 32px 20px; }
.value-icon { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px; background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; border: 1px solid rgba(255,255,255,0.15); }
.value-item h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-item p { font-size: 0.88rem; opacity: 0.8; }

/* ─── PAGE HERO ─── */
.page-hero { padding: 140px 0 80px; text-align: center; background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%); color: var(--white); position: relative; }
.page-hero h1 { font-size: clamp(2.2rem,5vw,3.2rem); margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; opacity: 0.8; max-width: 560px; margin: 0 auto; }

/* ─── CTA BANNER ─── */
.cta-section { padding: 80px 0; text-align: center; }
.cta-tag { font-family: 'Caveat', cursive; font-size: 1.4rem; color: var(--terracotta); display: block; margin-bottom: 12px; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.4rem); margin-bottom: 16px; color: var(--olive-dark); }
.cta-desc { max-width: 500px; margin: 0 auto 32px; color: var(--charcoal-light); }

/* ─── GALLERY ─── */
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 12px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ─── CAROUSEL BLOCK ─── */
.carousel-block { position: relative; overflow: hidden; border-radius: var(--radius); }
.carousel-slides { display: flex; transition: transform 0.5s ease; }
.carousel-slide { min-width: 100%; }
.carousel-slide img { width: 100%; height: 480px; object-fit: cover; }
.carousel-caption { padding: 20px; text-align: center; }
.carousel-caption h3 { color: var(--olive-dark); }
.carousel-caption p { color: var(--charcoal-light); }
.carousel-controls { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.carousel-btn { background: var(--olive); color: #fff; border: none; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; font-size: 1.1rem; transition: background 0.2s; }
.carousel-btn:hover { background: var(--olive-dark); }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(92,107,60,0.3); cursor: pointer; transition: background 0.2s; }
.carousel-dot.active { background: var(--olive); }

/* ─── BOOKING FORM ─── */
.booking-form-wrap { max-width: 680px; margin: 0 auto; background: var(--white); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow); }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; min-width: 0; }
.form-field label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--olive-dark); }
.form-field input:not([type=checkbox]):not([type=radio]), .form-field select, .form-field textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(92,107,60,0.2);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit;
  background: var(--white); color: var(--charcoal); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:not([type=checkbox]):not([type=radio]):focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--olive); box-shadow: 0 0 0 3px rgba(92,107,60,0.1); }
.check-label input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--olive); cursor: pointer; margin: 0; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-fieldset .form-row { grid-template-columns: 1fr 1fr; }
/* contact-fieldset is now a div — no UA fieldset constraints */
.contact-fieldset { min-width: 0; width: 100%; box-sizing: border-box; }
.contact-legend { font-weight:700; font-size:0.88rem; text-transform:uppercase; letter-spacing:0.05em; color:var(--olive-dark); margin-bottom:12px; padding:0 2px; }
input.date-unavailable { background: #f0f0f0 !important; color: #aaa !important; border-color: #ddd !important; }
input.date-unavailable:focus { box-shadow: none !important; border-color: #ddd !important; }
.date-closed-note { font-size: 0.78rem; color: #999; margin-top: 4px; display: none; }
.date-closed-note.show { display: block; }
.form-submit { width: 100%; padding: 15px; background: var(--terracotta); color: var(--white); border: none; border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--transition); margin-top: 8px; }
.form-submit:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,123,92,0.4); }

/* ─── PROFILE BLOCKS ─── */
.profile-section { padding: 72px 0; }
.profile-card { display: grid; gap: 64px; align-items: center; }
.profile-left  { grid-template-columns: 260px 1fr; }
.profile-right { grid-template-columns: 1fr 260px; }
.profile-top   { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 32px; }
.profile-sidebar { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.profile-photo { width: 240px; height: 240px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 40px rgba(92,107,60,0.25); border: 4px solid rgba(92,107,60,0.15); flex-shrink: 0; }
.profile-photo-placeholder { width: 240px; height: 240px; border-radius: 50%; background: linear-gradient(135deg, var(--sand-light), var(--sand)); display: flex; align-items: center; justify-content: center; font-size: 5rem; flex-shrink: 0; box-shadow: 0 8px 40px rgba(92,107,60,0.15); border: 4px solid rgba(92,107,60,0.1); }
.profile-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--olive-dark); margin: 0; }
.profile-role { color: var(--terracotta); font-weight: 700; font-size: 0.88rem; margin: 0; letter-spacing: 0.08em; text-transform: uppercase; }
.profile-divider { width: 40px; height: 3px; background: linear-gradient(90deg, var(--olive), var(--gold)); border-radius: 2px; margin-top: 4px; }
.profile-body { font-size: 1.05rem; line-height: 1.9; color: var(--charcoal); }
.profile-body p { margin-bottom: 1.2em; }
.profile-body p:last-child { margin-bottom: 0; }
.profile-top .profile-body { max-width: 640px; }
@media (max-width: 768px) {
  .profile-section { padding: 48px 0; }
  .profile-left, .profile-right { grid-template-columns: 1fr; gap: 36px; }
  .profile-right .profile-sidebar { order: -1; }
}

/* ─── IMAGE BLOCK ─── */
.image-block { text-align: center; }
.image-block img { border-radius: var(--radius); margin: 0 auto; }
.image-block.full-width img { max-width: 100%; }
.image-caption { margin-top: 12px; font-size: 0.88rem; color: var(--charcoal-light); font-style: italic; }

/* ─── TWO COLUMNS ─── */
.columns-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.columns-block.ratio-1-2 { grid-template-columns: 1fr 2fr; }
.columns-block.ratio-2-1 { grid-template-columns: 2fr 1fr; }

/* ─── DIVIDER ─── */
.block-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(92,107,60,0.2), transparent); margin: 40px 0; }

/* ─── AUTH ─── */
.auth-split { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-split > * { min-width: 0; }
.auth-panel-left { background: var(--olive-dark); display: flex; align-items: stretch; position: relative; overflow: hidden; }
.auth-panel-left::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 80%, rgba(198,123,92,0.15), transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(212,168,83,0.1), transparent 60%); }
.auth-panel-inner { position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 48px; width: 100%; }
.auth-logo { display: inline-flex; align-items: center; gap: 12px; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); }
.auth-panel-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 48px 0; }
.auth-panel-body h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.auth-panel-body p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; max-width: 340px; }
.auth-perks { list-style: none; margin-top: 24px; display: grid; gap: 10px; }
.auth-perks li { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.auth-panel-right { background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 80px 48px; }
.auth-form-wrap { width: 100%; max-width: 400px; }
.auth-form-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--olive-dark); margin-bottom: 6px; }
.auth-form-sub { font-size: 0.9rem; color: var(--charcoal-light); margin-bottom: 32px; }
.auth-form-sub a { color: var(--terracotta); font-weight: 600; }
.auth-error { padding: 12px 16px; background: #ffebee; color: #c62828; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 20px; border-left: 3px solid #c62828; }
.auth-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.auth-field label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--olive-dark); }
.auth-field input:not([type=checkbox]):not([type=radio]) { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(92,107,60,0.2); border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit; background: var(--white); color: var(--charcoal); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.auth-field input:not([type=checkbox]):not([type=radio]):focus { border-color: var(--olive); box-shadow: 0 0 0 3px rgba(92,107,60,0.1); }
.auth-check-label input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--olive); cursor: pointer; margin: 0; }
.auth-submit { width: 100%; padding: 14px; background: var(--terracotta); color: var(--white); border: none; border-radius: 50px; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 16px rgba(198,123,92,0.35); margin-top: 8px; }
.auth-submit:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

/* ─── MESSAGES ─── */
.messages { position: fixed; top: 80px; right: 20px; z-index: 9000; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.message { padding: 14px 20px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; box-shadow: var(--shadow-lg); animation: slideIn 0.3s ease; }
.message.success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #2e7d32; }
.message.error { background: #ffebee; color: #c62828; border-left: 4px solid #c62828; }
.message.info { background: #e3f2fd; color: #1565c0; border-left: 4px solid #1565c0; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ─── FOOTER ─── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; }
.footer p { font-size: 0.88rem; line-height: 1.7; }
.footer-links a { display: block; font-size: 0.88rem; padding: 6px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--terracotta); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--terracotta); color: var(--white); }

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── PROFILE ─── */
.profile-hero { background: linear-gradient(135deg, var(--olive-dark), var(--olive)); padding: 56px 0 48px; margin-top: 72px; }
.profile-header { display: flex; align-items: center; gap: 32px; }
.profile-avatar { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(255,255,255,0.3); flex-shrink: 0; overflow: hidden; background: var(--terracotta); display: flex; align-items: center; justify-content: center; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-avatar-initial { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: #fff; }
.profile-name { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 8px; }
.profile-email { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin-bottom: 16px; }
.profile-body { padding: 56px 0; }
.booking-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 16px; overflow: hidden; border-left: 5px solid var(--sage); }
.booking-card.pending { border-left-color: var(--gold); }
.booking-card.approved { border-left-color: var(--olive); }
.booking-card.denied { border-left-color: var(--terracotta); }
.booking-card-inner { padding: 20px 24px; }
.booking-card h3 { font-size: 1.05rem; color: var(--charcoal); margin-bottom: 6px; }
.booking-status { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; }
.status-pending { background: rgba(212,168,83,0.15); color: #a37c1e; }
.status-approved { background: rgba(92,107,60,0.12); color: var(--olive-dark); }
.status-denied { background: rgba(198,123,92,0.12); color: var(--terracotta-dark); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  /* Stack to single column; hide side panels by default */
  .hero-thirds { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .hero-center { padding: 100px 20px 60px; }
  /* If the center has no visible content, reveal the left side as fallback */
  .hero-thirds:has(.hero-center:empty) .hero-side:first-child { display: flex; }
}
@media (max-width: 768px) {
  /* Nav panel — slide down via max-height */
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--cream); gap: 4px; z-index: 999;
    max-height: 0; overflow: hidden; padding: 0 20px;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease, box-shadow 0.3s;
  }
  .nav-links.open {
    max-height: calc(100vh - 72px); overflow-y: auto;
    padding: 20px 20px 28px; box-shadow: var(--shadow-lg);
  }
  .nav-links > li > a { padding: 10px 4px; display: block; font-size: 0.95rem; }
  .nav-dropdown-toggle::after { content: ' ▾'; transition: transform 0.25s; display: inline-block; }
  .nav-dropdown:has(.nav-dropdown-menu.open) .nav-dropdown-toggle::after { transform: rotate(180deg); }

  /* Mobile dropdowns — accordion via max-height */
  .nav-dropdown-menu {
    position: static; padding-top: 0;
    opacity: 1; pointer-events: auto; visibility: visible;
    transform: none; display: block;
    max-height: 0; overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .nav-dropdown-menu.open { max-height: 400px; }
  .nav-dropdown-menu-inner {
    box-shadow: none;
    border: none;
    border-radius: 8px;
    background: rgba(92,107,60,0.06);
    padding: 4px 0;
    margin: 4px 0 4px 12px;
    min-width: 0;
  }
  .nav-dropdown-menu li a {
    padding: 9px 16px;
    font-size: 0.88rem;
    color: var(--charcoal-light);
  }

  /* Mobile auth row */
  .nav-auth-mobile {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.08);
    list-style: none;
  }
  .nav-auth-mobile .nav-btn { font-size: 0.83rem; padding: 8px 16px; }

  .hamburger { display: flex; }
  .nav-auth { display: none; }

  /* Layout */
  .features-row { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(92,107,60,0.08); }
  .feature-item:last-child { border-bottom: none; }
  .columns-block, .columns-block.ratio-1-2, .columns-block.ratio-2-1 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .auth-split { grid-template-columns: 1fr; }
  .auth-panel-left { min-height: 200px; }
  .auth-panel-right { padding: 48px 24px; }
  .profile-header { flex-direction: column; text-align: center; }
  /* form-row overrides — minmax(0,1fr) prevents auto min-content track inflation */
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .form-row-2 { grid-template-columns: minmax(0, 1fr); }
  .contact-fieldset .form-row { grid-template-columns: minmax(0, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* Reduce booking form padding on small phones so phone-row widgets have room */
@media (max-width: 640px) {
  .booking-form-wrap { padding: 32px 24px; }
}

/* ─── Menu Block ─────────────────────────────────────────────────────────── */
.menu-block { background: var(--cream); }
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
  border-bottom: 2px solid rgba(92,107,60,0.12);
  padding-bottom: 0;
}
.menu-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal-light);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  border-radius: 4px 4px 0 0;
}
.menu-tab:hover { color: var(--olive); }
.menu-tab.active { color: var(--olive); border-bottom-color: var(--olive); }

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.menu-item-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.menu-item-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.menu-item-img { height: 180px; overflow: hidden; }
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-body { padding: 16px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-item-name { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin: 0; }
.menu-item-price { font-size: 0.78rem; font-weight: 700; color: var(--terracotta); white-space: nowrap; background: rgba(198,123,92,0.1); border: 1.5px solid rgba(198,123,92,0.25); border-radius: 20px; padding: 2px 10px; flex-shrink: 0; align-self: center; }
.menu-item-desc { font-size: 0.88rem; color: var(--charcoal-light); margin: 0; line-height: 1.5; }
.menu-item-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.menu-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: capitalize;
  background: rgba(92,107,60,0.1);
  color: var(--olive);
}
.menu-tag-vegan { background: rgba(92,107,60,0.12); color: #4a7c3f; }
.menu-tag-vegetarian { background: rgba(120,180,60,0.12); color: #5a8a30; }
.menu-tag-gluten-free { background: rgba(230,160,40,0.12); color: #a07020; }
.menu-tag-spicy { background: rgba(200,60,40,0.1); color: #c03020; }
.menu-tag-contains-nuts { background: rgba(160,100,40,0.12); color: #805020; }

@media (max-width: 768px) {
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-tab { padding: 8px 14px; font-size: 0.88rem; }
}

/* ══════════════════════════════════════════════════════════════
   PHONE CODE SELECTOR
══════════════════════════════════════════════════════════════ */
.phone-row { display: flex; gap: 8px; align-items: center; }
.phone-row .phone-code-sel {
  width: 130px !important; flex-shrink: 0;
  padding: 10px 8px;
  border: 1.5px solid rgba(92,107,60,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  background: #fff;
  font-family: inherit;
  color: var(--charcoal);
  cursor: pointer;
}
.phone-row .phone-code-sel:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(92,107,60,0.1); }
.phone-row input[type="tel"] { flex: 1 !important; width: auto !important; min-width: 0; }

/* ══════════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
══════════════════════════════════════════════════════════════ */
.lang-switcher { display: inline-flex; align-items: center; gap: 2px; background: rgba(92,107,60,0.08); border-radius: 20px; padding: 2px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--charcoal-light); padding: 4px 9px; border-radius: 16px;
  transition: background 0.15s, color 0.15s; font-family: inherit;
  white-space: nowrap;
}
.lang-btn:hover { color: var(--olive-dark); background: rgba(92,107,60,0.12); }
.lang-btn.active { background: var(--olive); color: #fff; }

/* Desktop: sits left of .nav-auth */
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-switcher-desktop { margin-right: 2px; }

/* Mobile: hidden at desktop, shown in nav panel */
.nav-lang-mobile { display: none; }

@media (max-width: 768px) {
  .nav-right { display: none; }   /* hide desktop cluster */
  .nav-lang-mobile {
    display: flex; padding: 14px 0 6px;
    border-top: 1px solid rgba(0,0,0,0.06); list-style: none;
  }
  .nav-lang-mobile .lang-switcher { background: rgba(92,107,60,0.06); }
}

/* ══════════════════════════════════════════════════════════════
   RTL SUPPORT (Arabic)
══════════════════════════════════════════════════════════════ */
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { padding-right: 0; }
[dir="rtl"] .nav-dropdown-menu { left: auto; right: 50%; transform: translateX(50%) translateY(-6px); }
[dir="rtl"] .nav-dropdown-menu.open { transform: translateX(50%) translateY(0); }
[dir="rtl"] .hero-btns { flex-direction: row-reverse; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .lang-switcher-desktop { margin-right: 0; margin-left: 2px; }
[dir="rtl"] .hsp-prev { left: auto; right: 8px; }
[dir="rtl"] .hsp-next { right: auto; left: 8px; }
@media (max-width: 768px) {
  [dir="rtl"] .nav-dropdown-menu { transform: none; }
  [dir="rtl"] .nav-dropdown-menu.open { transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════════ */
.site-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.site-lightbox.open { opacity: 1; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(6px); }
.lb-content {
  position: relative; z-index: 1;
  max-width: min(92vw, 1100px); max-height: 92vh;
  display: flex; flex-direction: column; align-items: center;
}
.lb-img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 10px; display: block; }
.lb-close {
  position: absolute; top: -14px; right: -14px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  color: #fff; border: none; border-radius: 50%;
  width: 34px; height: 34px; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.lb-close:hover { background: rgba(255,255,255,0.3); }
.lb-caption { color: rgba(255,255,255,0.8); margin-top: 12px; font-size: 0.9rem; text-align: center; }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  color: #fff; border: none; border-radius: 50%;
  width: 42px; height: 42px; font-size: 1.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.lb-arrow:hover { background: rgba(255,255,255,0.28); }
.lb-prev { left: -56px; }
.lb-next { right: -56px; }
.lb-counter { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-top: 10px; }
@media (max-width: 600px) {
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
}

/* ══════════════════════════════════════════════════════════════
   HERO THIRDS — NEW PANEL TYPES
══════════════════════════════════════════════════════════════ */

/* Wrapper with optional link + zoom button */
.hsp-panel { position: relative; width: 100%; }
.hsp-panel-link { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.hsp-panel-link:hover .hsp-zoom-hint { opacity: 1; }

/* Zoom button — sits on top-right corner of the panel frame */
.hsp-zoom-btn {
  position: absolute; top: 8px; right: 8px; z-index: 10;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  border: none; border-radius: 8px; color: #fff;
  width: 34px; height: 34px; font-size: 1.05rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hsp-zoom-btn:hover { background: rgba(0,0,0,0.78); transform: scale(1.08); }
[dir="rtl"] .hsp-zoom-btn { right: auto; left: 8px; }

/* Size variants — apply data-hsp-size to .hsp-carousel or .hsp-gallery wrapper */
.hsp-panel[data-hsp-size="sm"] .hsp-carousel { aspect-ratio: 5/4; }
.hsp-panel[data-hsp-size="sm"] .hsp-gallery { grid-template-columns: 1fr 1fr; gap: 5px; }
.hsp-panel[data-hsp-size="sm"] .hsp-gallery-item { aspect-ratio: 4/3; }

.hsp-panel[data-hsp-size="md"] .hsp-carousel { aspect-ratio: 4/3; }

.hsp-panel[data-hsp-size="lg"] .hsp-carousel { aspect-ratio: 3/4; }
.hsp-panel[data-hsp-size="lg"] .hsp-gallery { grid-template-columns: 1fr; gap: 8px; }
.hsp-panel[data-hsp-size="lg"] .hsp-gallery-item { aspect-ratio: 16/9; }

.hsp-panel[data-hsp-size="xl"] .hsp-carousel { aspect-ratio: 2/3; }
.hsp-panel[data-hsp-size="xl"] .hsp-gallery { grid-template-columns: 1fr; gap: 10px; }
.hsp-panel[data-hsp-size="xl"] .hsp-gallery-item { aspect-ratio: 16/9; }

/* Poster in thirds — sm≈60%, md≈67%, lg≈74%, xl≈80% of column */
.hsp-poster { width: 100%; max-width: 60%; margin: 0 auto; }
.hsp-panel[data-hsp-size="md"] .hsp-poster { max-width: 67%; }
.hsp-panel[data-hsp-size="lg"] .hsp-poster { max-width: 74%; }
.hsp-panel[data-hsp-size="xl"] .hsp-poster { max-width: 80%; }

.hsp-poster-frame {
  position: relative; aspect-ratio: 2/3; overflow: hidden;
  border-radius: 6px; display: flex; flex-direction: column;
  box-sizing: border-box;
}
.hsp-poster-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hsp-poster-overlay {
  position: absolute; inset: 0; display: flex;
  flex-direction: column; justify-content: space-between; pointer-events: none;
}
.hsp-poster-title {
  padding: 10px 10px 0; font-family: 'Playfair Display', serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #fff;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}
.hsp-poster-title-bot {
  padding: 0 10px 10px; font-family: 'Playfair Display', serif;
  font-size: 0.85rem; font-weight: 700; color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Profiles in thirds */
.hsp-profiles { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.hsp-panel[data-hsp-size="sm"] .hsp-profiles { gap: 6px; }
.hsp-panel[data-hsp-size="lg"] .hsp-profiles { gap: 14px; }
.hsp-panel[data-hsp-size="xl"] .hsp-profiles { gap: 16px; }

.hsp-profile-card {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(4px);
  border-radius: 10px; padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hsp-prof-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.3);
}
.hsp-panel[data-hsp-size="sm"] .hsp-prof-avatar { width: 32px; height: 32px; }
.hsp-panel[data-hsp-size="lg"] .hsp-prof-avatar { width: 54px; height: 54px; }
.hsp-panel[data-hsp-size="xl"] .hsp-prof-avatar { width: 64px; height: 64px; }
.hsp-prof-initial {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--terracotta); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700;
  border: 2px solid rgba(255,255,255,0.3);
}
.hsp-prof-name { font-weight: 700; font-size: 0.85rem; color: #fff; line-height: 1.2; }
.hsp-prof-role { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 1px; }

/* Card grid in thirds */
.hsp-cardgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
.hsp-panel[data-hsp-size="sm"] .hsp-cardgrid { grid-template-columns: 1fr; gap: 6px; }
.hsp-panel[data-hsp-size="lg"] .hsp-cardgrid { grid-template-columns: 1fr 1fr; gap: 10px; }
.hsp-panel[data-hsp-size="xl"] .hsp-cardgrid { grid-template-columns: 1fr 1fr; gap: 12px; }

.hsp-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 10px;
  padding: 12px 10px; display: flex; flex-direction: column; gap: 6px;
  text-decoration: none; color: inherit;
  transition: background 0.15s;
}
.hsp-card:hover { background: rgba(255,255,255,0.18); }
.hsp-card-icon { font-size: 1.4rem; line-height: 1; }
.hsp-panel[data-hsp-size="sm"] .hsp-card-icon { font-size: 1.1rem; }
.hsp-panel[data-hsp-size="xl"] .hsp-card-icon { font-size: 1.7rem; }
.hsp-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 6px; display: block; }
.hsp-card-title { font-weight: 700; font-size: 0.82rem; color: #fff; line-height: 1.2; }
.hsp-card-desc { font-size: 0.72rem; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* ══════════════════════════════════════════════════════════════
   BOOKING FORM — guest tips & contact fieldset
══════════════════════════════════════════════════════════════ */
.booking-guest-tips { display:flex; flex-direction:column; gap:6px; margin:-48px -48px 32px; padding:20px 48px; background:var(--sand-light); border-radius:var(--radius) var(--radius) 0 0; border-bottom:1px solid rgba(92,107,60,0.1); }
.guest-tip { display:flex; align-items:baseline; gap:8px; font-size:0.87rem; color:var(--charcoal-light); line-height:1.5; }
.guest-tip a { color:var(--olive-dark); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
@media(max-width:640px){ .booking-guest-tips { margin:-32px -24px 24px; padding:16px 24px; } }
.contact-fieldset { border:1.5px solid rgba(92,107,60,0.15); border-radius:var(--radius-sm); padding:16px 20px; margin-bottom:20px; }
.contact-fieldset legend { padding:0 8px; font-weight:700; font-size:0.88rem; text-transform:uppercase; letter-spacing:0.05em; color:var(--olive-dark); }
.form-hint { font-size:0.8rem; margin-top:4px; }

/* ══════════════════════════════════════════════════════════════
   CUSTOM CALENDAR PICKER
══════════════════════════════════════════════════════════════ */
.cal-wrap { position:relative; }
.cal-trigger { width:100%; display:flex; justify-content:space-between; align-items:center; padding:12px 16px; border:1.5px solid rgba(92,107,60,0.2); border-radius:var(--radius-sm); background:var(--white); font-size:0.95rem; font-family:inherit; color:#aaa; cursor:pointer; text-align:left; transition:border-color 0.2s, box-shadow 0.2s; }
.cal-trigger.has-date { color:var(--charcoal); border-color:var(--olive); }
.cal-trigger.needs-date { border-color:#e53935; box-shadow:0 0 0 3px rgba(229,57,53,0.12); }
.cal-arrow-icon { color:var(--charcoal-light); font-size:0.8rem; flex-shrink:0; }
.cal-panel { position:absolute; top:calc(100% + 6px); left:0; right:0; z-index:500; background:#fff; border-radius:12px; box-shadow:0 8px 32px rgba(0,0,0,0.15); padding:16px; display:none; }
.cal-panel.open { display:block; }
.cal-panel-nav { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.cal-panel-nav button { background:none; border:none; font-size:1.2rem; cursor:pointer; padding:4px 12px; border-radius:6px; color:var(--olive-dark); transition:background 0.15s; }
.cal-panel-nav button:hover { background:rgba(92,107,60,0.1); }
.cal-panel-nav span { font-weight:700; font-size:0.92rem; color:var(--olive-dark); }
.cal-dow { display:grid; grid-template-columns:repeat(7,1fr); margin-bottom:4px; }
.cal-dow span { text-align:center; font-size:0.68rem; font-weight:700; color:var(--charcoal-light); text-transform:uppercase; padding:4px 0; }
.cal-days { display:grid; grid-template-columns:repeat(7,1fr); gap:2px; }
.cal-cell { text-align:center; padding:8px 2px; font-size:0.88rem; border-radius:6px; cursor:pointer; color:var(--charcoal); transition:background 0.15s; }
.cal-cell:hover:not(.cal-na) { background:rgba(92,107,60,0.1); }
.cal-cell.cal-na { color:#ccc; cursor:default; background:none; }
.cal-cell.cal-today { font-weight:700; outline:1.5px solid rgba(92,107,60,0.4); color:var(--olive-dark); }
.cal-cell.cal-sel { background:var(--olive) !important; color:#fff !important; font-weight:700; border-radius:6px; }

/* ══════════════════════════════════════════════════════════════
   POSTER BLOCK
══════════════════════════════════════════════════════════════ */
.poster-wrap { position:relative; max-width:380px; width:100%; aspect-ratio:2/3; overflow:hidden; display:flex; flex-direction:column; }
.poster-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.poster-video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.poster-overlay { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:space-between; pointer-events:none; }
.poster-title-top, .poster-title-bot { padding:14px 18px; font-family:'Playfair Display',serif; font-size:1rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; line-height:1.2; }
.poster-title-top { background:linear-gradient(to bottom, rgba(0,0,0,0.72), transparent); color:#fff; text-shadow:0 1px 4px rgba(0,0,0,0.6); }
.poster-title-bot { background:linear-gradient(to top, rgba(0,0,0,0.78), transparent); color:#fff; text-shadow:0 1px 4px rgba(0,0,0,0.6); font-size:1.25rem; margin-top:auto; }
.ph-coming-soon { background:#0d0d0d; color:#c9a227; display:flex; flex-direction:column; align-items:center; justify-content:center; height:100%; padding:30px 20px; text-align:center; }
.ph-coming-soon .ph-ornament { font-size:0.7rem; letter-spacing:0.25em; color:#c9a227; opacity:0.7; margin-bottom:14px; }
.ph-coming-soon .ph-main { font-family:'Playfair Display',serif; font-size:2.2rem; font-weight:700; letter-spacing:0.1em; line-height:1.1; }
.ph-coming-soon .ph-rule { width:60px; height:1px; background:#c9a227; margin:16px auto; opacity:0.5; }
.ph-coming-soon .ph-sub { font-size:0.72rem; letter-spacing:0.3em; opacity:0.55; text-transform:uppercase; }
.ph-vintage { background:#2a1f14; color:#d4b483; display:flex; flex-direction:column; align-items:center; justify-content:center; height:100%; padding:30px 20px; text-align:center; font-family:'Georgia',serif; }
.ph-vintage .ph-main { font-size:1.8rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; line-height:1.15; color:#d4b483; text-shadow:2px 2px 0 #0008; }
.ph-vintage .ph-sub { font-size:0.75rem; margin-top:10px; opacity:0.6; letter-spacing:0.2em; }
.ph-cobweb { position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; opacity:0.35; }
.ph-dust { background:#f5c518; display:flex; flex-direction:column; align-items:center; justify-content:center; height:100%; padding:30px 20px; text-align:center; }
.ph-dust-stripe { position:absolute; top:0; left:0; right:0; height:28px; background:repeating-linear-gradient(45deg,#1a1a1a 0,#1a1a1a 14px,#f5c518 14px,#f5c518 28px); }
.ph-dust-stripe-bot { top:auto; bottom:0; }
.ph-dust .ph-icon { font-size:2.8rem; margin-bottom:10px; }
.ph-dust .ph-main { font-family:'Impact','Arial Black',sans-serif; font-size:1.6rem; letter-spacing:0.05em; color:#1a1a1a; line-height:1.1; }
.ph-dust .ph-sub { font-size:0.75rem; color:#1a1a1a; opacity:0.7; margin-top:8px; font-weight:700; letter-spacing:0.1em; }
.ph-mystery { background:radial-gradient(ellipse at center, #1c1c2e 0%, #000 100%); display:flex; flex-direction:column; align-items:center; justify-content:center; height:100%; padding:30px 20px; text-align:center; }
.ph-mystery .ph-icon { font-size:3rem; margin-bottom:14px; filter:drop-shadow(0 0 14px #6060ff88); }
.ph-mystery .ph-main { font-family:'Playfair Display',serif; font-size:1.9rem; color:#e0e0ff; letter-spacing:0.12em; text-transform:uppercase; text-shadow:0 0 20px #6060ff66; }
.ph-mystery .ph-sub { font-size:0.72rem; color:#8888cc; letter-spacing:0.3em; margin-top:10px; text-transform:uppercase; }
.poster-film-strip .film-holes { display:flex; justify-content:space-around; align-items:center; background:#1a1a1a; padding:4px 0; }
.poster-film-strip .film-holes span { width:14px; height:10px; background:#0d0d0d; border-radius:2px; display:inline-block; }
