/* ===================================================
   FabNails by Alice — LUXURY STYLE (light theme)
   =================================================== */

/* ── 1. TOKENS ─────────────────────────────────── */
:root {
  --cream:        #F5EFE8;
  --warm-white:   #FAF5EF;
  --beige:        #C4A882;
  --beige-light:  #E8DDD2;
  --beige-mid:    #D4C3B0;
  --blush:        #EAD5CC;
  --blush-deep:   #D4B5A8;
  --brown-dark:   #2D2018;
  --brown:        #6B5040;
  --brown-mid:    #9A8070;
  --brown-light:  #C0AFA4;
  --taupe:        #B8A898;
  --border:       #E5DAD2;
  --border-dark:  #C8B8AC;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Raleway', sans-serif;

  --nav-h:   72px;
  --radius:  6px;
  --t:       0.22s ease;

  --sp-1: 6px;
  --sp-2: 12px;
  --sp-3: 20px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
}

/* ── 2. RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }

/* ── 3. BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 40px;
  transition: background var(--t), color var(--t), border-color var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--beige);
  color: var(--warm-white);
  border: 1.5px solid var(--beige);
}
.btn-gold:hover { background: var(--brown); border-color: var(--brown); }

.btn-directions {
  background: transparent;
  color: var(--beige);
  border: 1.5px solid var(--beige);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.btn-directions::before { content: "↗"; font-size: 14px; }
.btn-directions:hover { background: var(--beige); color: var(--warm-white); }

.btn-ghost {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--border-dark);
}
.btn-ghost:hover { background: var(--beige-light); border-color: var(--beige); }
.btn-full { width: 100%; justify-content: center; }

/* ── 4. NAV ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 var(--sp-5);
  gap: var(--sp-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
}
.brand-logo-new {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.hero-logo-new {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
}
.brand-hex-wrap {
  position: relative;
  width: 36px;
  height: 41px;
  flex-shrink: 0;
}
.brand-hex-wrap svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.brand-logo-img {
  position: absolute;
  inset: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  object-fit: cover;
  border-radius: 50%;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name-primary {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brown-dark);
}
.brand-name-sub {
  font-family: var(--font-script);
  font-size: 13px;
  color: var(--beige);
  letter-spacing: 0.04em;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  justify-self: end;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-mid);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--brown-dark); }

.lang-toggle {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  border: 1.5px solid var(--border-dark);
  padding: 4px 9px;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  flex-shrink: 0;
}
.lang-toggle:hover { background: var(--beige); color: var(--warm-white); border-color: var(--beige); }

.admin-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--brown-light);
  border: 1.5px solid var(--border);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: color var(--t), border-color var(--t);
  flex-shrink: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.admin-trigger:hover { color: var(--beige); border-color: var(--beige); }

.menu-toggle { display: none; align-items: center; gap: 8px; background: none; border: none; cursor: pointer; }
.menu-toggle-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; color: var(--brown-mid); text-transform: uppercase; display: none; }
.menu-toggle-lines { display: flex; flex-direction: column; gap: 4px; }
.menu-toggle-lines span { display: block; width: 22px; height: 1.5px; background: var(--brown-dark); transition: all var(--t); border-radius: 2px; }

/* ── 5. HERO ─────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Decorative blob shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: var(--beige-light);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  opacity: 0.6;
  z-index: 0;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: var(--blush);
  border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
  opacity: 0.5;
  z-index: 0;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-6) var(--sp-5);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text-col { display: flex; flex-direction: column; gap: var(--sp-3); align-items: center; text-align: center; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beige);
}

.hero-h1 {
  display: none;
}
.hero-h1-main {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero-h1-accent { color: var(--beige); }
.hero-h1-by {
  font-family: var(--font-display);
  font-size: clamp(12px, 2vw, 22px);
  font-weight: 600;
  color: var(--brown-mid);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.hero-sub {
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.8;
}

.hero-ctas { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-top: var(--sp-1); }

.hero-logo-col { display: flex; justify-content: center; align-items: center; }

.hero-hex-frame {
  position: relative;
  width: 320px;
  height: 365px;
}
.hero-hex-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-logo-clip {
  position: absolute;
  inset: 24px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
}
.hero-logo-img { width: 100%; height: 100%; object-fit: cover; }

.hero-horizon { height: 1px; background: var(--border); margin: 0 var(--sp-5); position: relative; z-index: 1; }

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: var(--sp-3);
  position: relative;
  z-index: 1;
}
.hero-scroll-label { font-size: 9px; font-weight: 600; letter-spacing: 0.24em; color: var(--brown-light); text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--border-dark), transparent); }

/* ── 6. STRIP ─────────────────────────────────────── */
.strip {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-3) 0;
}
.strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: 0 var(--sp-4);
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.strip-item strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
}
.strip-item span {
  font-size: 11px;
  color: var(--brown-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.strip-sep { width: 1px; height: 36px; background: var(--border); }

/* ── 7. SECTIONS ────────────────────────────────── */
.section {
  padding: var(--sp-6) var(--sp-5);
}
.alt-bg { background: var(--warm-white); }

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-5);
}
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: var(--sp-2);
  display: block;
}
.section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: var(--sp-2);
}
.section-desc {
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.75;
}
.section-desc a { color: var(--beige); border-bottom: 1px solid var(--beige-light); transition: border-color var(--t); }
.section-desc a:hover { border-color: var(--beige); }

