/*
Theme Name: HAEVA AESTHETIC
Theme URI: https://haeva-aesthetic.com
Description: Thème sur mesure pour HAEVA AESTHETIC - Cabinet technico-esthétique haut de gamme à Vendays-Montalivet.
Author: HAEVA
Version: 2.3
Text Domain: haeva
*/

/* =========================================
   HAEVA AESTHETIC — Design System
   Palette : beige + crème + doré chaud
   ========================================= */

:root {
  --gold-deep: #9c7a45;
  --gold: #b8945f;
  --gold-light: #d4b88a;
  --gold-pale: #ead8b9;

  --cream: #faf6f0;
  --cream-warm: #f5efe6;
  --beige: #ebe1d2;
  --beige-dark: #c9b89a;

  --ink: #2a2622;
  --ink-soft: #5b4f44;
  --ink-mute: #8a7e72;

  --white: #ffffff;
  --black-soft: #1a1715;

  --shadow-sm: 0 2px 8px rgba(60, 40, 20, 0.06);
  --shadow-md: 0 10px 30px rgba(60, 40, 20, 0.08);
  --shadow-lg: 0 20px 60px rgba(60, 40, 20, 0.12);

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --container-max: 1240px;
  --radius: 2px;
  --radius-lg: 6px;

  --ease: cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition: 0.35s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

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

a { color: var(--gold-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

ul { list-style: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============= TYPOGRAPHY ============= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 300; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; letter-spacing: -0.005em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h4 { font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 500; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
}

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 1rem auto 0;
}

/* ============= LAYOUT ============= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }

.section-head { text-align: center; margin-bottom: clamp(50px, 6vw, 80px); }
.section-head h2 { margin-top: 0; }

.section-cta { display: flex; justify-content: center; margin-top: clamp(40px, 5vw, 60px); }

/* ============= BUTTONS ============= */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-card {
  background: transparent;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  padding: 14px 32px;
  margin-top: auto;
}
.btn-card:hover {
  background: var(--gold);
  color: var(--white);
}

.main-nav .btn-nav,
.btn-nav {
  padding: 11px 22px;
  font-size: 0.72rem;
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.main-nav .btn-nav:hover,
.btn-nav:hover {
  background: var(--gold-deep);
  color: var(--white);
  border-color: var(--gold-deep);
}

/* ============= HEADER ============= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(250, 246, 240, 0.96);
  border-bottom-color: var(--beige);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link { display: block; line-height: 0; }
.logo-img { height: 56px; width: auto; transition: height var(--transition); }
.site-header.scrolled .logo-img { height: 46px; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:not(.btn):hover::after { width: 100%; }
.main-nav a:not(.btn):hover { color: var(--gold-deep); }

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 28px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
  margin-left: auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.98);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(42, 38, 34, 0.55) 0%,
      rgba(42, 38, 34, 0.35) 35%,
      rgba(42, 38, 34, 0.1) 60%,
      rgba(42, 38, 34, 0) 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero .eyebrow {
  color: var(--gold-pale);
  margin-bottom: 1.6rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.6rem;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============= METHODE ============= */
.methode {
  background: var(--cream-warm);
  position: relative;
}

.methode::before, .methode::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--gold);
}
.methode::before { top: 50px; }
.methode::after { bottom: 50px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: 30px;
}

.pillar {
  text-align: center;
  padding: 20px 10px;
}

.pillar-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 18px;
}
.pillar-num::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 30px; height: 1px;
  background: var(--gold-light);
}

.pillar h3 {
  margin-bottom: 18px;
  font-weight: 500;
}

.pillar p {
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.methode-closer {
  text-align: center;
  margin-top: clamp(50px, 6vw, 80px);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-style: italic;
  color: var(--gold-deep);
  letter-spacing: 0.01em;
}

/* ============= SOINS ============= */
.soins { background: var(--cream); }

.soins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 48px);
}

.soin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--beige);
}
.soin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.soin-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--beige);
}
.soin-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.soin-card:hover .soin-media img { transform: scale(1.04); }

