/* Generic template — design is fixed here. The agent only fills the two brand
   palette tokens below. The contrast system (--ink/--bg/--surface) is LOCKED:
   brand colors never touch body text or backgrounds, so readability can't break. */

:root {
  /* brand palette — the ONLY colors the agent sets */
  --brand-primary: #0e7c6b;
  --brand-accent: #f2a900;

  /* locked contrast system — do not change */
  --ink: #15233b;
  --muted: #5b6b82;
  --bg: #ffffff;
  --surface: #f5f7fb;
  --line: #e3e8f0;
  --on-brand: #ffffff;

  --radius: 14px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

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

/* buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.08s ease, filter 0.15s ease;
}
.btn:hover { filter: brightness(0.95); transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-primary { background: var(--brand-primary); color: var(--on-brand); }
.btn-accent { background: var(--brand-accent); color: var(--on-brand); }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-logo { height: 40px; width: auto; }
.brand-name { font-size: 1.25rem; font-weight: 600; }
.header-cta { padding: 9px 18px; }

/* hero */
.hero { padding: 96px 0 72px; background: linear-gradient(180deg, var(--surface), var(--bg)); }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0 0 18px; max-width: 16ch; }
.hero-sub { font-size: 1.2rem; color: var(--muted); max-width: 52ch; margin: 0 0 30px; }

/* sections */
section { padding: 64px 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 32px; }

/* services */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.service-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.service-card p { margin: 0; color: var(--muted); }

/* about */
.about { background: var(--surface); }
.about-inner { max-width: 70ch; }
.about-body { font-size: 1.1rem; }

/* contact */
.contact-line { font-size: 1.1rem; }
.booking-placeholder {
  margin-top: 24px;
  padding: 32px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.booking-placeholder .btn { margin-top: 12px; }

/* footer */
.site-footer { padding: 40px 0; border-top: 1px solid var(--line); }
.footer-tagline { font-size: 1.05rem; margin: 0 0 6px; }
