:root {
  --green: #0f6b4c;
  --green-dark: #0a4a35;
  --green-soft: #e7f4ee;
  --navy: #16324f;
  --ink: #1c2430;
  --muted: #5b6673;
  --line: #d7e0d9;
  --paper: #f6f8f5;
  --white: #fff;
  --accent: #c45c26;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(22, 50, 79, 0.08);
  --max: 1160px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
pre.hours-block {
  font-family: inherit;
  background: var(--green-soft);
  padding: .8rem 1rem;
  border-radius: 10px;
  white-space: pre-line;
  margin: .4rem 0 0;
}

.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.container.narrow { width: min(820px, calc(100% - 2rem)); }
.screen-reader-text,
.skip-link {
  position: absolute;
  left: -999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: .5rem 1rem;
  z-index: 1000;
}

/* Trust + header */
.trust-bar {
  background: var(--green-dark);
  color: #e7f4ee;
  font-size: .88rem;
}
.trust-bar-inner {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: .45rem 0;
}
.trust-bar a { color: #fff; }
.sep { opacity: .5; }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 78px;
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--navy);
  text-decoration: none;
}
.logo-mark:hover { text-decoration: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 1.05rem; }
.logo-text span { font-size: .82rem; color: var(--muted); }
.cross {
  width: 34px;
  height: 34px;
  background: var(--green);
  border-radius: 8px;
  position: relative;
}
.cross::before,
.cross::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
}
.cross::before { width: 6px; height: 20px; left: 14px; top: 7px; }
.cross::after { height: 6px; width: 20px; left: 7px; top: 14px; }