.soin-body {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.soin-title {
  margin-bottom: 8px;
  font-weight: 500;
}

.soin-baseline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-deep);
  margin-bottom: 18px;
  letter-spacing: 0.005em;
}

.soin-desc {
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.soin-benefits {
  margin-bottom: 22px;
}
.soin-benefits li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.95rem;
}
.soin-benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 1.5px;
  background: var(--gold);
}

.soin-note {
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-bottom: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--beige);
}

.soin-card .btn-card { align-self: flex-start; }

/* ============= TARIFS ============= */
.tarifs {
  background: var(--cream-warm);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 44px);
}

.tarif-block {
  background: var(--white);
  padding: clamp(28px, 3vw, 42px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tarif-block .tarif-list {
  margin-bottom: 24px;
}
.tarif-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tarif-block-full {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.tarif-cta {
  align-self: flex-start;
  margin-top: auto;
}
.tarif-block-full .tarif-cta {
  align-self: center;
}

.tarif-block h3 {
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--gold-light);
}

.tarif-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.tarif-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--beige);
}
.tarif-list li:last-child { border-bottom: none; padding-bottom: 0; }

.tarif-name {
  color: var(--ink);
  font-size: 0.95rem;
  flex: 1;
}
.tarif-name em {
  font-style: normal;
  color: var(--ink-mute);
  font-size: 0.85rem;
  margin-left: 4px;
}

.tarif-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-deep);
  white-space: nowrap;
}

/* ============= CONTACT ============= */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
  margin-bottom: clamp(40px, 5vw, 70px);
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.info-block h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.info-block p, .info-block li {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.hours-list li span:last-child { color: var(--ink-soft); }

.link-underline {
  position: relative;
  display: inline-block;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.link-underline:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

.contact-cta { margin-top: 10px; align-self: flex-start; }

.contact-form-wrap {
  background: var(--white);
  padding: clamp(32px, 4vw, 50px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-weight: 500;
  margin-bottom: 14px;
}

.form-note {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--beige);
  line-height: 1.6;
}
.form-note a {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  font-style: normal;
  font-weight: 500;
  padding-bottom: 1px;
}
.form-note a:hover {
  color: var(--gold);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field textarea {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.contact-form button { align-self: flex-start; margin-top: 8px; }

.contact-map {
  width: 100%;
  aspect-ratio: 21 / 8;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.4) sepia(0.15);
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--black-soft);
  color: rgba(255, 255, 255, 0.7);
  padding-top: clamp(60px, 7vw, 90px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 50px);
  padding-bottom: 60px;
}

.footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  max-width: 340px;
  margin-top: 6px;
}

.footer-logo {
  height: 220px !important;
  width: auto !important;
  max-width: none !important;
  filter: brightness(1.1) contrast(0.95);
  display: block;
  margin-top: -50px !important;
  margin-bottom: -50px !important;
}

.footer-hours {
  list-style: none;
  padding: 0;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-hours li span:last-child {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.footer-col h4 {
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.legal-links { display: flex; gap: 26px; flex-wrap: wrap; }
.legal-links a { color: rgba(255, 255, 255, 0.55); }
.legal-links a:hover { color: var(--gold-light); }

/* ============= ANIMATIONS ============= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============= RESPONSIVE ============= */

/* Tablette landscape & petits desktops */
@media (max-width: 1100px) {
  :root { --container-max: 100%; }
  .container { padding: 0 32px; }
}

/* Tablette portrait */
@media (max-width: 980px) {
  .pillars { grid-template-columns: 1fr; gap: 40px; max-width: 620px; margin-left: auto; margin-right: auto; }
  .soins-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand .footer-logo { margin-left: auto; margin-right: auto; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .contact-cta { align-self: stretch; text-align: center; }
}

/* Mobile (toutes orientations) */
@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }
  section { padding: 70px 0; }
  .container { padding: 0 24px; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(85vw, 360px);
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    padding: 100px 36px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .main-nav a {
    font-size: 1rem;
    letter-spacing: 0.16em;
    display: block;
    padding: 4px 0;
  }
  .main-nav .btn-nav {
    width: 100%;
    text-align: center;
    padding: 14px 22px;
    margin-top: 8px;
  }

  .hero {
    min-height: 90vh;
    min-height: 90dvh;
    padding: 130px 0 80px;
  }
  .hero-media img { object-position: 72% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(42, 38, 34, 0.55) 0%,
        rgba(42, 38, 34, 0.35) 45%,
        rgba(42, 38, 34, 0.45) 100%);
  }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; max-width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .legal-links { justify-content: center; }

  .contact-map { aspect-ratio: 4 / 3; min-height: 280px; }
}

/* Mobile portrait standard */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  section { padding: 60px 0; }

  h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  h3 { font-size: 1.25rem; }

  .eyebrow { font-size: 0.7rem; letter-spacing: 0.22em; margin-bottom: 0.9rem; }
  .lead { font-size: 1.05rem; }

  .btn {
    padding: 14px 24px;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    width: auto;
  }

  .logo-img { height: 50px; }
  .site-header.scrolled .logo-img { height: 42px; }

  .pillar { padding: 10px 0; }
  .pillar-num { font-size: 1.9rem; margin-bottom: 14px; padding-bottom: 14px; }

  .soin-body { padding: 26px 22px; }
  .soin-baseline { font-size: 1.05rem; }

  .tarif-block { padding: 26px 22px; }
  .tarif-list li {
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 0;
  }
  .tarif-name { flex: 1 1 100%; font-size: 0.92rem; }
  .tarif-price { flex: 0 0 auto; font-size: 1.1rem; }

  .contact-form-wrap { padding: 26px 22px; }
  .info-block { padding-bottom: 0; }

  .footer-logo { height: 200px !important; margin-top: -70px !important; margin-bottom: -45px !important; }
  .footer-brand p { font-size: 1rem; }
  .legal-links { gap: 18px; font-size: 0.78rem; }
}

/* Très petit mobile */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.85rem; line-height: 1.18; }
  h2 { font-size: 1.55rem; }
  .hero { padding: 120px 0 70px; }
  .btn { padding: 13px 20px; font-size: 0.72rem; letter-spacing: 0.16em; }
  .logo-img { height: 44px; }
  .main-nav { width: 92vw; padding: 90px 24px 32px; }
}

