:root {
  --paper:        #f7f6f2;
  --paper-2:      #efede7;
  --ink:          #16181a;
  --ink-soft:     #4a4d50;
  --ink-mute:     #8a8d8f;
  --line:         #dedbd3;
  --white:        #ffffff;

  --steel:        #5a6670;
  --steel-light:  #aeb6bd;
  --green-soft:   #e4efe9;
  --brass:        #b98a3e;
  --brand:        #e29c26;
  --brand-dark:   #c8851b;
  --brand-soft:   #f7ebd2;

  --nuit:         #101214;
  --nuit-2:       #16181b;
  --ivoire:       #f3efe6;
  --ivoire-mute:  #b9b4a8;
  --laiton:       #d9b16a;

  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Fraunces", "Georgia", serif;

  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-6: 1.5rem;  --sp-8: 2rem;    --sp-12: 3rem;   --sp-16: 4rem;
  --sp-24: 6rem;

  --r-sm: 0;  --r-md: 0;  --r-lg: 0;  --r-pill: 0;
  --shadow-sm: 0 1px 2px rgba(20,24,26,.06), 0 2px 6px rgba(20,24,26,.04);
  --shadow-md: 0 4px 16px rgba(20,24,26,.08), 0 12px 32px rgba(20,24,26,.06);
  --shadow-lg: 0 8px 28px rgba(20,24,26,.12), 0 24px 64px rgba(20,24,26,.10);

  --max:   1240px;
  --max-narrow: 760px;
  --ease:  cubic-bezier(.4, 0, .2, 1);
  --ease-cine: cubic-bezier(.16, 1, .3, 1);
}

::selection { background: var(--brand-soft); color: var(--ink); }

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color-scheme: light;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

p, li, h1, h2, h3, h4, dd { overflow-wrap: break-word; }

[id] { scroll-margin-top: 90px; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: fixed; top: -100px; left: 12px; z-index: 300;
  background: var(--ink); color: var(--white);
  padding: .7rem 1.1rem; border-radius: var(--r-sm); font-weight: 600; font-size: .9rem;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }

p  { color: var(--ink-soft); text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.eyebrow::before {
  content: "";
  width: 36px; height: 2.5px;
  background: var(--brand);
  display: inline-block;
}

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--sp-6); }
.section  { padding-block: var(--sp-24); }
.section--tight { padding-block: var(--sp-16); }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 56ch; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: .95rem; font-weight: 600;
  padding: .85rem 1.5rem;
  border-radius: var(--r-pill);
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--laiton { background: var(--laiton); color: var(--nuit); }
.btn--laiton:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px -12px rgba(217, 177, 106, .45);
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,246,242,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-top: 5px solid var(--brand);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--line), var(--shadow-sm); }
.nav {
  display: flex; align-items: center; gap: 2.5rem;
  height: calc(72px + 0.7cm);
}
.brand { display: flex; align-items: center; gap: var(--sp-3); margin-right: auto; }
.brand__logo { height: calc(42px + 0.7cm); width: auto; display: block; transition: transform .25s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.03); }

.nav__links { display: flex; align-items: center; gap: var(--sp-6); }
.nav__links a {
  font-size: 1rem; font-weight: 500; letter-spacing: .005em; color: var(--ink-soft);
  position: relative; padding-block: 6px; transition: color .15s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 0;
  border-radius: 2px; background: var(--brand); transition: width .26s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }

.nav__cart {
  position: relative; display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: .68rem 1.15rem; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); font-weight: 600; font-size: .95rem;
  transition: border-color .15s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.nav__cart:hover { border-color: var(--ink); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(20,24,26,.10); }
.nav__cart svg { width: 19px; height: 19px; }
.nav__cart-count {
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--brand); color: var(--ink);
  font-size: .72rem; font-weight: 700;
  border-radius: var(--r-pill); display: grid; place-items: center;
}

.nav__burger { display: none; position: relative; width: 44px; height: 44px; border-radius: var(--r-sm); }
.nav__burger span { position: relative; display: block; width: 22px; height: 2px; background: var(--ink); margin-inline: auto; transition: background .2s var(--ease); }
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink);
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav__burger span::before { top: -7px; }
.nav__burger span::after  { top: 7px; }
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  visibility: hidden;
  transition: visibility 0s linear .32s;
}
.mobile-menu.is-open { visibility: visible; transition-delay: 0s; }
.mobile-menu__overlay {
  position: absolute; inset: 0;
  background: rgba(20,24,26,.42);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .32s var(--ease);
}
.mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(84vw, 340px);
  background: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-2);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu__panel { transform: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-4); }