.site-nav .menu {
  display: flex;
  gap: .2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.site-nav a {
  display: block;
  padding: .45rem .7rem;
  color: var(--navy);
  font-weight: 600;
  border-radius: 8px;
}
.site-nav a:hover,
.site-nav .current-menu-item > a {
  background: var(--green-soft);
  text-decoration: none;
  color: var(--green-dark);
}

.header-tools { display: flex; align-items: center; gap: .5rem; }
.search-form { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.search-field { border: 0; padding: .4rem .8rem; width: 150px; font: inherit; }
.search-submit, .cart-link, .account-link, .nav-toggle {
  border: 0;
  background: transparent;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-submit { padding: .35rem .7rem; }
.cart-link { position: relative; padding: .35rem; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--accent);
  color: #fff;
  border-radius: 99px;
  font-size: .7rem;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.nav-toggle { display: none; width: 42px; height: 42px; position: relative; }
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: "";
  width: 20px; height: 2px;
  background: var(--navy);
  position: absolute;
  left: 11px;
}
.nav-toggle-bar { top: 20px; }
.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

/* Hero */
.hero {
  background:
    linear-gradient(120deg, rgba(15,107,76,.92), rgba(22,50,79,.88)),
    radial-gradient(circle at 80% 20%, #2a9d6e, transparent 40%);
  color: #fff;
  padding: 4rem 0 4.5rem;
}
.hero-inner { display: grid; grid-template-columns: 1.4fr .8fr; gap: 2.5rem; align-items: center; }
.hero h1, .hero h2 { color: #fff; }
.eyebrow { letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; opacity: .85; }
.hero-lead { font-size: 1.15rem; max-width: 38rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.hero-card a { color: #fff; }
.hero-card .hours-block { background: rgba(0,0,0,.18); color: #fff; }
.hero-note { font-size: .9rem; opacity: .85; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .7rem 1.25rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: #fff; color: var(--green-dark); }
.btn-primary:hover { background: var(--green-soft); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.consult-form .btn-primary,
.cookie-banner .btn-primary { background: var(--green); color: #fff; }
.consult-form .btn-ghost,
.cookie-banner .btn-ghost { color: var(--navy); border-color: var(--line); }

.section { padding: 3.5rem 0; }
.section-head { max-width: 40rem; margin-bottom: 1.8rem; }
.section-head p { color: var(--muted); }

.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.cat-card {
  display: block;
  padding: 2rem;
  border-radius: 18px;
  color: #fff;
  min-height: 230px;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.cat-card:hover { text-decoration: none; transform: translateY(-2px); transition: transform .2s; }
.cat-homme { background: linear-gradient(160deg, #16324f, #1f5c7a); }
.cat-femme { background: linear-gradient(160deg, #6b3a58, #a45d6c); }
.cat-kicker { text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; opacity: .8; }
.cat-card h3 { color: #fff; font-size: 2rem; margin: .3rem 0 .6rem; }
.cat-link { font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.4); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.service-card {
  background: #fff;
  padding: 1.3rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.service-card h3 { margin-top: 0; font-size: 1.15rem; }

.cta-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}
.cta-section .btn-primary { background: var(--green); color: #fff; }

.site-main-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  padding: 2.5rem 0 4rem;
}
body:not(.has-sidebar) .site-main-wrap,
.container.narrow { grid-template-columns: 1fr; }
.page-header { margin-bottom: 1.4rem; }
.entry-content, .legal-content { background: #fff; padding: 1.6rem 1.8rem; border-radius: var(--radius); border: 1px solid var(--line); }
.legal-content h2 { margin-top: 1.6rem; }
.legal-update { color: var(--muted); font-size: .95rem; }
.widget-area .widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem; margin-bottom: 1rem; }
.widget-title { font-size: 1.05rem; margin: 0 0 .6rem; }
.posts-grid { display: grid; gap: 1rem; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.post-body { padding: 1rem 1.2rem 1.3rem; }
.map-embed { width: 100%; min-height: 320px; border: 0; border-radius: var(--radius); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.4rem; }
.contact-list { list-style: none; padding: 0; }
.contact-list li { margin-bottom: 1rem; }

.consult-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; margin-top: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.consult-form label { display: block; font-weight: 600; margin: .7rem 0; }
.consult-form input,
.consult-form select,
.consult-form textarea {
  display: block;
  width: 100%;
  margin-top: .3rem;
  font: inherit;
  padding: .55rem .7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.consult-form .check { font-weight: 500; display: flex; gap: .6rem; align-items: flex-start; }
.consult-form .check input { width: auto; margin-top: .35rem; }
.form-status { min-height: 1.4em; }
.form-status.is-ok { color: var(--green); }
.form-status.is-err { color: #a33; }

.site-footer { background: var(--navy); color: #d7e4ee; padding-top: 3rem; margin-top: 2rem; }
.site-footer .hours-block {
  background: #0c5a40;
  color: #fff;
  border: 1px solid #3aa77a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr 1.1fr; gap: 1.6rem; padding-bottom: 2rem; }
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin: .35rem 0; }
.site-footer .widget-title { color: #fff; }
.logo-mark-light { color: #fff; margin-bottom: 1rem; }
.logo-mark-light .logo-text span { color: #c5d4e0; }
.eu-logo-note { font-size: .85rem; color: #b7c6d3; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.12); padding: 1rem 0 1.4rem; }
.legal-menu { display: flex; flex-wrap: wrap; gap: .4rem 1rem; list-style: none; padding: 0; margin: 0 0 .6rem; font-size: .88rem; }
.copyright { margin: 0; font-size: .85rem; color: #9fb0bf; }

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 720px;
  margin: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  z-index: 80;
  display: none;
  gap: 1rem;
  align-items: center;
}
.cookie-banner.is-open {
  display: flex;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-actions { display: flex; gap: .4rem; }

.error-404 { padding: 4rem 0; text-align: center; }

@media (max-width: 960px) {
  .hero-inner,
  .service-grid,
  .footer-grid,
  .contact-grid,
  .site-main-wrap { grid-template-columns: 1fr; }
  .header-inner { grid-template-columns: auto auto; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding-bottom: 1rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav .menu { flex-direction: column; }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .header-tools { grid-column: 1 / -1; justify-content: flex-end; }
  .search-field { width: 100%; }
  .cat-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
}
