:root {
  --clay: #000000;
  --clay-dark: #1a1a1a;
  --cream: #ffffff;
  --cream-2: #f2f2f2;
  --ink: #111111;
  --ink-soft: #555555;
  --line: #dddddd;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, "Times New Roman", serif; line-height: 1.2; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }

/* Accessibility: visible focus states */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, .btn:focus-visible, .filter-btn:focus-visible, .tab-btn:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 2px; border-radius: 4px;
}
button, .btn, .filter-btn, .tab-btn, .shop-filter-btn, .nav-toggle, .cart-item .qty-controls button {
  cursor: pointer;
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-tight { padding: 40px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  color: var(--clay);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  font-size: 0.95rem;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--clay); color: var(--white); }
.btn-primary:hover { background: var(--clay-dark); }
.btn-outline { background: transparent; border-color: var(--clay); color: var(--clay); }
.btn-outline:hover { background: var(--clay); color: var(--white); }
.btn-light { background: var(--white); color: var(--clay); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-book {
  background: var(--ink); color: var(--white); padding: 11px 24px;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem;
  border-radius: 999px; border: 2px solid var(--ink);
}
.btn-book:hover { background: var(--white); color: var(--ink); }

button:disabled, .btn:disabled, button[disabled] {
  opacity: 0.55; cursor: not-allowed; transform: none !important;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; }
.brand img { height: 40px; width: 40px; object-fit: contain; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-weight: 600; color: var(--ink-soft); padding: 8px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--clay); border-color: var(--clay); }
.nav-toggle {
  display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink);
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 16px 24px 24px; gap: 14px; border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  padding: 84px 0 64px;
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 18px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-art {
  aspect-ratio: 4/3; border-radius: var(--radius); background: var(--clay);
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.hero-art svg { width: 55%; height: 55%; }

/* Cards / grids */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.icon-badge {
  width: 52px; height: 52px; border-radius: 50%; background: var(--cream-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--clay);
}
.icon-badge svg { width: 26px; height: 26px; }

.alt-bg { background: var(--cream-2); }

/* Pricing package cards (Kids/Adults style) */
.pkg-section + .pkg-section { margin-top: 56px; }
.pkg-section-title { font-size: 1.7rem; font-weight: 800; margin-bottom: 14px; }
.pkg-divider { height: 4px; background: var(--ink); margin-bottom: 32px; border-radius: 2px; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-grid.pkg-grid-1 { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
@media (max-width: 860px) { .pkg-grid { grid-template-columns: 1fr; max-width: none; } }
.pkg-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; }
.pkg-thumb {
  background: var(--cream-2); border-radius: 10px; height: 170px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; margin-bottom: 22px;
}
.pkg-thumb svg { width: 46px; height: 46px; color: var(--ink-soft); }
.pkg-thumb span { font-size: 0.82rem; color: var(--ink-soft); }
.pkg-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pkg-price-row .price { font-size: 1.8rem; font-weight: 800; }
.pkg-price-row svg { width: 26px; height: 26px; color: var(--ink); }
.pkg-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.95rem; }
.pkg-feature svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; }
.pkg-card .btn { margin-top: auto; }

/* Package / price card */
.price-card { text-align: center; position: relative; }
.price-card .price { font-size: 1.9rem; font-weight: 800; color: var(--clay); margin: 10px 0; }
.price-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 24px; text-align: center; }

/* Gallery */
.gallery-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn, .shop-filter-btn {
  border: 1px solid var(--line); background: var(--white); padding: 12px 20px; min-height: 44px;
  border-radius: 999px; cursor: pointer; font-weight: 600; color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-btn:hover, .shop-filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active, .shop-filter-btn.active { background: var(--clay); color: var(--white); border-color: var(--clay); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; min-height: 220px; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; }
.gallery-item .cap { padding: 12px 14px; font-size: 0.9rem; }
.gallery-empty { text-align: center; color: var(--ink-soft); padding: 40px 0; }

/* Forms */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.9rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 1rem; font-family: inherit; background: var(--white);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--clay); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-msg { padding: 12px 16px; border-radius: 10px; margin-bottom: 18px; font-weight: 600; border: 2px solid var(--ink); }
.form-msg.ok { background: var(--ink); color: var(--white); }
.form-msg.err { background: var(--white); color: var(--ink); border-style: dashed; }

/* Testimonials */
.testimonial { font-style: italic; color: var(--ink-soft); }
.testimonial .who { margin-top: 14px; font-weight: 700; color: var(--ink); font-style: normal; }

/* Footer */
.site-footer { background: var(--ink); color: #eeeeee; padding: 56px 0 24px; }
.site-footer .grid { grid-template-columns: repeat(4, 1fr); margin-bottom: 36px; }
@media (max-width: 860px) { .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.site-footer h4 { color: var(--white); font-size: 1rem; font-family: inherit; }
.site-footer a { color: #cccccc; display: block; margin-bottom: 8px; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px;
  font-size: 0.85rem; color: #cccccc; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0;
  transition: background 0.2s ease;
}
.social-row a:hover { background: rgba(255,255,255,0.18); }
.social-row svg { width: 19px; height: 19px; color: var(--white); }

/* Map */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* Admin */
.admin-shell { min-height: 100vh; background: var(--cream-2); }
.admin-bar { background: var(--ink); color: var(--white); padding: 14px 0; }
.admin-bar .container { display: flex; justify-content: space-between; align-items: center; }
.admin-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; margin-bottom: 24px; }
table.admin-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
table.admin-table th, table.admin-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
table.admin-table th { color: var(--ink-soft); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 24px; }
@media (max-width: 860px) { .stat-grid { grid-template-columns: 1fr 1fr; } }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.stat-card .num { font-size: 1.8rem; font-weight: 800; color: var(--clay); }
.tab-row { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.tab-btn {
  padding: 12px 20px; min-height: 44px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); cursor: pointer; font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tab-btn:hover { border-color: var(--ink); }
.tab-btn.active { background: var(--clay); color: var(--white); border-color: var(--clay); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.btn-sm { padding: 6px 14px; font-size: 0.82rem; }
.btn-danger { background: var(--white); color: var(--ink); border: 2px solid var(--ink); }
.btn-danger:hover { background: var(--ink); color: var(--white); }
.login-box { max-width: 400px; margin: 90px auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }

/* Shop */
.product-card { display: flex; flex-direction: column; }
.product-card .cap { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-price { font-weight: 800; color: var(--ink); }
.product-stock { font-size: 0.78rem; color: var(--ink-soft); }
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; display: none;
}
.cart-overlay.open { display: block; }
.cart-panel {
  position: fixed; top: 0; right: -420px; width: 400px; max-width: 92vw; height: 100%;
  background: var(--white); z-index: 201; box-shadow: -8px 0 24px rgba(0,0,0,0.15);
  transition: right 0.25s ease; overflow-y: auto;
}
.cart-panel.open { right: 0; }
.cart-panel-inner { padding: 24px; }
.cart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.cart-item { display: flex; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cart-item .qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item .qty-controls button { width: 26px; height: 26px; border: 1px solid var(--line); background: var(--white); cursor: pointer; border-radius: 6px; }
.cart-total { font-weight: 800; font-size: 1.1rem; padding: 16px 0; border-top: 2px solid var(--ink); margin-top: 8px; display: flex; justify-content: space-between; }
