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

  :root {
    --cream: #FAF8F5;
    --warm-white: #FDFCFA;
    --beige: #F0EDE6;
    --beige-mid: #E8E3DA;
    --stone: #C9C3B8;
    --taupe: #A69D91;
    --text-dark: #2A2520;
    --text-mid: #6B6158;
    --text-light: #9E958A;
    --gold: #B8A080;
    --gold-light: #D4C4A8;
    --accent: #8C7B6B;
    --nav-h: 80px;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

  body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--warm-white);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    max-width: 100%;
  }

  /* ── TYPOGRAPHY ── */
  .serif { font-family: 'Cormorant Garamond', serif; }

  h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }

  .display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
  }

  .section-label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* ── LAYOUT ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
  .container-sm { max-width: 800px; margin: 0 auto; padding: 0 40px; }

  section { padding: 120px 0; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background 0.5s ease, box-shadow 0.5s ease;
  }

  nav.scrolled {
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(184,160,128,0.15);
  }

  .nav-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  .nav-logo span { color: var(--gold); }

  .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
  .nav-hamburger { display: none; }

  .nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--text-dark); }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    padding: 10px 24px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark) !important;
    text-decoration: none;
    transition: background 0.3s, color 0.3s !important;
    cursor: pointer;
  }

  .nav-cta:hover { background: var(--gold) !important; color: white !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .hero-left {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 80px 80px 80px;
    position: relative;
  }

  .hero-left::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 80px;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    font-weight: 400;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.2rem, 5vw, 5rem);
    line-height: 1.06;
    color: var(--text-dark);
    margin-bottom: 32px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 56px;
  }

  .hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

  .btn-primary {
    background: var(--text-dark);
    color: white;
    padding: 16px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--text-dark);
    transition: background 0.3s, color 0.3s;
    display: inline-block;
  }

  .btn-primary:hover { background: transparent; color: var(--text-dark); }

  .btn-ghost {
    color: var(--text-mid);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
  }

  .btn-ghost::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
  }

  .btn-ghost:hover { color: var(--text-dark); }
  .btn-ghost:hover::after { width: 36px; }

  .hero-right {
    position: relative;
    background: var(--beige);
    overflow: hidden;
    min-height: 100vh;
  }

  .hero-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--beige) 0%, var(--beige-mid) 100%);
  }

  .photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: var(--beige-mid);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--taupe);
    position: relative;
  }

  .photo-placeholder svg { opacity: 0.3; }

  .photo-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
  }

  .hero-badge {
    position: absolute;
    bottom: 48px;
    left: -20px;
    background: white;
    padding: 20px 28px;
    box-shadow: 0 8px 40px rgba(42,37,32,0.08);
  }

  .hero-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1;
  }

  .hero-badge-text {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 4px;
  }

  /* ── PHILOSOPHY STRIP ── */
  .philosophy-strip {
    background: var(--text-dark);
    padding: 64px 0;
  }

  .philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
  }

  .phil-item {
    padding: 40px 40px;
    background: var(--text-dark);
    position: relative;
  }

  .phil-item + .phil-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
  }

  .phil-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    display: block;
  }

  .phil-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .phil-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
  }

  /* ── ABOUT ── */
  #about { background: var(--warm-white); }

  .about-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 100px;
    align-items: center;
  }

  .about-img-col { position: relative; }

  .about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--beige-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .about-img-accent {
    position: absolute;
    bottom: -32px;
    right: 0;
    width: 60%;
    aspect-ratio: 1;
    background: var(--beige);
    border: 8px solid var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-content-col { padding: 20px 0; }

  .section-header { margin-bottom: 48px; }
  .section-header .section-label { display: block; margin-bottom: 16px; }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .section-text {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
  }

  .credentials-list { list-style: none; margin: 40px 0; }

  .credentials-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--beige-mid);
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    letter-spacing: 0.02em;
  }

  .credentials-list li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    margin-top: 10px;
    flex-shrink: 0;
  }

  .signature-block {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--beige-mid);
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .signature-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--beige-mid);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--taupe);
    overflow: hidden;
  }

  .signature-text-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
  }

  .signature-text-role {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-top: 3px;
  }

  /* ── APPROACH ── */
  #approach { background: var(--cream); }

  .approach-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
  }

  .approach-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--beige-mid);
  }

  .step-card {
    background: var(--cream);
    padding: 48px 40px;
    position: relative;
  }

  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    color: var(--beige-mid);
    line-height: 1;
    margin-bottom: 24px;
    display: block;
  }

  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .step-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.75;
  }

  /* ── TREATMENTS ── */
  #treatments { background: var(--warm-white); }

  .treatments-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: end;
  }

  .treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--beige-mid);
  }

  .treatment-card {
    background: var(--warm-white);
    padding: 48px 40px;
    transition: background 0.4s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .treatment-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
  }

  .treatment-card:hover { background: var(--cream); }
  .treatment-card:hover::after { width: 100%; }

  .treatment-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 28px;
  }

  .treatment-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .treatment-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
  }

  .treatment-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* ── SAFETY ── */
  #safety {
    background: var(--text-dark);
    color: white;
  }

  .safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .safety-content .section-label { color: var(--gold-light); }

  .safety-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-weight: 400;
    color: white;
    margin-bottom: 32px;
    line-height: 1.15;
  }

  .safety-title em { font-style: italic; color: var(--gold-light); }

  .safety-text {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    margin-bottom: 20px;
  }

  .safety-pillars { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

  .safety-pillar {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
  }

  .pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
  }

  .pillar-text {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    font-weight: 300;
  }

  .safety-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }

  .safety-stat {
    text-align: center;
    padding: 32px;
  }

  .safety-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: white;
    line-height: 1;
  }

  .safety-stat-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 8px;
  }

  .safety-img-area {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: rgba(255,255,255,0.2);
  }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--cream); }

  .testimonials-header { text-align: center; margin-bottom: 64px; }
  .testimonials-header .section-label { display: inline-block; margin-bottom: 20px; }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--beige-mid);
  }

  .testimonial-card {
    background: var(--cream);
    padding: 48px 40px;
  }

  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .testimonial-meta {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--beige-mid);
  }

  .testimonial-name {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    font-weight: 400;
  }

  .testimonial-age {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
  }

  .stars {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: block;
  }

  /* ── CONTACT ── */
  #contact { background: var(--warm-white); }

  .contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 100px;
    align-items: start;
  }

  .contact-info { padding-top: 8px; }

  .contact-block { margin-bottom: 40px; }

  .contact-block-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
  }

  .contact-block-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
  }

  .contact-block-sub {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 300;
  }

  .contact-note {
    margin-top: 48px;
    padding: 24px;
    background: var(--cream);
    border-left: 2px solid var(--gold);
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
  }

  .form-card {
    background: var(--cream);
    padding: 56px 56px;
  }

  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group.full { grid-column: 1 / -1; }

  .form-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 400;
  }

  .form-input, .form-select, .form-textarea {
    background: white;
    border: 1px solid var(--beige-mid);
    padding: 14px 18px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
  }

  .form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
  }

  .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A69D91' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
  }

  .form-submit {
    grid-column: 1 / -1;
    background: var(--text-dark);
    color: white;
    border: 1px solid var(--text-dark);
    padding: 18px 48px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    width: 100%;
  }

  .form-submit:hover { background: transparent; color: var(--text-dark); }

  .form-consent {
    grid-column: 1 / -1;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ── TARIFS ── */
  #tarifs { background: var(--cream); }

  .tarifs-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
  }

  .tarifs-note {
    padding: 24px 28px;
    background: white;
    border-left: 2px solid var(--gold);
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    align-self: end;
  }

  .tarifs-note strong {
    font-weight: 400;
    color: var(--text-dark);
  }

  /* Grille principale 2 colonnes */
  .tarifs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--beige-mid);
    margin-bottom: 2px;
  }

  .tarifs-col {
    background: var(--cream);
    padding: 48px 48px;
  }

  /* Full width */
  .tarifs-full {
    background: var(--cream);
    padding: 48px 48px;
    grid-column: 1 / -1;
  }

  /* En-tête de catégorie */
  .t-cat-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--beige-mid);
  }

  .t-cat-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
  }

  .t-cat-icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
    opacity: 0.7;
  }
  .t-cat-icon svg { width: 100%; height: 100%; }

  .t-cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.1;
  }

  .t-cat-rule {
    flex: 1;
    height: 1px;
    background: var(--beige-mid);
  }

  /* Sous-groupes */
  .t-subgroup {
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 20px 0 8px;
  }
  .t-subgroup:first-of-type { margin-top: 0; }

  .t-subgroup-icon {
    width: 11px; height: 11px;
    opacity: 0.65;
    flex-shrink: 0;
  }
  .t-subgroup-icon svg { width: 100%; height: 100%; }

  /* Ligne de prestation */
  .t-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(200,195,184,0.35);
    gap: 12px;
  }
  .t-item:last-child { border-bottom: none; }

  .t-item-left { flex: 1; min-width: 0; }

  .t-item-name {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dark);
    display: block;
  }

  .t-item-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--text-light);
    display: block;
    line-height: 1.3;
  }

  .t-item-dots {
    flex: 1;
    height: 1px;
    background-image: repeating-linear-gradient(
      to right,
      rgba(184,160,128,0.3) 0px, rgba(184,160,128,0.3) 2px,
      transparent 2px, transparent 7px
    );
    min-width: 20px;
    position: relative;
    top: -4px;
  }

  .t-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    white-space: nowrap;
    text-align: right;
  }

  .t-item-price sup {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 9px;
    vertical-align: super;
    color: var(--gold);
    margin-right: 1px;
  }

  .t-item-price small {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.04em;
  }

  /* Grille Skin Quality 4 colonnes */
  .skin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 36px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    padding: 64px 0 40px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
  }

  .footer-brand { }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
    display: block;
  }

  .footer-logo span { color: var(--gold-light); }

  .footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    line-height: 1.75;
    font-weight: 300;
    max-width: 260px;
  }

  .footer-col-title {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 20px;
  }

  .footer-links { list-style: none; }

  .footer-links li { margin-bottom: 10px; }

  .footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
  }

  .footer-links a:hover { color: white; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    font-weight: 300;
  }

  .footer-legal { display: flex; gap: 28px; }

  .footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
  }

  .footer-legal a:hover { color: rgba(255,255,255,0.6); }

  /* ── LOGO PLACEHOLDER ── */
  .logo-placeholder {
    width: 120px;
    height: 60px;
    border: 1px dashed var(--stone);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 24px;
  }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }

  /* ── DECORATIVE ── */
  .gold-line {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 32px 0;
  }

  /* ── MOBILE HAMBURGER (simplified) ── */
  .nav-toggle { display: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 140px 40px 80px; }
    .hero-right { min-height: 160vw; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-col { position: relative; }
    .about-img-accent { position: absolute; bottom: -16px; right: -16px; width: 38%; aspect-ratio: 1; border: 5px solid var(--warm-white); display: flex; }
    .about-img-main { aspect-ratio: 4/5; max-height: 480px; }
    .treatments-header { grid-template-columns: 1fr; gap: 32px; }
    .treatments-grid { grid-template-columns: 1fr 1fr; }
    .approach-intro { grid-template-columns: 1fr; gap: 32px; }
    .approach-steps { grid-template-columns: 1fr; }
    .safety-grid { grid-template-columns: 1fr; gap: 48px; }
    .safety-img-area { min-height: 300px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .philosophy-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 640px) {
    .container, .container-sm { padding: 0 24px; }
    .about-img-main { aspect-ratio: 3/4; max-height: 420px; }
    section { padding: 80px 0; }
    .treatments-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid .form-group.full { grid-column: 1; }
    .form-card { padding: 36px 28px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .safety-pillars { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(253,252,250,0.98); backdrop-filter: blur(12px); padding: 24px 24px 32px; gap: 20px; z-index: 99; border-top: 1px solid var(--beige-mid); }
    .nav-hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 4px; }
    .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .tarifs-grid { grid-template-columns: 1fr; }
    .tarifs-col, .tarifs-full { padding: 32px 24px; }
    .skin-grid { grid-template-columns: 1fr; gap: 0; }
  }
