/* ==========================================================================
   RESET & VARIABLES
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --primary: #4a3a57;
  --primary-2: #6b5a78;

  --ink: #1f2937;
  --muted: #6b7280;

  --bg: #f6f6f8;
  --card: #ffffff;
  --border: #e5e7eb;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 18, 27, .06);

  --hero-in: 1.5s;
  --hero-btn-gap: .15s;
  --hero-btn-dur: .45s;
  --hero-overlay-top: .4;
  --hero-overlay-btm: .3;
}

/* No jump when locking scroll */
html{
  scrollbar-width: none;
  -ms-overflow-style: none;
  scrollbar-gutter: stable both-edges;
}
html::-webkit-scrollbar{ width: 0; height: 0; }
html.menu-open,
html.no-scroll{ overflow: hidden; }   /* two possible classes used */

/* ==========================================================================
   BASE TYPO / UTILITIES
   ========================================================================== */
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3{
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ink);
  line-height: 1.2;
}
h1{ font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
h2{ font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: .6rem; }
h3{ font-size: 1.35rem; }

a{ color: inherit; text-decoration: none; }
a:hover,
a:focus-visible{ color: var(--primary); }

:where(a, button, input, textarea, select):focus-visible{
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 8px;
}

.container{ width: min(1100px, 92%); margin: 2.2rem auto; }

section[id]{ scroll-margin-top: 84px; }
#home{ scroll-margin-top: 0; }

/* Skip link */
.skip-link{
  position: absolute; left: -9999px; top: 0;
  background: #000; color: #fff;
  padding: .5rem .75rem; z-index: 10000;
}
.skip-link:focus{ left: .5rem; top: .5rem; border-radius: 6px; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header{
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: .9rem 1rem;
  display: flex; align-items: center; gap: 1rem;
}

.logo{ height: 52px; }
.logo-link{ display: inline-flex; align-items: center; }

/* Desktop nav */
.nav{ margin-left: 2rem; }
.nav ul{
  list-style: none;
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 1.6rem;
}
.nav a{
  position: relative;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600; letter-spacing: .2px; line-height: 1.1;
  font-size: 1.4rem; padding: .35rem 0 .55rem;
  text-transform: none; color: var(--ink);
}
.nav a::after{
  content: "";
  position: absolute; left: 50%; bottom: -4px;
  width: 46%; height: 2px; background: var(--primary); border-radius: 2px;
  opacity: 0; transform: translateX(-50%) scaleX(.6);
  transition: transform .28s ease, opacity .28s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.active::after,
.nav a[aria-current="page"]::after{
  opacity: 1; transform: translateX(-50%) scaleX(1);
}
.nav a:hover{ color: var(--primary); }

/* Header actions (desktop) */
.header-actions{
  margin-left: auto;
  display: flex; align-items: center; gap: .8rem;
}

.btn-cta{
  background: var(--primary); color: #fff;
  padding: .7rem 1rem; border-radius: 10px;
  font-weight: 700; display: inline-block;
}
.btn-cta:hover{ background: var(--primary-2); }

.btn-ghost{
  border: 1px solid var(--border);
  padding: .6rem .9rem; border-radius: 10px;
}
.btn-ghost:hover{ border-color: var(--primary); color: var(--primary); }

/* ==========================================================================
   BURGER
   ========================================================================== */
.nav-toggle{
  display: none; position: relative;
  width: 44px; height: 44px; margin-left: auto;
  border: none; background: transparent; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 2100; /* above overlay */
}
.nav-toggle:focus-visible{ outline: 2px solid var(--primary); outline-offset: 4px; border-radius: 999px; }

.nav-toggle .bar{
  position: absolute; left: 50%;
  width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transform: translateX(-50%);
  transition: transform .28s ease, opacity .2s ease;
}
.nav-toggle .bar:nth-child(1){ top: 13px; }
.nav-toggle .bar:nth-child(2){ top: 21px; }
.nav-toggle .bar:nth-child(3){ top: 29px; }

.nav-toggle.is-open{ position: fixed; top: 12px; right: 12px; z-index: 2100; }
.nav-toggle.is-open .bar:nth-child(1){ top: 21px; transform: translateX(-50%) rotate(45deg); }
.nav-toggle.is-open .bar:nth-child(2){ opacity: 0; }
.nav-toggle.is-open .bar:nth-child(3){ top: 21px; transform: translateX(-50%) rotate(-45deg); }

/* ==========================================================================
   MOBILE OVERLAY NAV
   ========================================================================== */
@media (max-width: 768px){
  .header-inner{
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    gap: .6rem; padding: .7rem .9rem;
  }

  .logo-link{ grid-column: 2 / 3; justify-self: center; }
  .nav-toggle{ grid-column: 3 / 4; justify-self: end; display: inline-block; }

  .header-actions{ display: none; }
  .nav{ display: none; margin-left: 0; }

  .nav.open{
    display: flex; position: fixed; inset: 0; z-index: 2000;
    background: #fff; color: var(--ink);
    padding: 18vh 2rem 2rem;
    align-items: flex-start; justify-content: center;
    animation: overlayFade .18s ease;
  }
  .nav.open ul{
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
  }
  .nav.open a{
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600; color: var(--ink);
    font-size: 1.5rem; text-transform: none; border: none;
  }
  .nav.open a:hover{ color: var(--primary); }

  @keyframes overlayFade{ from{ opacity: 0; } to{ opacity: 1; } }

  /* Keep logo clickable above overlay */
  html.menu-open .logo-link{ position: relative; z-index: 2001; }
}

/* Bottom area inside overlay (Instagram) */
.overlay-bottom{
  position: fixed; left: 0; right: 0; bottom: 18px; z-index: 2001;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.overlay-note{ font-size: .92rem; color: var(--muted); letter-spacing: .2px; }

.social-ig{
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem .85rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--border);
  font-weight: 700; text-decoration: none;
}
.social-ig::before{
  content: "";
  width: 18px; height: 18px; display: inline-block;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><rect x='3' y='3' width='18' height='18' rx='5' stroke='%231f2937' stroke-width='2'/><circle cx='12' cy='12' r='4.5' stroke='%231f2937' stroke-width='2'/><circle cx='17.5' cy='6.5' r='1.2' fill='%231f2937'/></svg>");
}
.social-ig:hover{ border-color: var(--primary); color: var(--primary); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position: relative;
  min-height: 72vh;
  display: grid; place-items: center;
  text-align: center; color: #fff;
  background:
    linear-gradient(180deg, rgba(22,20,26, var(--hero-overlay-top)), rgba(22,20,26, var(--hero-overlay-btm))),
    url('../img/sakura%20fond.jpg') center/cover no-repeat;
}

.hero__inner{
  opacity: 0; transform: translateY(30px); will-change: opacity, transform;
  animation: heroFadeUp var(--hero-in) ease-in-out forwards;
}

.hero__actions{
  margin-top: 1.2rem;
  display: flex; justify-content: center; gap: .8rem;
  opacity: 0; will-change: opacity;
  animation: fadeOnly var(--hero-btn-dur) ease-out forwards;
  animation-delay: calc(var(--hero-in) + var(--hero-btn-gap));
}

.hero h1{ color: #fff; margin-bottom: .6rem; }
.hero p{ color: #eee; font-size: 1.1rem; }

@keyframes heroFadeUp{ from{ opacity: 0; transform: translateY(30px); } to{ opacity: 1; transform: translateY(0); } }
@keyframes fadeOnly{ from{ opacity: 0; } to{ opacity: 1; } }

/* ==========================================================================
   SECTIONS / CARDS / PRICING / ABOUT
   ========================================================================== */
.intro p{ max-width: 70ch; }

/* Services */
.services h2{ margin-bottom: 1rem; }
.services__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.service{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service:hover,
.service:focus-within{
  transform: translateY(0px);
  box-shadow: 0 16px 40px rgba(16, 18, 27, .10);
  border-color: rgba(74, 58, 87, .25);
}

.service__media{ position: relative; aspect-ratio: 4 / 3; background: #f3f4f6; }
.service__media img{
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}

.badge{
  position: absolute; right: .8rem; bottom: .8rem;
  background: rgba(255,255,255,.92); color: var(--ink);
  padding: .35rem .6rem; border-radius: 999px;
  font-weight: 700; font-size: .9rem;
  border: 1px solid var(--border);
}

.service__content{ padding: 1rem 1.1rem; }
.service__content h3{ margin-bottom: .35rem; }
.service__content p{ color: var(--muted); }

/* Pricing */
.pricing__grid{
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.4rem;
}
.pricing table{
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; box-shadow: var(--shadow);
}
.pricing thead th{ background: #f3f4f6; color: var(--ink); }
.pricing th, .pricing td{ padding: .8rem; text-align: left; border-bottom: 1px solid var(--border); }
.pricing p{ color: var(--muted); }

/* Note au-dessus du tableau des tarifs */
.pricing__note{
  margin: .35rem 0 .9rem;
  padding: .7rem .9rem;


  border-radius: 12px;
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 900px){
  .pricing__grid{ grid-template-columns: 1fr; }
}

/* About */
.about{ background: #fff; padding: 10px 0; }

.about__wrap{
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 2rem;
}
.about__media{
  width: clamp(140px, 16vw, 200px); aspect-ratio: 3 / 4;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.about__media img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.about__content .lead{ color: var(--muted); margin: .6rem 0 1rem; }

@media (max-width: 900px){
  .about__wrap{ grid-template-columns: 1fr; }
  .about__media{ margin: 0 auto .75rem; width: clamp(140px, 55vw, 220px); }
}

/* Certifications grid */
.cert-icons{
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .9rem; margin: 1rem auto 0; width: fit-content; max-width: 100%;
}
.cert-icon{
  --size: 64px;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: .55rem .7rem; box-shadow: var(--shadow);
}
.cert-icon img{
  width: var(--size); height: var(--size); object-fit: cover;
  border-radius: 999px; border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.cert-icon span{ font-size: .85rem; font-weight: 700; color: var(--muted); }

/* ==========================================================================
   CONTACT : LAYOUT + FORM
   ========================================================================== */
.contact h2{ text-align: center; margin-bottom: 1.4rem; }

.contact__grid{
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 1.2rem;
}
.contact__card{
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.2rem;
}

.form .row{ display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field{ display: flex; flex-direction: column; gap: .35rem; margin-bottom: .8rem; }

.form input,
.form textarea{
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .8rem; background: #fafafa; font-size: 1rem;
}
.form :where(input, textarea):focus{
  border-color: var(--primary); background: #fff; outline: none;
}

.form textarea{ resize: vertical; min-height: 120px; max-height: 320px; }

.interest-list{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .4rem .8rem;
}

.form button.btn-cta{ margin-top: .2rem; }

.btn-map{ display: inline-flex; align-items: center; gap: .4rem; margin-top: .6rem; }

@media (max-width: 900px){
  .contact__grid{ grid-template-columns: 1fr; }
  .form .row{ grid-template-columns: 1fr; }
}

/* Form actions (button + message) */
.form__actions{
  display: flex; align-items: center; gap: 1rem; flex-wrap: nowrap;
  min-width: 0; margin-top: .2rem;
}
.form__actions .btn-cta{ flex: 0 0 auto; }

.form-note{
  flex: 1 1 auto; min-width: 0; margin: 0;
  display: flex; align-items: center; gap: .55rem;
  font-size: .98rem; line-height: 1.3;
  padding: .6rem .8rem; border-radius: 12px; border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.7));
  box-shadow: 0 6px 18px rgba(16, 18, 27, .06);
  transition: opacity .35s ease, transform .35s ease;
}
.form-note::before{
  content: "";
  width: 1.05rem; height: 1.05rem; flex: 0 0 1.05rem; border-radius: 50%;
  background: #9ca3af;
}
.form-note.is-ok{ color: #065f46; border-color: #a7f3d0; background: #ecfdf5; }
.form-note.is-ok::before{
  background: #10b981;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
}
.form-note.is-err{ color: #991b1b; border-color: #fecaca; background: #fef2f2; }
.form-note.is-err::before{
  background: #ef4444;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M11 7h2v7h-2V7zm0 8h2v2h-2v-2z"/></svg>') center/contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M11 7h2v7h-2V7zm0 8h2v2h-2v-2z"/></svg>') center/contain no-repeat;
}
/* Hidden state (after 5s) */
.form-note.is-hide{ opacity: 0; transform: translateY(-4px); pointer-events: none; }

@media (max-width: 560px){
  .form__actions{ flex-wrap: wrap; }
}

/* ==========================================================================
   LIGHTBOX (CSS-only)
   ========================================================================== */
.lb{
  position: fixed; inset: 0; z-index: 3000;
  display: none; place-items: center; padding: 2rem;
  background: rgba(0, 0, 0, .72);
  animation: lbIn .18s ease;
}
.lb:target{ display: grid; }

.lb__bg{ position: absolute; inset: 0; display: block; cursor: zoom-out; }

.lb__img{
  position: relative;
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  background: #000;
}

@keyframes lbIn{ from{ opacity: 0; } to{ opacity: 1; } }

/* ==========================================================================
   CONTACT — INFO CARDS (icons + right button)
   ========================================================================== */
.contact-info h3{ margin-bottom: .6rem; }

.info-list{
  list-style: none; padding: 0; margin: 0 0 .8rem 0;
  display: flex; flex-direction: column; gap: .6rem;
}
.info-list li{
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .7rem .8rem;
  border: 1px solid var(--border); border-radius: 12px;
  background: #fff; box-shadow: var(--shadow);
}

.ico{
  width: 1.25rem; height: 1.25rem; flex: 0 0 1.25rem; margin-top: .2rem;
  background: var(--primary);
  -webkit-mask: center/contain no-repeat;
          mask: center/contain no-repeat;
}

/* Phone */
.ico--phone{
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.02-.24 11.36 11.36 0 003.56.57 1 1 0 011 1v3.61a1 1 0 01-1 1A17 17 0 013 5a1 1 0 011-1h3.61a1 1 0 011 1c0 1.22.2 2.42.57 3.56a1 1 0 01-.24 1.02l-2.32 2.21z"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.02-.24 11.36 11.36 0 003.56.57 1 1 0 011 1v3.61a1 1 0 01-1 1A17 17 0 013 5a1 1 0 011-1h3.61a1 1 0 011 1c0 1.22.2 2.42.57 3.56a1 1 0 01-.24 1.02l-2.32 2.21z"/></svg>');
}

/* Mail */
.ico--mail{
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5L4 8V6l8 5l8-5v2z"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5L4 8V6l8 5l8-5v2z"/></svg>');
}

/* Map */
.ico--map{
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 2a7 7 0 00-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 00-7-7zm0 9.5A2.5 2.5 0 119.5 9A2.5 2.5 0 0112 11.5z"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 2a7 7 0 00-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 00-7-7zm0 9.5A2.5 2.5 0 119.5 9A2.5 2.5 0 0112 11.5z"/></svg>');
}

.info-body{ display: flex; flex-direction: column; gap: .15rem; }
.info-label{ font-weight: 700; color: var(--ink); }
.info-value,
.info-value a{ color: var(--ink); }

/* Address card: right-side button vertically centered */
.info-body.has-action{
  display: grid; grid-template-columns: 1fr auto; column-gap: 1rem; align-items: center;
}
.info-body.has-action .info-label,
.info-body.has-action .info-value{ grid-column: 1; }
.info-body.has-action .btn-map{
  grid-column: 2; grid-row: 1 / span 2;
  align-self: center; justify-self: end;
}

.btn-sm{ padding: .55rem .95rem; border-radius: 12px; font-size: .95rem; }

/* Compact variant (~60%) */
.contact-info.is-compact{ --info-scale: .60; font-size: calc(1rem * var(--info-scale)); }
.contact-info.is-compact h3{ font-size: calc(1.2rem * var(--info-scale)); margin-bottom: .45rem; }
.contact-info.is-compact .info-list{ gap: .45rem; }
.contact-info.is-compact .info-list li{
  padding: calc(.55rem * var(--info-scale)) calc(.6rem * var(--info-scale));
  border-radius: calc(12px * var(--info-scale));
  box-shadow: 0 6px 16px rgba(16, 18, 27, .05);
}
.contact-info.is-compact .ico{
  width: calc(1.2rem * var(--info-scale));
  height: calc(1.2rem * var(--info-scale));
  margin-top: calc(.15rem * var(--info-scale));
  background: #4a3a57;
}
.contact-info.is-compact .info-label{ font-weight: 700; }
.contact-info.is-compact .btn-map.btn-sm{
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: calc(.5rem * var(--info-scale));
  padding: calc(.45rem * var(--info-scale)) calc(.75rem * var(--info-scale));
  border-radius: calc(12px * var(--info-scale));
  font-size: inherit;
}

/* ==========================================================================
   FOOTER — simple, moderne, pro (sans encadré)
   ========================================================================== */
.aura-footer{
  --bg1: #f1ebf2;
  --bg2: #e3d8e6;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(31,41,55,.12);
  --primary-fallback: #4a3a57;

  background:
    radial-gradient(900px 260px at 50% -140px, rgba(255,255,255,.70) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
  border-top: 1px solid var(--line);
  color: var(--text);
  padding: 36px 0 16px;

  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ligne du haut */
.aura-footer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 18px;
}

/* Brand */
.aura-footer__brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;

  transition: transform .18s ease, opacity .18s ease;
}
.aura-footer__brand:hover{
  transform: translateY(-1px);
  opacity: .98;
}

.aura-footer__logo{
  width: 44px;
  height: 44px;
  display: block;
  /* pas de cadre, juste un léger relief */
  filter: drop-shadow(0 10px 18px rgba(16,18,27,.10));
}

.aura-footer__brandName{
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: .2px;
  line-height: 1.05;
  color: var(--primary, var(--primary-fallback));
}

/* Quote au centre */
.aura-footer__quote{
  margin: 0;
  flex: 1 1 auto;
  text-align: center;

  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: #374151;



}
/* Slogan plus grand sur téléphone */
@media (max-width: 900px){
  .aura-footer__quote{
    font-size: 1.85rem;   /* augmente si tu veux (ex: 2rem) */
    line-height: 1.15;
  }
}

/* petit trait rose au-dessus */
.aura-footer__quote::before{
  content:"";
  position: absolute;
  left: 50%;
  top: 0;
  width: 46px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(242,166,187,.95);
}

/* Instagram */
.aura-footer__ig{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #374151;
  font-weight: 700;
  flex: 0 0 auto;

  opacity: .92;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}
.aura-footer__ig:hover{
  color: var(--primary, var(--primary-fallback));
  opacity: 1;
  transform: translateY(-1px);
}

.aura-footer__igIcon{
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 6px;
}

.aura-footer__igText{
  letter-spacing: .01em;
}

/* Ligne du bas */
.aura-footer__bottom{
  border-top: 1px solid rgba(31,41,55,.10);
  padding-top: 14px;
}
.aura-footer__bottom small{
  color: var(--muted);
  font-weight: 600;
}

/* Focus a11y */
.aura-footer a:focus-visible{
  outline: 3px solid rgba(242,166,187,.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px){
  .aura-footer__top{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .aura-footer__quote{
    text-align: left;
    padding-top: 10px;
  }
  .aura-footer__quote::before{
    left: 0;
    transform: none;
  }
}

/* Réduction animations */
@media (prefers-reduced-motion: reduce){
  .aura-footer__brand,
  .aura-footer__ig{ transition: none; }
  .aura-footer__brand:hover,
  .aura-footer__ig:hover{ transform: none; }
}