/* ── 8. GALLERY CAROUSEL ─────────────────────────── */
.gallery-section { background: var(--cream); }

.gallery-carousel-wrap {
  position: relative;
  padding: var(--sp-3) 0 var(--sp-5);
}
.gallery-section {
  overflow-x: hidden;
  padding-bottom: 6px;
}
.price-section {
  padding-top: 6px;
}
.gallery-section .section-intro {
  margin-bottom: 6px;
}

.gallery-track {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

/* ── Cards ── */
.gal-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin-top: -150px;   /* -½ height */
  margin-left: -150px;  /* -½ width */
  background: var(--warm-white);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.55s ease,
              box-shadow 0.55s ease;
  transform-style: preserve-3d;
  user-select: none;
}

.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  pointer-events: none;
}

/* ── Positions ── */
.gal-card[data-pos="0"] {
  transform: translateX(0) rotateY(0deg) scale(1);
  z-index: 10;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}
.gal-card[data-pos="1"] {
  transform: translateX(260px) rotateY(-28deg) scale(0.84);
  z-index: 8;
}
.gal-card[data-pos="-1"] {
  transform: translateX(-260px) rotateY(28deg) scale(0.84);
  z-index: 8;
}
.gal-card[data-pos="2"] {
  transform: translateX(460px) rotateY(-42deg) scale(0.68);
  z-index: 6;
  opacity: 0.85;
}
.gal-card[data-pos="-2"] {
  transform: translateX(-460px) rotateY(42deg) scale(0.68);
  z-index: 6;
  opacity: 0.85;
}
.gal-card[data-pos="3"] {
  transform: translateX(600px) rotateY(-52deg) scale(0.54);
  z-index: 4;
  opacity: 0.5;
}
.gal-card[data-pos="-3"] {
  transform: translateX(-600px) rotateY(52deg) scale(0.54);
  z-index: 4;
  opacity: 0.5;
}
.gal-card[data-pos="far"] {
  transform: translateX(0) rotateY(0deg) scale(0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* ── Nav buttons ── */
.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

.gallery-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  background: var(--warm-white);
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t), box-shadow var(--t);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.gallery-nav-btn:hover {
  background: var(--beige);
  border-color: var(--beige);
  color: var(--warm-white);
  box-shadow: 0 4px 16px rgba(196,168,130,0.35);
}

/* ── 9. PRICES ──────────────────────────────────── */
.price-section { background: var(--warm-white); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  position: relative;
  transition: border-color var(--t), box-shadow var(--t);
}
.price-card:hover {
  border-color: var(--beige-mid);
  box-shadow: 0 4px 20px rgba(196,168,130,0.12);
}
.price-card--featured {
  border-color: var(--beige);
  background: var(--warm-white);
}
.price-card-icon { color: var(--beige); margin-bottom: var(--sp-1); }
.price-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown-dark);
}
.price-card p { font-size: 13px; color: var(--brown-mid); line-height: 1.6; flex: 1; }
.price-card-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--beige);
  margin-top: var(--sp-1);
}
.price-card-badge {
  position: absolute;
  top: -10px;
  right: var(--sp-3);
  background: var(--beige);
  color: var(--warm-white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.price-footer-note {
  text-align: center;
  font-size: 13px;
  color: var(--brown-mid);
  max-width: 560px;
  margin: var(--sp-4) auto 0;
}
.price-footer-note strong { color: var(--brown-dark); }

/* ── 10. ABOUT ──────────────────────────────────── */
.about-section { background: var(--cream); position: relative; overflow: hidden; }
.about-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 350px; height: 350px;
  background: var(--blush);
  border-radius: 55% 45% 60% 40% / 50% 55% 45% 50%;
  opacity: 0.4;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-images {
  position: relative;
  height: 480px;
}
.about-img {
  border-radius: 14px;
  object-fit: cover;
  position: absolute;
  background: var(--warm-white);
  padding: 5px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.about-img--main {
  width: 70%;
  height: 80%;
  top: 0; left: 0;
}
.about-img--side {
  width: 52%;
  height: 55%;
  bottom: 0; right: 0;
}
.about-badge-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  gap: 1px;
}
.about-copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.about-copy h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}
.about-copy p { font-size: 15px; color: var(--brown-mid); }

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-top: var(--sp-1);
}
.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cert-icon {
  color: var(--beige);
  flex-shrink: 0;
  margin-top: 2px;
}
.cert-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--brown-dark);
}
.cert-item span {
  font-size: 12px;
  color: var(--brown-mid);
}
.cert-coming { font-size: 12px; color: var(--brown-light); font-style: italic; }

