@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('assets/fonts/bricolage-grotesque-v9-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('assets/fonts/bricolage-grotesque-v9-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('assets/fonts/bricolage-grotesque-v9-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('assets/fonts/bricolage-grotesque-v9-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary:        #526b4f;
  --primary-dim:    #465e43;
  --primary-soft:   #ceeac7;
  --primary-tint:   #e2f2dd;

  --secondary:      #476976;
  --secondary-soft: #c4e8f7;

  --bg:             #fcffdc;
  --surface:        #ffffff;
  --surface-low:    #fcf9f2;
  --surface-mid:    #f6f4eb;
  --surface-high:   #f0eee5;

  --ink:            #2a2a24;
  --ink-soft:       #5a5a52;
  --ink-mute:       #818178;
  --line:           #e3e1d7;

  --accent:         #c98a59;

  --radius-sm:      .5rem;
  --radius:         1rem;
  --radius-lg:      1.5rem;
  --radius-xl:      2rem;

  --shadow-sm:      0 2px 8px rgba(40,40,30,.04);
  --shadow:         0 6px 24px rgba(40,40,30,.06);
  --shadow-lg:      0 16px 48px rgba(40,40,30,.10);

  --font-headline:  'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:      system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;

  --container:      72rem;
  --gutter:         1.5rem;
}

#accueil, #approche, #pour-qui, #troubles, #parcours, #faq, #contact {
  scroll-margin-top: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
h2 { font-size: clamp(1.75rem, 1.4rem + 1.7vw, 2.75rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--primary-soft); color: var(--primary-dim); }

.skip-link {
  position: absolute;
  top: 0; left: 0;
  background: var(--ink);
  color: #fff;
  padding: .5rem 1rem;
  z-index: 100;
  text-decoration: none;
  transform: translateY(-110%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: .4rem 1rem;
  background: rgba(82, 107, 79, .12);
  color: var(--primary-dim);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  align-self: flex-start;
}
.eyebrow--dark { background: rgba(40,40,30,.06); color: var(--ink-soft); }

@media (max-width: 859px) {
  .eyebrow--hero {
    display: inline;
    font-size: .92rem;
    text-align: center;
  }
  .eyebrow__sep { display: none; }
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(252, 255, 220, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(40,40,30,.04);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .85rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}
.nav__brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__brand-name {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: var(--ink);
}
.nav__brand-role {
  font-size: .72rem;
  color: var(--ink-mute);
  letter-spacing: .03em;
}

.nav__links {
  display: none;
  gap: 1.75rem;
}
.nav__links a {
  font-family: var(--font-headline);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  padding: .25rem 0;
  transition: color .2s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--primary);
  border-radius: 2px;
  transition: width .25s ease;
}
.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--primary);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after { width: 100%; }

.nav__cta {
  display: none;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-headline);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
  box-shadow: var(--shadow-sm);
}
.nav__cta:hover { background: var(--primary-dim); transform: translateY(-1px); }

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 0 var(--gutter);
  background: rgba(252,255,220,.97);
  border-top: 0px solid var(--line);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height .38s cubic-bezier(.4,0,.2,1),
    opacity    .28s ease,
    padding    .38s cubic-bezier(.4,0,.2,1),
    border-top-width .38s;
}
.nav__mobile.is-open {
  max-height: 32rem;
  opacity: 1;
  padding: 1rem var(--gutter) 1.5rem;
  border-top-width: 1px;
}
.nav__mobile a {
  font-family: var(--font-headline);
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
}
.nav__mobile-cta {
  margin-top: .75rem;
  background: var(--primary);
  color: #fff !important;
  text-align: center;
  border-radius: 999px;
  padding: .85rem 1rem !important;
  border: none !important;
}

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

