/* ─────────────────────────────────────────────────────────────────────
   Public site design system — energetic, light, photography-led.
   Mobile-first; scales up at 720px / 1024px.
   ───────────────────────────────────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --ink: #14181f;
  --ink-soft: #3a424f;
  --muted: #6b7480;
  --line: #e6eaf0;
  --accent: #ff5a1f;
  --accent-dark: #e0440d;
  --accent-ink: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(20, 24, 31, 0.10);
  --maxw: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.5rem 0; }
.section--alt { background: var(--bg-alt); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; font-weight: 700; color: var(--accent); margin-bottom: 0.5rem; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn { display: inline-block; padding: 0.85rem 1.6rem; border-radius: 999px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; font-size: 1rem; transition: transform .08s ease, background .2s ease; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn--lg { padding: 1rem 2rem; font-size: 1.1rem; }

/* Header / nav */
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav__brand { font-weight: 900; font-size: 1.25rem; text-decoration: none; color: var(--ink); letter-spacing: -0.03em; }
.nav__brand span { color: var(--accent); }
.nav__links { display: none; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav__links a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.nav__links a:hover { color: var(--accent); }
.nav__cta { display: none; }
.nav__toggle { background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; gap: 0.25rem; padding: 0.5rem 1.25rem 1rem; border-bottom: 1px solid var(--line); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.6rem 0; text-decoration: none; color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }

@media (min-width: 860px) {
  .nav__links, .nav__cta { display: flex; }
  .nav__toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* Hero */
.hero { position: relative; color: #fff; background: #14181f url('/images/demo/hero.webp') center/cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(20,24,31,0.82), rgba(20,24,31,0.35)); }
.hero__inner { position: relative; z-index: 1; padding: 5rem 0 5.5rem; max-width: 38ch; }
.hero h1 { color: #fff; }
.hero p { font-size: 1.2rem; color: #e7ebf1; }
.hero .btn-row { margin-top: 1.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero .btn--ghost { color: #fff; border-color: #fff; }

/* Grids + cards */
.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4 / 3; background: var(--bg-alt) center/cover no-repeat; }
.card__body { padding: 1.1rem 1.2rem 1.3rem; }
.card__body h3 { margin-bottom: 0.25rem; }
.card .tag { font-size: 0.78rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.avail { font-size: 0.8rem; font-weight: 700; padding: 0.15rem 0.6rem; border-radius: 999px; }
.avail--yes { background: #eaf7ee; color: #1d7a3a; }
.avail--no { background: #fdecec; color: #c0392b; }
.price { font-size: 1.1rem; font-weight: 800; }

/* Section heading row */
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; flex-wrap: wrap; }

/* Pricing */
.plans { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan { border: 2px solid var(--line); border-radius: var(--radius); padding: 1.75rem 1.5rem; text-align: center; background: #fff; }
.plan--popular { border-color: var(--accent); box-shadow: var(--shadow); position: relative; }
.plan--popular::before { content: "Most popular"; position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.8rem; border-radius: 999px; }
.plan__price { font-size: 2.4rem; font-weight: 900; }
.plan__price small { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 1.25rem 0; text-align: left; }
.plan li { padding: 0.4rem 0 0.4rem 1.6rem; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* Testimonials */
.quote { background: #fff; border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--line); }
.quote p { font-size: 1.05rem; font-style: italic; }
.quote .who { font-weight: 700; margin-top: 0.75rem; }
.stars { color: var(--accent); letter-spacing: 2px; }

/* Schedule table */
.schedule { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.schedule th, .schedule td { padding: 0.7rem 0.9rem; text-align: left; border-bottom: 1px solid var(--line); }
.schedule th { background: var(--bg-alt); font-size: 0.85rem; text-transform: capitalize; }
.schedule .lvl { font-size: 0.72rem; font-weight: 700; padding: 0.1rem 0.5rem; border-radius: 999px; background: #eef1f5; }

/* Gallery */
.gallery { display: grid; gap: 0.75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img { aspect-ratio: 1; object-fit: cover; border-radius: 10px; width: 100%; }

/* Equipment filter */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.filters button { border: 1px solid var(--line); background: #fff; padding: 0.45rem 1rem; border-radius: 999px; cursor: pointer; font-weight: 600; }
.filters button.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Forms */
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-weight: 700; margin-bottom: 0.35rem; }
.form-field input, .form-field textarea { width: 100%; padding: 0.75rem 0.9rem; border: 1px solid #d4dae2; border-radius: 10px; font: inherit; }
.form-field textarea { min-height: 150px; resize: vertical; }

/* Contact layout + map */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
.map-embed { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: var(--radius); }

/* Blog */
.post-list { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
.post-meta { color: var(--muted); font-size: 0.85rem; }
.article { max-width: 720px; margin: 0 auto; }
.article img { border-radius: var(--radius); margin: 1.5rem 0; }

/* Footer */
.site-footer { background: #14181f; color: #aeb6c2; padding: 3rem 0 2rem; margin-top: 2rem; }
.site-footer a { color: #e7ebf1; text-decoration: none; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-grid h4 { color: #fff; margin: 0 0 0.75rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 0.25rem 0; }
.footer-bottom { border-top: 1px solid #232a35; margin-top: 2rem; padding-top: 1.25rem; font-size: 0.85rem; }

.alert { padding: 0.8rem 1rem; border-radius: 10px; margin-bottom: 1rem; }
.alert--ok { background: #eaf7ee; color: #1d7a3a; }
.alert--err { background: #fdecec; color: #c0392b; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