/* ── 11. BOOKING ─────────────────────────────────── */
.booking-section { background: var(--warm-white); }
.booking-notice {
  margin-top: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  border-left: 2px solid var(--beige);
  color: var(--brown-mid);
  font-size: 14px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(196,168,130,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  max-width: 1000px;
  margin: 0 auto;
}

/* Calendar */
.cal-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-mid);
  display: block;
  margin-bottom: var(--sp-2);
}
.cal-widget {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--border);
  background: var(--warm-white);
}
.cal-month-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.06em;
}
.cal-nav {
  background: none;
  border: none;
  color: var(--brown-mid);
  cursor: pointer;
  padding: 4px;
  transition: color var(--t);
  display: flex;
}
.cal-nav:hover { color: var(--beige); }
.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: var(--sp-1) 0;
  border-bottom: 1px solid var(--border);
}
.cal-dow span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
  padding: 4px 0;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: var(--sp-1);
}
.cal-day {
  aspect-ratio: 1;
  border: none;
  background: none;
  border-radius: 50%;
  font-size: 13px;
  color: var(--brown-dark);
  cursor: pointer;
  transition: background var(--t), color var(--t);
  font-family: var(--font-body);
  font-weight: 500;
}
.cal-day--empty { visibility: hidden; }
.cal-day--past { color: var(--brown-light); cursor: default; }
.cal-day--off { color: var(--brown-light); cursor: default; background: none; }
.cal-day--available {
  color: var(--brown-dark);
  font-weight: 600;
  background: #E2D4C1;
  border-radius: 50%;
}
.cal-day--available:hover {
  background: var(--beige);
  color: var(--warm-white);
}
.cal-day--selected { background: var(--beige) !important; color: var(--warm-white) !important; }
.cal-day--today { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.cal-legend {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
  font-size: 12px;
  color: var(--brown-mid);
}
.cal-legend-item { display: flex; align-items: center; gap: 6px; }
.cal-legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.cal-legend-dot--green { background: var(--beige); }
.cal-legend-dot--red   { background: var(--border-dark); }

.date-hint {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  color: #c0392b;
}

.booking-contact-note {
  margin-top: var(--sp-4);
  padding: var(--sp-3);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.booking-contact-note strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--brown-dark);
}
.booking-contact-note p { font-size: 13px; color: var(--brown-mid); }
.booking-contact-note .btn { margin-top: var(--sp-1); align-self: flex-start; }

/* Booking panel */
.booking-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.form-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--brown-dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--sp-2);
}
.booking-form { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
}
.label-optional { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--brown-dark);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--t);
  width: 100%;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-color: var(--beige); }

.booking-form fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-2) var(--sp-3) var(--sp-3);
}
.booking-form legend {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
  padding: 0 6px;
}
.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: var(--sp-1); }
.slot-button {
  padding: 8px 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--brown-dark);
  background: var(--warm-white);
  cursor: pointer;
  transition: all var(--t);
  text-align: center;
}
.slot-button:hover:not(:disabled) { border-color: var(--beige); background: var(--beige-light); }
.slot-button.is-selected { background: var(--beige); color: var(--warm-white); border-color: var(--beige); }
.slot-button:disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