.mobile-menu__close {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--ink-soft);
  transition: background .15s var(--ease);
}
.mobile-menu__close:hover { background: var(--paper-2); }
.mobile-menu__close svg { width: 22px; height: 22px; }
.mobile-menu__panel a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem .4rem; font-size: 1.05rem; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color .15s var(--ease), padding-left .15s var(--ease);
}
.mobile-menu__panel a:hover { color: var(--brand); padding-left: .8rem; }
.mobile-menu__panel a svg { width: 18px; height: 18px; color: var(--ink-mute); }
.mobile-menu__cta { margin-top: var(--sp-6); }
.mobile-menu__cta .btn { width: 100%; justify-content: center; }
.mobile-menu__meta { margin-top: auto; padding-top: var(--sp-6); font-size: .82rem; color: var(--ink-mute); }

.hero {
  position: relative;
  padding-block: clamp(4rem, 9vw, 8rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 500px at 78% -8%, rgba(31,93,76,.10), transparent 60%),
    radial-gradient(800px 480px at 8% 12%, rgba(90,102,112,.10), transparent 55%),
    radial-gradient(640px 320px at 92% 88%, rgba(226,156,38,.07), transparent 60%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--sp-16); align-items: center; }
.hero h1 { margin-block: var(--sp-4) var(--sp-6); }
.hero .lead { margin-bottom: var(--sp-8); }
.hero__cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.hero__stats { display: flex; gap: var(--sp-8); margin-top: var(--sp-12); }
.hero__stat strong { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--ink); line-height: 1; }
.hero__stat span { font-size: .82rem; color: var(--ink-mute); }

.hero__visual {
  aspect-ratio: 4/5; border-radius: var(--r-lg);
  background:
    linear-gradient(160deg, rgba(255,255,255,.4), transparent),
    linear-gradient(135deg, var(--steel) 0%, var(--ink) 100%);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.hero__badge {
  position: absolute; left: var(--sp-6); bottom: var(--sp-6); z-index: 2;
  background: rgba(247,246,242,.94); border-radius: var(--r-md); padding: var(--sp-4) var(--sp-6);
  box-shadow: var(--shadow-md); max-width: 70%;
}
.hero__badge strong { display: block; font-size: .95rem; }
.hero__badge span { font-size: .82rem; color: var(--ink-mute); }

.section-head { max-width: 640px; margin-bottom: var(--sp-12); }
.section-head.text-center { margin-inline: auto; }
.section-head h2 { margin-block: var(--sp-3) var(--sp-4); }

.espaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.espace-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: var(--sp-8);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  min-height: 230px;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.espace-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.espace-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.espace-card:hover::after { transform: scaleX(1); }
.espace-card__icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--green-soft); color: var(--brand);
  display: grid; place-items: center; margin-bottom: auto;
}
.espace-card__icon svg { width: 26px; height: 26px; }
.espace-card__num {
  position: absolute; top: var(--sp-6); right: var(--sp-6);
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--steel-light);
}
.espace-card h3 { font-size: 1.3rem; margin-top: var(--sp-6); }
.espace-card p  { font-size: .9rem; margin-top: var(--sp-2); color: var(--ink-mute); }
.espace-card__link {
  margin-top: var(--sp-4); font-size: .88rem; font-weight: 600; color: var(--brand);
  display: inline-flex; align-items: center; gap: 6px;
}
.espace-card__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.espace-card:hover .espace-card__link svg { transform: translateX(4px); }

.values { background: var(--nuit); color: var(--ivoire); }
.values .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-8); }

.cta-band {
  background: var(--nuit);
  color: var(--ivoire); border-radius: var(--r-lg);
  padding: var(--sp-16) var(--sp-12);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 50% 100%, rgba(185, 138, 62, .22), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--ivoire-mute); margin: var(--sp-4) auto var(--sp-8); max-width: 50ch; }

.site-footer { background: var(--nuit); color: var(--ivoire); border-top: 5px solid var(--brand); margin-top: auto; }
.site-footer .footer-brand .brand__logo { height: calc(74px + 0.3cm); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-8); padding-block: calc(var(--sp-16) + 0.3cm) calc(var(--sp-12) + 0.3cm); }
.footer-brand p { font-size: 1.05rem; margin-top: var(--sp-4); max-width: 34ch; color: var(--ivoire-mute); }
.footer-col h5 { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(243,239,230,.45); margin-bottom: var(--sp-4); font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-grid > * { min-width: 0; }
.footer-brand p, .footer-col a { overflow-wrap: anywhere; }
.footer-col a { font-size: 1.02rem; color: var(--ivoire-mute); transition: color .15s; }
.footer-col a:hover { color: var(--laiton); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-3) var(--sp-6);
  padding-block: var(--sp-6); border-top: 1px solid rgba(243,239,230,.12);
  font-size: .94rem; color: rgba(243,239,230,.45);
}
.footer-legal { display: inline-flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; }
.footer-legal a { color: rgba(243,239,230,.55); transition: color .15s; }
.footer-legal a:hover { color: var(--laiton); }
.footer-legal .sep { opacity: .5; }
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
}

