:root {
  color-scheme: light;
  /* Brand from FB cover / post — pastel craft fair */
  --bg: #ffffff;
  --bg-tint: #fff6ec;
  --bg-wash: #e8f6f6;
  --surface: #ffffff;
  --ink: #3d5a54;
  --ink-strong: #2a3f3b;
  --muted: #5f7a74;
  --line: #f0d9b5;
  --peach: #f5c56b;
  --peach-deep: #e8a83a;
  --coral: #e07a3d;
  --teal: #2f8f7b;
  --teal-deep: #247a69;
  --sky: #7ec8d4;
  --lilac: #b07ad4;
  --red: #e24b4b;
  --blue: #4aa3d9;
  --yellow: #f0c43a;
  --accent: var(--coral);
  --accent-deep: var(--teal-deep);
  --focus: var(--teal);
  --radius: 16px;
  --font-display: "Trebuchet MS", "Segoe UI", ui-rounded, system-ui, sans-serif;
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --shadow: 0 10px 28px rgba(61, 90, 84, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal-deep);
}

a:hover {
  color: var(--coral);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink-strong);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, #fff 90%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(61, 90, 84, 0.12);
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.01em;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  font-size: 0.92rem;
}

.site-header nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.site-header nav a:hover,
.site-header nav a.nav-fb:hover {
  color: var(--coral);
}

.nav-fb {
  color: var(--teal-deep) !important;
}

/* —— Hero —— */
.hero {
  padding: 2.75rem 0 2.5rem;
  border-bottom: none;
  background:
    radial-gradient(900px 420px at 85% 0%, #dff5f5 0%, transparent 55%),
    radial-gradient(700px 380px at 10% 20%, #ffe9c8 0%, transparent 50%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hero-copy {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.title-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.title-brand .line-petit {
  display: block;
  color: var(--coral);
}

.title-brand .marche {
  display: block;
  letter-spacing: 0.02em;
}

.title-brand .marche span:nth-child(1) {
  color: #2f8f7b;
}
.title-brand .marche span:nth-child(2) {
  color: #b07ad4;
}
.title-brand .marche span:nth-child(3) {
  color: #e24b4b;
}
.title-brand .marche span:nth-child(4) {
  color: #f0c43a;
}
.title-brand .marche span:nth-child(5) {
  color: #4aa3d9;
}
.title-brand .marche span:nth-child(6) {
  color: #e07a3d;
}

.title-brand .line-home {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.35rem 0 1rem;
  color: var(--peach-deep);
  font-size: 0.95rem;
}

.flourish .heart {
  color: #e24b4b;
}

.lede {
  margin: 0 auto 1.1rem;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 34rem;
  text-wrap: pretty;
}

.event-line {
  margin: 0 auto 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-strong);
}

.event-line .date-accent {
  color: var(--coral);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
}

/* —— Sections —— */
.section {
  padding: 3rem 0;
}

.section.tint {
  background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%);
  border-block: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}

.section.wash {
  background: linear-gradient(180deg, var(--bg-wash) 0%, #fff 100%);
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--teal-deep);
}

.section h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--coral);
}

.section p {
  margin: 0 0 1rem;
  text-wrap: pretty;
}

.section-head {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

/* —— Category cards —— */
.cats {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
  gap: 1rem;
}

.cats li {
  margin: 0;
  padding: 0;
}

.cats figure {
  margin: 0;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cats figure:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(61, 90, 84, 0.12);
}

.cats img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-tint);
}

.cats figcaption {
  padding: 0.7rem 0.85rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  color: var(--teal-deep);
  line-height: 1.3;
  font-family: var(--font-display);
}

.callout {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.callout-lead {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--coral);
  text-wrap: pretty;
}

.callout ul {
  margin: 0;
  padding-left: 1.15rem;
}

.callout li + li {
  margin-top: 0.55rem;
}

.price-list {
  font-size: 1.05rem;
  color: var(--ink-strong);
}

.price-list li + li {
  margin-top: 0.45rem;
}

.plain {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
}

.steps li + li {
  margin-top: 0.75rem;
}

/* —— Forms —— */
.form-intro {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.35rem;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label,
.field legend {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink-strong);
  background: #fff;
}

.field input:focus,
.field textarea:focus,
.radio input:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-color: var(--teal);
}

.radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  min-height: 44px;
}

.fine {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--sky) 22%, #fff);
  border: 1px solid color-mix(in srgb, var(--teal) 28%, var(--line));
  color: var(--ink-strong);
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--coral);
  color: #fff;
  border-color: color-mix(in srgb, var(--coral) 80%, #000);
}

.btn.primary:hover {
  background: #c9652e;
  color: #fff;
}

.btn.ghost {
  background: #fff;
  color: var(--teal-deep);
  border-color: var(--line);
}

.btn.ghost:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}

.btn:focus-visible,
.site-header nav a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

/* —— Footer —— */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 4px solid var(--peach);
  background: linear-gradient(180deg, #2f8f7b 0%, #247a69 100%);
  color: #f7fffc;
  text-align: center;
}

.footer-inner p {
  margin: 0 0 0.4rem;
}

.footer-logo {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.site-footer .muted {
  color: #d4f0e8;
  margin-top: 0.75rem;
  font-size: 0.92rem;
}

.footer-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link:hover {
  color: #ffe9c8;
}

@media (max-width: 800px) {
  .field-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cats figure {
    transition: none;
  }
}