.form-status {
  font-size: 13px;
  color: var(--beige);
  min-height: 20px;
  text-align: center;
}

/* Reservations */
.reservations {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-3);
}
.reservations-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}
.reservations-head h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--brown-dark);
}
.clear-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t);
  padding: 0;
}
.clear-btn:hover { color: #c0392b; }
.reservation-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border);
}
.reservation-item:last-child { border-bottom: none; }
.reservation-item strong { font-family: var(--font-display); font-size: 14px; color: var(--brown-dark); }
.reservation-item span { font-size: 12px; color: var(--brown-mid); }
.empty-state { font-size: 12px; color: var(--brown-light); font-style: italic; }

/* ── 12. SCHEDULE PANEL ──────────────────────────── */
.schedule-panel {
  max-width: 1000px;
  margin: 0 auto var(--sp-5);
  padding: 0;
}
.schedule-panel-head {
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.schedule-panel-head h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brown-dark);
}
.schedule-panel-desc {
  font-size: 13px;
  color: var(--brown-mid);
  margin-top: 4px;
}
.schedule-cards {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding-bottom: var(--sp-1);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.sched-card {
  flex: 0 0 190px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sched-card--today { border-color: var(--beige); background: var(--warm-white); }
.sched-card__dow { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; color: var(--brown-light); text-transform: uppercase; }
.sched-card__date { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--brown-dark); display: flex; align-items: center; gap: 6px; }
.sched-today-badge { font-size: 9px; letter-spacing: 0.1em; color: var(--beige); text-transform: uppercase; font-family: var(--font-body); }
.sched-card__time { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--beige); line-height: 1; margin: 4px 0 2px; }
.sched-card__name { font-size: 13px; color: var(--brown-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 4px; }
.sched-card__service { font-size: 11px; color: var(--brown-mid); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.schedule-empty { font-size: 13px; color: var(--brown-light); font-style: italic; }

/* ── 13. ADMIN ───────────────────────────────────── */
.admin-panel-wrap {
  max-width: 1000px;
  margin: 0 auto var(--sp-4);
  padding: var(--sp-4);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  background: rgba(196,168,130,0.04);
}
.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
}
.admin-panel-head h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--beige);
}
.admin-logout-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
  cursor: pointer;
  transition: color var(--t);
  border: none; background: none;
}
.admin-logout-btn:hover { color: var(--brown-dark); }
.admin-book-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.admin-book-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--sp-3);
  align-items: start;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-3);
}
.admin-book-card--confirmed { border-color: rgba(196,168,130,0.5); }
.admin-card-date { display: flex; flex-direction: column; gap: 2px; }
.admin-card-datestr { font-size: 11px; color: var(--brown-mid); letter-spacing: 0.06em; }
.admin-card-time { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--beige); line-height: 1; }
.admin-badge-confirmed { font-size: 10px; color: #27ae60; letter-spacing: 0.1em; margin-top: 4px; }
.admin-card-info { display: flex; flex-direction: column; gap: 2px; }
.admin-card-info strong { font-family: var(--font-display); font-size: 15px; color: var(--brown-dark); }
.admin-card-info span { font-size: 12px; color: var(--brown-mid); }
.admin-card-service { color: var(--brown-light) !important; font-style: italic; }
.admin-card-note { font-size: 11px !important; color: var(--border-dark) !important; }
.admin-card-actions { display: flex; flex-direction: column; gap: var(--sp-1); align-items: flex-end; }
.admin-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid;
  cursor: pointer;
  background: transparent;
  border-radius: 20px;
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.admin-btn--ok  { color: #27ae60; border-color: #27ae60; }
.admin-btn--ok:hover  { background: #27ae60; color: var(--warm-white); }
.admin-btn--del { color: #c0392b; border-color: #c0392b; }
.admin-btn--del:hover { background: #c0392b; color: var(--warm-white); }

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-modal[hidden] { display: none; }
.admin-modal-backdrop { position: absolute; inset: 0; background: rgba(45,32,24,0.6); }
.admin-modal-box {
  position: relative;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  width: min(360px, 90vw);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.admin-modal-title { font-family: var(--font-display); font-size: 22px; color: var(--brown-dark); }
.admin-modal-close {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  background: none; border: none;
  color: var(--brown-mid);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color var(--t);
}
.admin-modal-close:hover { color: var(--brown-dark); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  padding: var(--sp-3) var(--sp-5);
}
.cookie-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.cookie-banner-inner p { flex: 1; font-size: 13px; color: var(--brown-mid); min-width: 200px; }
.cookie-banner-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ── MAP BLOCKED OVERLAY ── */
.map-blocked {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  background: var(--cream);
  z-index: 2;
}
.map-blocked p { font-size: 14px; color: var(--brown-mid); text-align: center; padding: 0 var(--sp-3); }

/* ── GDPR CONSENT CHECKBOX ── */
.gdpr-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--brown-mid);
  line-height: 1.5;
  cursor: pointer;
}
.gdpr-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--beige);
  cursor: pointer;
}

/* ── LINK BUTTON ── */
.link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--beige);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}
.link-btn:hover { color: var(--brown); }