/* Mobile en mode paysage (hauteur faible) */
@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  .hero-title { font-size: 2.2rem; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 1.6rem; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .hero-ctas .btn { width: auto; }
}

/* ============= ACCESSIBILITÉ ============= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

::selection { background: var(--gold-pale); color: var(--ink); }


/* ============= PAGES LÉGALES (mentions, CGV, politique) ============= */
.page-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink);
}

.page-content > h1 {
  margin-bottom: 50px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-light);
  font-weight: 400;
}

.page-content h2 {
  margin-top: 70px;
  margin-bottom: 22px;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 500;
  color: var(--ink);
}

.page-content h2:first-child,
.page-content > *:first-child + h2,
.page-content > p:first-child + h2 {
  margin-top: 30px;
}

.page-content h3 {
  margin-top: 45px;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-deep);
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}

.page-content p {
  margin-bottom: 20px;
}

.page-content p em:first-child {
  display: block;
  margin-bottom: 30px;
  color: var(--ink-mute);
  font-size: 0.95rem;
}

.page-content ul,
.page-content ol {
  margin: 0 0 28px 24px;
  padding: 0;
}

.page-content ul li,
.page-content ol li {
  margin-bottom: 10px;
  padding-left: 6px;
  line-height: 1.7;
}

.page-content ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.page-content ul li {
  position: relative;
  padding-left: 26px;
}

.page-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
}

.page-content a {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 1px;
  transition: color 0.35s, border-color 0.35s;
}
.page-content a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.page-content strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 600px) {
  .page-content { font-size: 0.98rem; line-height: 1.75; }
  .page-content h2 { margin-top: 50px; margin-bottom: 16px; }
  .page-content h3 { margin-top: 32px; }
  .page-content > h1 { margin-bottom: 36px; padding-bottom: 18px; }
}
