/* ── DARK MODE (default) ── */
:root {
  --bg:        #0a1a0f;
  --bg2:       #0f2218;
  --surface:   #162d1e;
  --surface2:  #1e3d28;
  --border:    #2a5236;
  --gold:      #c9a84c;
  --gold-dim:  #8a6f2e;
  --gold-hover:#d4b05c;
  --gold-glow: rgba(201,168,76,0.25);
  --gold-tint-10: rgba(201,168,76,0.10);
  --gold-tint-20: rgba(201,168,76,0.20);
  --gold-tint-25: rgba(201,168,76,0.25);
  --gold-tint-30: rgba(201,168,76,0.30);
  --text:      #e8f0ea;
  --text-dim:  rgba(232,240,234,0.6);
  --text-muted:rgba(232,240,234,0.35);
  --white:     #ffffff;
  --hero-overlay-from: rgba(10,26,15,0.88);
  --hero-overlay-via:  rgba(10,26,15,0.65);
  --hero-overlay-to:   rgba(10,26,15,0.35);
  --hero-fade:         #0a1a0f;
  --hero-sub-color:    rgba(255,255,255,0.88);
  --hero-title-color:  #ffffff;
  --btn-sec-border:    rgba(232,240,234,0.2);
  --btn-sec-color:     rgba(232,240,234,0.8);
  --grid-line:         rgba(201,168,76,0.05);
  --card-bg:           rgba(22,45,30,0.5);
  --card-bg-hover:     rgba(30,61,40,0.7);
  --card-bg-solid:     rgba(22,45,30,0.9);
  --input-bg:          rgba(10,26,15,0.6);
  --nav-bg:            rgba(22,45,30,0.9);
  --scrollbar-track:   #0a1a0f;
  --section-mid-1:     rgba(22,45,30,0.45);
  --section-mid-2:     rgba(15,34,24,0.9);
}

/* ── LIGHT MODE ── */
html.light {
  --bg:        #fdf9f3;
  --bg2:       #f5efe3;
  --surface:   #eee8da;
  --surface2:  #e5dccb;
  --border:    #c8b99a;
  --gold:      #4b822a;
  --gold-dim:  #3a6520;
  --gold-hover:#3d6e22;
  --gold-glow: rgba(75,130,42,0.2);
  --gold-tint-10: rgba(75,130,42,0.10);
  --gold-tint-20: rgba(75,130,42,0.20);
  --gold-tint-25: rgba(75,130,42,0.25);
  --gold-tint-30: rgba(75,130,42,0.30);
  --text:      #1a2e14;
  --text-dim:  rgba(26,46,20,0.65);
  --text-muted:rgba(26,46,20,0.38);
  --white:     #1a2e14;
  --hero-overlay-from: rgba(253,249,243,0.82);
  --hero-overlay-via:  rgba(253,249,243,0.60);
  --hero-overlay-to:   rgba(253,249,243,0.25);
  --hero-fade:         #fdf9f3;
  --hero-sub-color:    rgba(26,46,20,0.85);
  --hero-title-color:  #1a2e14;
  --btn-sec-border:    rgba(26,46,20,0.25);
  --btn-sec-color:     rgba(26,46,20,0.75);
  --grid-line:         rgba(75,130,42,0.06);
  --card-bg:           rgba(238,232,218,0.7);
  --card-bg-hover:     rgba(229,220,203,0.9);
  --card-bg-solid:     rgba(238,232,218,0.95);
  --input-bg:          rgba(253,249,243,0.8);
  --nav-bg:            rgba(245,239,227,0.92);
  --scrollbar-track:   #fdf9f3;
  --section-mid-1:     rgba(232,222,205,0.55);
  --section-mid-2:     rgba(220,210,192,0.65);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 64px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

.font-display { font-family: 'Playfair Display', serif; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--scrollbar-track); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── RETRO GRID ── */
.retro-grid {
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
#navbar .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#navbar .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
#navbar .nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
/* show correct logo per theme instantly via CSS */
html:not(.light) .logo-light { display: none; }
html.light        .logo-dark  { display: none; }
#navbar .nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); background: var(--gold-tint-10); }
@media (max-width: 860px) { .nav-links { display: none; } }
#navbar .nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* theme toggle */
#theme-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all 0.2s;
}
#theme-toggle:hover { color: var(--gold); border-color: var(--gold); }
#theme-toggle svg { flex-shrink: 0; transition: transform 0.4s; }
html.light #theme-toggle svg.sun-icon { display: none; }
html:not(.light) #theme-toggle svg.moon-icon { display: none; }

/* language dropdown */
#lang-dropdown {
  position: relative;
}
#lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: all 0.2s;
}
#lang-btn:hover { color: var(--gold); border-color: var(--gold); }
#lang-btn .chevron {
  width: 12px; height: 12px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
