@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/cormorant-garamond-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/cormorant-garamond-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bordeaux: #ba0c2f;
  --bordeaux-dark: #8f0924;
  --gray: #acabab;
  --ink: #1c1c1c;
  --ink-soft: #4a4a4a;
  --bg: #ffffff;
  --bg-soft: #f5f4f2;
  --border: #e3e1de;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

a { color: var(--bordeaux); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bordeaux);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header a {
  display: block;
  line-height: 0;
}
.site-header img {
  height: 58px;
  width: auto;
  display: block;
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background: var(--bg-soft);
}
.hero-badge {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bordeaux);
  background: #fff;
  border: 1px solid var(--bordeaux);
  border-radius: 999px;
  padding: .4rem 1rem;
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 1.25rem;
}
.hero p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}
.hero-rule {
  width: 56px;
  height: 3px;
  background: var(--bordeaux);
  margin: 2rem auto 0;
  border: none;
}

/* Page hero (mentions légales / confidentialité) */
.page-hero {
  padding: 3.5rem 0 3rem;
  background: var(--bg-soft);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: .75rem;
}
.page-hero p {
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: .85rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb-sep { margin: 0 .4rem; }

/* Sections */
section { padding: 4.5rem 0; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-align: center;
  margin-bottom: .75rem;
}
.section-lead {
  text-align: center;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.service {
  padding-left: 1.25rem;
  border-left: 3px solid var(--bordeaux);
}
.service h3 {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}
.service p {
  color: var(--ink-soft);
  font-size: .98rem;
  margin: 0;
}

/* Prose (mentions légales / confidentialité) */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 .75rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1rem; }
.prose p { margin: 0 0 1rem; }
.prose ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.prose li { margin-bottom: .4rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.legal-note { font-size: .85rem; color: var(--gray); margin-top: 2.5rem; }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--bordeaux); color: var(--bordeaux); }

/* Contact */
.contact { background: var(--bg-soft); }
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-row { margin-bottom: 1.4rem; }
.form-row:last-of-type { margin-bottom: 0; }
label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.req { color: var(--bordeaux); }
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  padding: .75rem .9rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: #fff;
  min-height: 3rem;
}
select { appearance: auto; }
textarea { min-height: 8rem; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--bordeaux);
  outline-offset: 1px;
  border-color: var(--bordeaux);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 300;
  color: var(--ink-soft);
  cursor: pointer;
}
.form-check input {
  width: auto;
  min-height: auto;
  margin-top: .2rem;
  flex-shrink: 0;
}
.btn-submit {
  width: 100%;
  background: var(--bordeaux);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  min-height: 3rem;
  cursor: pointer;
  margin-top: .5rem;
}
.btn-submit:hover { background: var(--bordeaux-dark); }
.btn-submit:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.form-note {
  text-align: center;
  font-size: .85rem;
  color: var(--ink-soft);
  margin-top: 3rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #d8d8d8;
  padding: 3rem 0 2rem;
  font-size: .92rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.footer-col p { margin: 0 0 .35rem; }
.footer-col a { color: #fff; text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.footer-col-title {
  color: #fff;
  font-weight: 600;
  margin: 0 0 .6rem;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .05em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
  font-size: .82rem;
  color: #9a9a9a;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: #9a9a9a; text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }

@media (max-width: 640px) {
  .hero { padding: 3.5rem 0 3rem; }
  section { padding: 3rem 0; }
  .contact-form { padding: 1.75rem; }
  .form-row-split { grid-template-columns: 1fr; gap: 0; }
}