.btn-top {
  position: fixed;
  bottom: 3.5rem;
  left: 1.5rem;
  z-index: 45;
  width: 46px;
  height: 46px;
  background: rgba(252, 255, 220, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(82, 107, 79, .35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transform: scale(.75) translateY(8px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.2,1), border-color .2s ease, background .2s ease;
}
.btn-top.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.btn-top:hover  { background: rgba(252,255,220,.85); border-color: var(--primary); }
.btn-top:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
@media (min-width: 860px) { .btn-top { display: none !important; } }

.fab-call {
  position: fixed;
  bottom: 3.5rem;
  right: 1.5rem;
  z-index: 45;
  width: 58px;
  height: 58px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(82,107,79,.42);
  opacity: 0;
  transform: scale(.75) translateY(12px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.2,1);
}
.fab-call.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  animation: fab-breathe 4.5s ease-in-out infinite;
}
.fab-call::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(82,107,79,.45);
  z-index: -1;
  opacity: 0;
}
.fab-call.is-visible::after {
  animation: fab-ping 4.5s ease-in-out infinite;
}
.fab-call:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}

@keyframes fab-breathe {
  0%, 100% { transform: scale(1);    box-shadow: 0 6px 24px rgba(82,107,79,.42); }
  50%       { transform: scale(1.07); box-shadow: 0 10px 32px rgba(82,107,79,.58); }
}
@keyframes fab-ping {
  0%, 65%, 100% { transform: scale(1);    opacity: 0; }
  35%            { transform: scale(1.3); opacity: .1; }
}

@media (min-width: 860px) {
  .fab-call { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(82, 107, 79, .25);
}
.btn--primary:hover {
  background: var(--primary-dim);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(82, 107, 79, .35);
}
.btn--ghost {
  background: transparent;
  color: var(--primary-dim);
  border: 1.5px solid rgba(82, 107, 79, .25);
}
.btn--ghost:hover {
  background: var(--primary-tint);
  border-color: var(--primary);
}

.hero {
  position: relative;
  padding: clamp(7rem, 10vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  will-change: transform;
}
.shape--1 {
  width: 320px; height: 320px;
  background: var(--primary-soft);
  top: 10%; left: -8%;
  animation: floatA 18s ease-in-out infinite;
}
.shape--2 {
  width: 260px; height: 260px;
  background: var(--secondary-soft);
  bottom: 5%; right: -5%;
  animation: floatB 22s ease-in-out infinite;
}
.shape--3 {
  width: 180px; height: 180px;
  background: var(--accent);
  opacity: .15;
  top: 50%; left: 35%;
  animation: floatA 26s ease-in-out infinite reverse;
}

@keyframes floatA {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(40px, -30px); }
}
@keyframes floatB {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-50px, 20px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 860px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
  justify-content: center;
}
.hero__title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw + 1rem, 4.5rem);
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0;
}
.hero__title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 700;
  font-size: 62px;
}
@media (max-width: 639px) {
  .hero__title em { font-size: 30px; }
}
.hero__lede {
  font-size: clamp(1.05rem, .9rem + .4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 32rem;
  line-height: 1.55;
  margin: 0;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: .25rem;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: .5rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.hero__chips svg { color: var(--primary); }

.hero__media {
  position: relative;
  display: flex;
  width: 100%;
}
.hero__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary-soft);
  box-shadow: var(--shadow-lg);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.hero__photo:hover { transform: scale(1.01); }
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
@media (min-width: 860px) {
  .hero__media { height: 100%; min-height: 30rem; }
  .hero__photo {
    aspect-ratio: auto;
    height: 100%;
    flex: 1;
  }
}

.hero__quote {
  position: absolute;
  bottom: -24px; left: -24px;
  background: #fff;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  max-width: 18rem;
  box-shadow: var(--shadow-lg);
  margin: 0;
  border: 1px solid var(--line);
}
@media (max-width: 859px) {
  .hero__quote {
    left: 0;
    bottom: -16px;
  }
}
.hero__quote blockquote {
  margin: 0 0 .35rem;
  font-style: italic;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.hero__quote figcaption {
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.section--soft {
  background: var(--surface-low);
}
.section__head {
  max-width: 56rem;
  margin: 0 auto 3.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}
.section__head h2 { margin: 0; }
.section__head p { color: var(--ink-soft); margin: 0; }
.section__head .eyebrow { align-self: center; }

.approche__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 860px) {
  .approche__grid { grid-template-columns: 1fr 1.2fr; }
}
.approche__media {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
}

@media (max-width: 859px) {
  .approche__content { order: -1; }
  .approche__media   { order: 1;  }
}
.approche__photo {
  margin: 0;
  width: 100%;
  max-width: 30rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--primary-soft);
  position: relative;
}
.approche__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.approche__photo:hover img { transform: scale(1.03); }
.approche__photo figcaption {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: .45rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary-dim);
  letter-spacing: .04em;
}