#lang-dropdown.open #lang-btn .chevron { transform: rotate(180deg); }
#lang-btn .flag { font-size: 15px; line-height: 1; }

#lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  z-index: 300;
}
#lang-dropdown.open #lang-menu { display: block; }
#lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}
#lang-menu button:hover { background: var(--card-bg); color: var(--gold); }
#lang-menu button.active { color: var(--gold); }
#lang-menu button .flag { font-size: 16px; }
#lang-menu .lang-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
  opacity: 0.5;
}

@media (max-width: 480px) {
  #lang-btn .lang-label { display: none; }
  #theme-toggle .theme-label { display: none; }
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
#hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--hero-overlay-from) 0%, var(--hero-overlay-via) 60%, var(--hero-overlay-to) 100%);
}
#hero .fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 128px;
  background: linear-gradient(to top, var(--hero-fade), transparent);
}
#hero .content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-tint-10);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-tint-20);
  border-radius: 999px;
  padding: 10px 20px;
  margin-bottom: 32px;
  animation: pulse-glow 3s ease-in-out infinite;
}
.stars { display: flex; gap: 2px; }
.star-icon { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
.rating-num { font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; }
.rating-count { font-size: 12px; color: var(--text-dim); }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  50% { box-shadow: 0 0 20px 4px var(--gold-tint-20); }
}

h1.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--hero-title-color);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
h1.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--hero-sub-color);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: scale(1.04);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--btn-sec-border);
  color: var(--btn-sec-color);
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── SECTIONS ── */
section { position: relative; padding: 96px 0; overflow: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-bg-1 {
  background: linear-gradient(to bottom, var(--bg) 0%, var(--section-mid-1) 50%, var(--bg) 100%);
}
.section-bg-2 {
  background: linear-gradient(to bottom, var(--bg) 0%, var(--section-mid-2) 50%, var(--bg) 100%);
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
}
.divider {
  width: 96px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto 0;
}

/* ── ABOUT ── */
.about-text {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-text p {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  font-weight: 300;
}
.about-deco-1 {
  position: absolute;
  top: -32px; left: -32px;
  width: 96px; height: 96px;
  border: 1px solid var(--gold-tint-10);
  border-radius: 50%;
}
.about-deco-2 {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 128px; height: 128px;
  border: 1px solid var(--gold-tint-10);
  border-radius: 50%;
}

.about-line {
  width: 64px; height: 2px;
  background: var(--gold-tint-30);
  margin: 32px auto 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s;
  overflow: hidden;
}
.service-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--gold-tint-30);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 0 0 1px var(--gold-tint-10);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--gold-tint-10);
  border-radius: 14px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--gold-tint-20);
  transform: scale(1.1);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.service-card:hover h3 { color: var(--gold); }