/* ── PRIVACY MODAL ── */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45,32,24,0.6);
  z-index: 1;
}
.privacy-modal-box {
  position: relative;
  z-index: 2;
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: var(--sp-5);
  max-width: 680px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.privacy-modal-box h2 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brown-dark);
  margin-bottom: var(--sp-3);
}
.privacy-modal-box h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--brown-dark);
  margin: var(--sp-3) 0 var(--sp-1);
}
.privacy-content p { font-size: 14px; color: var(--brown-mid); line-height: 1.7; }

/* ── FOOTER LEGAL ── */
.footer-legal {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--brown-light);
  margin-top: 4px;
}
.footer-legal .link-btn { font-size: 12px; color: var(--brown-light); }
.footer-legal .link-btn:hover { color: var(--beige); }

.admin-field { display: flex; flex-direction: column; gap: 6px; }
.admin-field span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-mid);
}
.admin-field input {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--brown-dark);
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-body);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--t);
}
.admin-field input:focus { border-color: var(--beige); }
.admin-error { font-size: 12px; color: #c0392b; min-height: 16px; }

/* ── 14. MAP ─────────────────────────────────────── */
.map-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.map-embed-wrap { position: absolute; inset: 0; }
.map-embed-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-tint {
  position: absolute;
  inset: 0;
  background: rgba(250,248,245,0.15);
  pointer-events: none;
}
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: var(--sp-5);
  pointer-events: none;
}
.map-card {
  pointer-events: auto;
  background: rgba(250,248,245,0.97);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-4);
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.map-card h2 { font-size: 28px; color: var(--brown-dark); }
.map-card address { font-size: 14px; color: var(--brown-dark); line-height: 1.8; }
.map-details p { font-size: 13px; color: var(--brown-mid); line-height: 1.65; }

/* ── 15. FOOTER ──────────────────────────────────── */
.footer {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-6);
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--sp-6) var(--sp-5);
}
.footer-brand { display: flex; align-items: flex-start; gap: var(--sp-3); }
.footer-hex-wrap {
  position: relative;
  width: 40px;
  height: 46px;
  flex-shrink: 0;
}
.footer-hex-wrap svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.footer-logo-img {
  position: absolute;
  inset: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  object-fit: cover;
  border-radius: 50%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.footer-brand span {
  display: block;
  font-size: 12px;
  color: var(--brown-mid);
  font-family: var(--font-body);
  margin-bottom: 4px;
}
.footer-brand address { font-size: 12px; color: var(--brown-light); letter-spacing: 0.04em; }

.footer-backtop {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-backtop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--beige);
  color: var(--beige);
  font-size: 20px;
  text-decoration: none;
  transition: background var(--t), color var(--t);
}
.btn-backtop:hover { background: var(--beige); color: var(--warm-white); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-social strong {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 4px;
}
.footer-social a {
  font-size: 13px;
  color: var(--brown-mid);
  letter-spacing: 0.04em;
  transition: color var(--t);
  font-family: var(--font-body);
}
.footer-social a:hover { color: var(--beige); }

.fb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brown-mid) !important;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 11px;
  color: var(--brown-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ── 16. LIGHTBOX ────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(45,32,24,0.96);
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; }
.lb-figure {
  position: relative;
  z-index: 1;
  max-width: 80vw;
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 80vw;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius);
  transition: opacity 0.2s;
}
.lb-counter {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: rgba(250,248,245,0.6);
  letter-spacing: 0.1em;
  margin-top: var(--sp-2);
  font-family: var(--font-body);
}
.lb-thumbs {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  max-width: 90vw;
  margin-top: var(--sp-2);
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--beige-mid) transparent;
}
.lb-thumb-item {
  flex: 0 0 52px;
  height: 52px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--t);
  border: 2px solid transparent;
}
.lb-thumb-item.is-active { opacity: 1; border-color: var(--beige); }
.lb-thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.lb-btn {
  position: absolute;
  z-index: 2;
  background: rgba(250,248,245,0.1);
  border: 1px solid rgba(250,248,245,0.2);
  color: var(--cream);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t);
}
.lb-btn:hover { background: rgba(250,248,245,0.2); }
.lb-close { top: var(--sp-3); right: var(--sp-3); }
.lb-prev { left: var(--sp-3); top: 50%; transform: translateY(-50%); }
.lb-next { right: var(--sp-3); top: 50%; transform: translateY(-50%); }