.approche__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.approche__content h2 { margin: 0; }
.approche__content p { margin: 0; }
.approche__content .eyebrow { margin-bottom: .25rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 559px) {
  .stats { grid-template-columns: 1fr; gap: 1rem; }
}
.stat__num {
  display: block;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.5rem, 2vw + .5rem, 2rem);
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat__label {
  display: block;
  font-size: .85rem;
  color: var(--ink-mute);
  margin-top: .35rem;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-soft);
  box-shadow: var(--shadow);
}
.card--feature {
  background: var(--primary-tint);
  border-color: var(--primary-soft);
}
.card__icon {
  width: 56px; height: 56px;
  background: var(--primary);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color:var(--surface) ;
  margin-bottom: .35rem;
}
.card--feature .card__icon { background: #fff; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.4rem; margin: 0; }
.card > p { color: var(--ink-soft); margin: 0; }
.card ul {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-top: .25rem;
}
.card ul li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-soft);
  font-size: .95rem;
}
.card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  opacity: .7;
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.troubles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .troubles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .troubles { grid-template-columns: repeat(3, 1fr); } }
.troubles li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .25s ease, box-shadow .35s ease;
  isolation: isolate;
}
.troubles li::before {
  content: '';
  position: absolute;
  inset: -1px;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    var(--primary)        0deg,
    var(--primary-dim)   90deg,
    var(--primary-soft) 180deg,
    var(--primary-tint) 270deg,
    var(--primary)      360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
          mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: -1;
}
.troubles li:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(82,107,79,.08);
}
.troubles li:hover::before {
  opacity: 1;
  animation: rotate-border 4s linear infinite;
}
@keyframes rotate-border {
  to { --border-angle: 360deg; }
}
.troubles strong {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  color: var(--ink);
}
.troubles span {
  font-size: .9rem;
  color: var(--ink-mute);
}
.troubles__cta {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  cursor: pointer;
}
.troubles__cta:hover {
  background: var(--primary-dim) !important;
  border-color: var(--primary-dim) !important;
  transform: translateY(-3px);
}
.troubles__cta a {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  text-decoration: none;
  color: #fff;
  width: 100%;
  height: 100%;
}
.troubles__cta strong {
  color: #fff;
  font-family: var(--font-headline);
  font-size: 1.15rem;
}
.troubles__cta span {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.troubles__cta svg {
  margin-bottom: .25rem;
  color: #fff;
}

.parcours__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 860px) {
  .parcours__grid { grid-template-columns: 1fr 1.4fr; }
}
.parcours__aside { align-self: start; }
.pco-encart {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}
.pco-encart h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 .75rem;
}
.pco-encart p {
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.65;
}
@media (min-width: 860px) {
  .parcours__aside {
    position: sticky;
    top: 6rem;
  }
}
.parcours__aside > * + * { margin-top: 1rem; }
.callout {
  background: var(--primary-tint);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
.callout strong {
  font-family: var(--font-headline);
  color: var(--primary-dim);
  display: block;
  margin-bottom: .25rem;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.callout p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps::before {
  content: '';
  position: absolute;
  top: 24px; bottom: 24px;
  left: 23px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-soft) 50%, transparent);
  border-radius: 1px;
  z-index: 0;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  position: relative;
  align-items: start;
}
.step__num {
  width: 48px; height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(82,107,79,.3);
}
.step h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.step p { color: var(--ink-soft); margin: 0; }