.service-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; }
.service-bar {
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.service-card:hover .service-bar { transform: scaleX(1); }

/* ── WHY US / STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 16px;
  transition: all 0.4s;
}
.stat-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--gold-tint-30);
  transform: translateY(-4px);
}
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--gold-tint-10);
  border-radius: 14px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: all 0.3s;
}
.stat-card:hover .stat-icon { background: var(--gold-tint-20); transform: scale(1.1); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: 0 0 20px var(--gold-tint-20);
}
.stat-label { color: var(--text-dim); font-size: 0.875rem; line-height: 1.5; }

/* ── REVIEWS ── */
.reviews-hero { display: flex; flex-direction: column; align-items: center; margin-bottom: 64px; }
.big-rating {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 40px var(--gold-tint-30);
}
.big-rating::before {
  content: '';
  position: absolute;
  inset: -32px;
  border: 2px solid var(--gold-tint-10);
  border-radius: 50%;
}
.big-stars { display: flex; gap: 6px; margin-top: 16px; }
.big-star { width: 24px; height: 24px; fill: var(--gold); color: var(--gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: var(--gold-tint-25); }
.review-quote-icon {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  color: var(--gold-tint-20);
}
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.rev-star { width: 20px; height: 20px; fill: var(--gold); color: var(--gold); }
.review-text {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewer-name { font-weight: 600; color: var(--text); font-size: 0.95rem; }

/* ── GALLERY SLIDESHOW ── */
.gallery-slideshow {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.gallery-slide-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y pinch-zoom;
}
@media (max-width: 640px) {
  .gallery-slide-track { aspect-ratio: 1/1; border-radius: 14px; }
}
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  transform: translateX(100%);
  pointer-events: none;
  will-change: transform, opacity;
}
.gallery-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.gallery-slide.exit-left {
  opacity: 0;
  transform: translateX(-100%);
}
.gallery-slide.exit-right {
  opacity: 0;
  transform: translateX(100%);
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--card-bg);
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.gallery-slide .gallery-remove {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 5;
}
.gallery-slide .gallery-remove:hover { background: rgba(200,40,40,0.85); }

/* arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
html.light .gallery-arrow {
  background: rgba(255,255,255,0.75);
  border-color: rgba(0,0,0,0.15);
  color: #1a2e14;
}
.gallery-arrow:hover,
.gallery-arrow:active { background: var(--gold); border-color: var(--gold); color: #fff; }
.gallery-arrow-left  { left: 12px; }
.gallery-arrow-right { right: 12px; }
@media (max-width: 640px) {
  .gallery-arrow { width: 52px; height: 52px; }
  .gallery-arrow svg { width: 22px; height: 22px; }
}

/* dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
  padding: 4px 0;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.gallery-dot::after {
  content: '';
  position: absolute;
  inset: -10px;
}
.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (max-width: 640px) {
  .gallery-dot { width: 10px; height: 10px; }
  .gallery-dots { gap: 10px; margin-top: 14px; }
}

/* counter */
.gallery-counter {
  text-align: center;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
/* empty state */
.gallery-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border: 2px dashed var(--border);
  border-radius: 20px;
  max-width: 860px;
  margin: 0 auto;
}
/* upload button */
.gallery-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 32px;
  background: var(--gold-tint-10);
  border: 1px dashed var(--gold);
  border-radius: 12px;
  padding: 12px 24px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-upload-btn:hover { background: var(--gold-tint-20); }
#gallery-file-input { display: none; }

.gallery-uploading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 8px 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.gallery-uploading svg { animation: spin 0.8s linear infinite; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: #fff;
  font-size: 0.9rem;
  border-radius: 0 0 14px 14px;
  text-align: center;
  pointer-events: none;
}
.gallery-caption:empty { display: none; }
.gallery-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s;
}
.gallery-admin-link:hover { color: var(--text-dim); }

.gallery-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 999px;
  margin-left: 12px;
  transition: all 0.2s;
}
.gallery-logout-btn:hover { color: var(--text); border-color: var(--text-dim); }

.stat-card-clickable {
  cursor: pointer;
}
.stat-card-clickable:hover {
  border-color: var(--gold);
}
.stat-hint {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 6px;
  opacity: 0.8;
  letter-spacing: 0.03em;
}