body.menu-open { overflow: hidden; }

@media (max-width: 1080px) {
  .espaces-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero__visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .values .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-12); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav { gap: var(--sp-4); }
  .nav__links { display: none; }
  .nav__cart span:not(.nav__cart-count) { display: none; }
  .nav__burger { display: grid; place-items: center; }
  .section { padding-block: var(--sp-16); }
  .section--tight { padding-block: var(--sp-12); }
}

@media (max-width: 560px) {
  :root { --sp-24: 4rem; --sp-16: 3rem; }
  .container { padding-inline: var(--sp-4); }
  .espaces-grid { grid-template-columns: 1fr; }
  .values .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: var(--sp-6); flex-wrap: wrap; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .cta-band { padding: var(--sp-12) var(--sp-6); }
}

@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}


.page-hero {
  background:
    radial-gradient(720px 240px at 88% -10%, rgba(226,156,38,.07), transparent 65%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
  border-bottom: 1px solid var(--line);
  padding-block: var(--sp-12);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { margin-top: var(--sp-3); max-width: 60ch; }

.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: var(--sp-2); font-size: .85rem; color: var(--ink-mute); margin-bottom: var(--sp-4); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; flex-shrink: 0; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }

.product-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.product-card__media {
  position: relative; aspect-ratio: 4/3;
  background:
    linear-gradient(160deg, rgba(255,255,255,.5), transparent 60%),
    linear-gradient(135deg, var(--steel-light) 0%, var(--steel) 100%);
  display: grid; place-items: center; overflow: hidden;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__media .placeholder { color: rgba(255,255,255,.9); }
.product-card__media .placeholder svg { width: 56px; height: 56px; }
.product-card__tag {
  position: absolute; top: var(--sp-3); left: var(--sp-3); z-index: 2;
  color: var(--laiton);
  background: rgba(16, 18, 20, .62);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(217, 177, 106, .25);
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill);
}
.product-card__tag--new { background: var(--brand); color: var(--ink); border-color: transparent; }

.product-card__body { padding: var(--sp-6); display: flex; flex-direction: column; flex: 1; }
.product-card__ref { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }
.product-card__body h3 { font-size: 1.2rem; margin-block: 6px var(--sp-2); }
.product-card__body p { font-size: .9rem; color: var(--ink-mute); flex: 1; }

.product-card__opts { display: flex; gap: 6px; margin-top: var(--sp-4); }
.product-card__opts .swatch { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,.08); box-shadow: inset 0 0 0 2px var(--white); }
.swatch--ral { background: conic-gradient(from 90deg, #d8443b, #e08b30, #ecd13f, #4fa64f, #3b9ad8, #3b54c0, #8e44ad, #d8443b); }

.product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: var(--sp-6); }
.product-card__footer .more { font-size: .85rem; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 5px; }
.product-card__footer .more svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.product-card:hover .product-card__footer .more svg { transform: translateX(3px); }
.btn-add {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-soft); color: var(--brand);
  display: grid; place-items: center;
  transition: background .15s var(--ease), transform .15s var(--ease);
}
.btn-add svg { width: 18px; height: 18px; }
.btn-add:hover { background: var(--brand); color: var(--white); transform: scale(1.08); }

@media (max-width: 960px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

.qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: var(--r-pill); overflow: hidden;
}
.qty button {
  width: 34px; height: 34px; display: grid; place-items: center;
  color: var(--ink-soft); transition: background .14s, color .14s;
}
.qty button:hover { background: var(--green-soft); color: var(--brand); }
.qty button svg { width: 16px; height: 16px; }
.qty input {
  width: 42px; text-align: center; border: none; background: transparent;
  font-family: inherit; font-size: .95rem; font-weight: 600; color: var(--ink);
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--paper);
  padding: .85rem 1.4rem; border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 500; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--sp-2);
  opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 100;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: #7fd6b8; flex-shrink: 0; }

.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-8); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field label .req { color: #b4422e; }
.field .hint { font-size: .78rem; color: var(--ink-mute); font-weight: 400; }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: .95rem; color: var(--ink);
  padding: .8rem 1rem; background: var(--paper);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand); background: var(--white);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #d3826f; }
.field .error-msg { font-size: .78rem; color: #b4422e; display: none; }
.field.is-error input, .field.is-error textarea, .field.is-error select { border-color: #d3826f; }
.field.is-error .error-msg { display: block; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

*, *::before, *::after { border-radius: 0 !important; }

.drapeau-fr { border-radius: 2px; box-shadow: 0 0 0 1px rgba(15, 23, 20, .12); flex-shrink: 0; }
.footer-madein { display: flex; align-items: center; gap: var(--sp-2); }
.footer-linkedin svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 2px; }