.faq__list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.qa {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.qa[open] {
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-sm);
}
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: '';
  width: 12px; height: 12px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.qa[open] summary::after { transform: rotate(-135deg); }
.qa p {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 860px) {
  .contact__grid { grid-template-columns: 1fr 1.3fr; }
}
.contact__phone {
  background: linear-gradient(135deg, var(--primary), var(--primary-dim));
  color: #fff;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .5rem;
  min-height: 22rem;
  box-shadow: 0 14px 40px rgba(82,107,79,.25);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.contact__phone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,.15), transparent 60%);
  pointer-events: none;
}
.contact__phone:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(82,107,79,.35); }
.contact__phone svg { color: rgba(255,255,255,.85); }
.contact__phone-label {
  font-family: var(--font-headline);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .8rem;
  opacity: .85;
}
.contact__phone-num {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw + .5rem, 2.5rem);
  letter-spacing: -.01em;
  margin-top: .25rem;
}
.contact__phone-hint {
  font-size: .9rem;
  opacity: .85;
  margin-top: .5rem;
}

.contact__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.contact__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
}
@media (max-width: 599px) {
  .contact__info { grid-template-columns: 1fr; }
  .contact__col { justify-content: flex-start; }
}
.info-block h3 {
  font-size: 1.05rem;
  color: var(--primary-dim);
  margin-bottom: .5rem;
}
.info-block p { color: var(--ink-soft); margin: 0 0 .5rem; font-size: .95rem; }
.info-note {
  font-size: .85rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: .35rem !important;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
  transition: gap .25s ease;
}
.link-arrow:hover { gap: .65rem; }
.link-arrow span { transition: transform .25s ease; }
.link-arrow:hover span { transform: translateX(2px); }

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.hours th, .hours td {
  text-align: left;
  padding: .35rem 0;
  border-bottom: 1px dashed var(--line);
  font-weight: 400;
  color: var(--ink-soft);
}
.hours th { color: var(--ink); width: 6rem; }

.footer {
  background: var(--bg);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.footer__brand strong {
  font-family: var(--font-headline);
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
}
.footer__brand span { font-size: .85rem; color: var(--ink-mute); }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.footer__nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s ease;
}
.footer__nav a:hover { color: var(--primary); }
.footer__copy {
  font-size: .8rem;
  color: var(--ink-mute);
  margin: 0;
}
.footer__eco {
  color: var(--ink-mute);
  text-decoration: none;
}
.footer__eco:hover { color: var(--primary); }
.footer__joker {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.footer__joker:hover { text-decoration: underline; }
#ecoindex-badge:empty { display: none; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.js .reveal--delayed { transition-delay: .15s; }
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .shape, .orbit, .float-1, .float-2, .float-3, .wave { animation: none !important; }
}

.map { margin-top: 2.5rem; border-radius: var(--radius-lg, 16px); overflow: hidden; box-shadow: var(--shadow-sm); }
.map__placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .85rem; text-align: center; padding: 2.25rem 1.5rem; min-height: 15rem; background: var(--primary-tint, rgba(82,107,79,.06)); border: 1px dashed var(--primary-soft, rgba(82,107,79,.35)); border-radius: inherit; }
.map__pin { color: var(--primary); flex: none; }
.map__addr { font-weight: 700; color: var(--ink); }
.map__note { font-size: .8rem; color: var(--ink-mute); max-width: 44ch; line-height: 1.5; }
.map__note a { color: var(--primary); }
.map iframe { width: 100%; aspect-ratio: 16 / 7; border: 0; display: block; }
.map-go { display: flex; justify-content: center; margin-top: 1.25rem; }
@media (max-width: 640px) { .map iframe { aspect-ratio: 4 / 3; } }