/* ── HOURS MODAL ── */
.hours-modal-box {
  max-width: 380px;
}
.hours-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.hours-modal-header h3 { margin-bottom: 0; }
.hours-close-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dim);
  transition: all 0.2s;
  flex-shrink: 0;
}
.hours-close-btn:hover { border-color: var(--gold); color: var(--gold); }
.hours-table { display: flex; flex-direction: column; gap: 2px; }
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: background 0.15s;
}
.hours-row:hover { background: var(--card-bg); }
.hours-row span:first-child { color: var(--text); font-weight: 500; }
.hours-time { color: var(--gold); font-weight: 700; font-family: 'Inter', monospace; }
.hours-row-sunday .hours-time { color: var(--text-dim); }
.hours-row-today {
  background: var(--gold-tint-10);
  border: 1px solid var(--gold-tint-20);
}
.hours-row-today span:first-child { color: var(--gold); }
.hours-row-today .hours-time { color: var(--gold); }
.admin-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
.admin-modal-overlay.open { display: flex; }
.admin-modal-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 400px;
  margin: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.admin-modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.admin-modal-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.admin-error {
  color: #e05555 !important;
  font-size: 0.82rem !important;
  margin-bottom: 12px !important;
  margin-top: -4px;
  display: none;
}
.admin-error.visible { display: block; }
.admin-modal-btns {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.admin-modal-btns .btn-submit { flex: 1; margin-top: 0; }
.admin-cancel-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
}
.admin-cancel-btn:hover { border-color: var(--text-dim); color: var(--text); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-stack { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.contact-card-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 56px; height: 56px;
  background: var(--gold-tint-10);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.contact-value { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }
.contact-value a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
.contact-value a:hover { opacity: 0.8; }
.contact-address { font-size: 1rem; color: var(--text); font-weight: 500; }
.contact-address-sub { font-size: 0.875rem; color: var(--text-muted); margin-top: 4px; }
.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 12px;
  transition: opacity 0.2s;
}
.directions-link:hover { opacity: 0.75; }
/* form */
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.form-field {
  width: 100%;
  padding: 12px 16px;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 12px;
  display: block;
}
.form-field::placeholder { color: var(--text-muted); }
.form-field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
textarea.form-field { resize: none; }
.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}
.btn-submit:hover {
  background: var(--gold-hover);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.form-feedback {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 12px;
}
.form-feedback-success {
  background: rgba(75,130,42,0.12);
  border: 1px solid rgba(75,130,42,0.3);
  color: #4b822a;
}
html:not(.light) .form-feedback-success {
  background: rgba(75,130,42,0.15);
  border-color: rgba(75,130,42,0.35);
  color: #7dba52;
}
.form-feedback-error {
  background: rgba(220,53,53,0.1);
  border: 1px solid rgba(220,53,53,0.25);
  color: #c03030;
}
html:not(.light) .form-feedback-error {
  background: rgba(220,53,53,0.12);
  color: #e06060;
}
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.map-placeholder {
  height: 384px;
  background: rgba(22,45,30,0.4);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── FOOTER ── */
footer {
  position: relative;
  padding: 64px 0;
  background: var(--bg2);
  overflow: hidden;
}
footer .top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-tint-30), transparent);
}
footer .retro-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
footer .inner {
  position: relative;
  z-index: 10;
  text-align: center;
}
footer h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  color: var(--text-dim);
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-divider {
  width: 64px; height: 2px;
  background: var(--gold-tint-30);
  margin: 0 auto 24px;
}
.footer-copy { color: var(--text-muted); font-size: 0.875rem; }
.footer-credit-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit-link:hover { color: var(--gold); }

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.2s;
}
.footer-social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-tint-10);
}

/* ── FLOATING CTA ── */
#floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25d366; color: white; }
.float-phone {
  background: var(--gold);
  color: var(--bg);
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ── SVG ICONS ── */
svg { display: inline-block; vertical-align: middle; }

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

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}

/* ── ADMIN GRID ── */
#gallery-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  padding: 8px 0 16px;
}
.admin-grid-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.admin-grid-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
.admin-grid-item.dragging { opacity: 0.4; transform: scale(0.96); }
.admin-grid-item.drag-over { border-color: var(--gold); transform: scale(1.04); }
.admin-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.admin-grid-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 6px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-grid-drag-handle {
  position: absolute;
  top: 6px; left: 6px;
  background: rgba(0,0,0,0.45);
  border-radius: 6px;
  padding: 3px 5px;
  color: #fff;
  font-size: 0.7rem;
  cursor: grab;
  user-select: none;
}

/* ── EDIT PHOTO MODAL ── */
#edit-photo-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#edit-photo-modal.open { display: flex; }
.edit-photo-box {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 24px;
  width: 92%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 90vh;
  overflow-y: auto;
}
.edit-photo-preview {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}
.edit-photo-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: -6px;
}
.edit-photo-input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}
.edit-photo-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.edit-photo-save {
  flex: 1; padding: 11px;
  border-radius: 8px; border: none;
  background: var(--gold); color: #fff;
  font-weight: 600; cursor: pointer;
}
.edit-photo-delete {
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid #c0392b;
  background: transparent;
  color: #c0392b;
  font-weight: 600; cursor: pointer;
}
.edit-photo-cancel {
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.edit-replace-btn {
  padding: 9px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.85rem;
  text-align: center;
}

/* ── PRIVACY POLICY PAGE STYLES ── */
main.privacy-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 104px 24px 100px; /* top padding clears the fixed #navbar (64px tall) */
}
.page-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.page-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}
section.policy-block {
  padding: 0;
  overflow: visible;
  margin-bottom: 36px;
}
section.policy-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 12px;
}
section.policy-block p,
section.policy-block li {
  color: var(--text-dim);
  font-size: 0.98rem;
}
section.policy-block ul {
  padding-left: 20px;
  margin-top: 8px;
}
section.policy-block li {
  margin-bottom: 6px;
}
section.policy-block a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-tint-20);
}
section.policy-block a:hover {
  border-color: var(--gold);
}
.privacy-contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-top: 10px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 30px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
}
.back-link:hover {
  color: var(--gold);
}

@media (max-width: 600px) {
  .page-title { font-size: 1.7rem; }
}