/* ── 17. RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 var(--sp-3);
  }
  .brand { order: 2; }
  .menu-toggle { order: 1; display: flex; }
  .menu-toggle-label { display: block; }
  .nav-end { order: 3; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(250,248,245,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: var(--sp-4);
    gap: var(--sp-3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { font-size: 14px; color: var(--brown-dark); }

  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: var(--sp-4) var(--sp-3); }
  .hero-logo-col { display: flex; margin: 0 auto; order: -1; }
  .hero-hex-frame { width: 200px; height: 228px; }
  .hero-text-col { order: 0; }
  .hero-ctas { justify-content: center; }

  .about-layout { grid-template-columns: 1fr; }
  .about-images { height: 280px; }
  .booking-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-4); padding: var(--sp-5) var(--sp-3); }
}

@media (max-width: 600px) {
  .gallery-track {
    height: 260px;
    perspective: none;
  }
  .gal-card {
    width: 210px;
    height: 210px;
    margin-top: -105px;
    margin-left: -105px;
    padding: 8px;
    border-radius: 12px;
    transform-style: flat;
  }
  /* Flat 2D positions — no rotateY */
  .gal-card[data-pos="0"]  { transform: translateX(0)     scale(1);    z-index: 10; box-shadow: 0 10px 32px rgba(0,0,0,0.22); }
  .gal-card[data-pos="1"]  { transform: translateX(180px)  scale(0.82); z-index: 8;  opacity: 1; }
  .gal-card[data-pos="-1"] { transform: translateX(-180px) scale(0.82); z-index: 8;  opacity: 1; }
  .gal-card[data-pos="2"]  { transform: translateX(320px)  scale(0.66); z-index: 6;  opacity: 0.7; }
  .gal-card[data-pos="-2"] { transform: translateX(-320px) scale(0.66); z-index: 6;  opacity: 0.7; }
  .gal-card[data-pos="3"]  { transform: translateX(430px)  scale(0.52); z-index: 4;  opacity: 0.4; }
  .gal-card[data-pos="-3"] { transform: translateX(-430px) scale(0.52); z-index: 4;  opacity: 0.4; }
  .price-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .strip-inner { flex-wrap: wrap; justify-content: center; }
  .strip-sep { display: none; }
  .section { padding: var(--sp-5) var(--sp-3); }
  .gallery-section { padding-bottom: 6px; }
  .gallery-section .section-intro { margin-bottom: 6px; }
  .price-section { padding-top: 6px; }
  .hero-ctas .btn { width: 100%; }
  .map-section { height: auto; display: flex; flex-direction: column; }
  .map-embed-wrap { position: relative; height: 280px; flex-shrink: 0; }
  .map-tint { position: absolute; inset: 0; }
  .map-overlay { position: relative; inset: auto; display: block; padding: var(--sp-3); background: var(--cream); }
  .map-card { max-width: 100%; box-shadow: none; border: 1px solid var(--border); }
  .admin-book-card { grid-template-columns: 1fr; gap: var(--sp-2); }
  .admin-card-actions { flex-direction: row; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 18. SCROLLBAR / FOCUS ───────────────────────── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--beige-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--beige-mid); }

:focus-visible { outline: 2px solid var(--beige); outline-offset: 3px; }
