/* Workshop demo template — system fonts, no external requests, sub-second load */

:root {
  --accent: #0e4d92;
  --accent-dark: color-mix(in srgb, var(--accent) 80%, black);
  --ink: #16202e;
  --ink-soft: #4a5568;
  --bg: #ffffff;
  --bg-alt: #f3f6fa;
  --line: #e3e9f1;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(22, 32, 46, 0.08);
  --star: #f5a623;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px;
}
body.modal-open { overflow: hidden; }

img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 760px; }

h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); letter-spacing: -0.01em; margin-bottom: 0.4em; }
h3 { font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }

.muted { color: var(--ink-soft); }

/* Demo banner */
.demo-banner {
  background: #fff7e0;
  color: #6b5510;
  font-size: 0.85rem;
  text-align: center;
  padding: 8px 40px 8px 16px;
  position: relative;
  border-bottom: 1px solid #f0e2b0;
}
.demo-banner button {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 1.1rem; cursor: pointer; color: inherit;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { font-weight: 800; font-size: 1.05rem; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.nav { display: flex; gap: 20px; margin-left: auto; }
.nav a { color: var(--ink-soft); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.nav a:hover { color: var(--accent); }
.header-cta { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 2px solid transparent; transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 13px 26px; font-size: 1.05rem; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-ghost { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.24); }
.btn-outline { border-color: var(--accent); color: var(--accent); margin-top: 10px; }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent) 60%, color-mix(in srgb, var(--accent) 70%, #38bdf8));
  color: #fff;
  padding: 96px 0 110px;
  background-size: cover; background-position: center;
}
.hero-inner { max-width: 720px; }
.hero-tagline { font-size: clamp(1.1rem, 2.5vw, 1.4rem); opacity: 0.92; margin-top: 10px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.rating-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px; padding: 7px 16px; margin-top: 18px;
  font-size: 0.95rem;
}
.rating-badge .muted { color: rgba(255, 255, 255, 0.85); }
.stars { letter-spacing: 2px; }
.star { color: rgba(255, 255, 255, 0.35); }
.star.on { color: var(--star); }

/* Centered hero variant */
.hero-centered { text-align: center; }
.hero-centered .hero-inner { max-width: 780px; margin: 0 auto; }
.hero-centered .hero-actions { justify-content: center; }
.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: color-mix(in srgb, var(--accent) 75%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

/* USP strip */
.usp-strip { background: var(--ink); color: #fff; padding: 16px 0; }
.usp-inner { display: flex; flex-wrap: wrap; gap: 12px 40px; justify-content: center; }
.usp { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; opacity: 0.95; }
.usp svg { color: #7fb2e5; }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-sub { color: var(--ink-soft); margin-bottom: 36px; }
.intro { font-size: 1.12rem; color: var(--ink-soft); }

/* Services */
.services {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-top: 28px;
}
.service {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 10%, white);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service h3 { margin-bottom: 6px; }
.service p { font-size: 0.92rem; color: var(--ink-soft); }

/* Reviews */
.reviews {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 12px;
}
.review .star { color: #d8dee8; }
.review .star.on { color: var(--star); }
.review p { font-size: 0.95rem; }
.review footer { color: var(--ink-soft); font-size: 0.88rem; font-weight: 600; }
.reviews-link { margin-top: 24px; }
.reviews-link a { color: var(--accent); font-weight: 600; text-decoration: none; }

/* Gallery */
.gallery {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  margin-top: 28px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.25s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* Contact */
.contact-grid { display: grid; gap: 24px; grid-template-columns: 1fr 1.2fr; margin-top: 28px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.contact-card h3 { margin-bottom: 12px; color: var(--accent); }
.contact-link { font-size: 1.25rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.contact-link:hover { color: var(--accent); }
.hours { list-style: none; }
.hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 5px 0; border-bottom: 1px dashed var(--line); font-size: 0.93rem;
}
.hours li:last-child { border-bottom: none; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 320px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

.cta-box {
  margin-top: 48px; text-align: center;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff; border-radius: var(--radius); padding: 44px 24px;
}
.cta-box h3 { justify-content: center; font-size: 1.5rem; margin-bottom: 8px; }
.cta-box p { opacity: 0.9; margin-bottom: 20px; }
.cta-box .btn-accent { background: #fff; color: var(--accent); }

/* Booking form */
.section-accent {
  background: linear-gradient(180deg, var(--bg-alt), #fff);
  border-top: 3px solid var(--accent);
}
.booking-form { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.booking-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--ink-soft);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  font: inherit; color: var(--ink);
  padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  background: #fff;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 45%, white);
  border-color: var(--accent);
}
.form-inline { display: grid; gap: 10px; grid-template-columns: 1.2fr 1fr; }
.booking-form button { align-self: flex-start; cursor: pointer; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); font-weight: 400; }
.booking-done {
  margin-top: 24px; padding: 32px;
  background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.booking-done h3 { color: var(--accent); margin-bottom: 8px; }

/* Activation bar (preview → agency contact) */
.activate-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: #0f172a;
  color: #fff;
  border-top: 3px solid var(--accent);
  box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.18);
}
.activate-bar-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.activate-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.activate-text strong { font-size: 0.95rem; }
.activate-text span { font-size: 0.82rem; color: #cbd5e1; }
.activate-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.activate-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  border: none; cursor: pointer; white-space: nowrap;
}
.activate-call { background: var(--accent); color: #fff; }
.activate-wa { background: #25d366; color: #fff; }
.activate-callback {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.activate-call:hover, .activate-wa:hover { filter: brightness(1.08); }
.activate-callback:hover { background: rgba(255,255,255,0.1); }

.activate-modal[hidden] { display: none !important; }
.activate-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.activate-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.activate-modal-panel {
  position: relative; z-index: 1;
  width: min(100%, 440px);
  background: #fff; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.activate-modal-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; font-size: 1.4rem;
  cursor: pointer; color: var(--ink-soft);
}
.activate-modal-panel h3 { color: var(--accent); margin-bottom: 8px; }
.activate-modal-sub { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 16px; }
.callback-form { display: flex; flex-direction: column; gap: 14px; }
.callback-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--ink-soft);
}
.callback-form input, .callback-form select, .callback-form textarea {
  font: inherit; color: var(--ink);
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px;
}
#callback-done h3 { color: var(--accent); margin-bottom: 8px; }

/* Footer */
.site-footer { background: var(--ink); color: #cbd5e1; padding: 36px 0 22px; margin-top: 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.site-footer .muted { color: #8da2b8; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: #cbd5e1; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }
.demo-note {
  margin-top: 22px; padding-top: 16px; border-top: 1px solid #2c3a4d;
  font-size: 0.78rem; color: #8da2b8;
}

/* Mobile */
@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 16px 20px; gap: 14px;
  }
  body.nav-open .nav { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .hero { padding: 64px 0 72px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-split-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-split-photo img { height: 240px; }
  .form-row { grid-template-columns: 1fr; }
  .activate-bar-inner { flex-direction: column; align-items: stretch; }
  .activate-actions { justify-content: stretch; }
  .activate-btn { flex: 1; justify-content: center; }
  body { padding-bottom: 128px; }
}
