/* =====================================================================
   Maison Luméa — Institut de beauté · Pétange (Luxembourg)
   GridCore Express · Caminho Standard Premium
   Paleta: clair chaud (ivoire + espresso + or champagne)
   Display: Cormorant Garamond · Corpo/eyebrows: Jost
   ===================================================================== */

:root {
  --gc-bg:        #F6EFE6; /* ivoire chaud / crème lin */
  --gc-bg-2:      #ECDFCF; /* sable doux — secções alternadas */
  --gc-bg-card:   #FBF7F1; /* carte sur ivoire */
  --gc-bg-deep:   #2A211B; /* espresso — secção dramática */
  --gc-fg:        #2A211B; /* brun espresso — texto principal */
  --gc-fg-soft:   #6E6157; /* taupe — texto secundário */
  --gc-fg-on-deep:#EDE3D6; /* texto sobre espresso */
  --gc-accent:    #9E6E3A; /* or champagne (grandes/décoratifs) — passe 3:1 sur ivoire & sable */
  --gc-accent-ink:#7E5A2E; /* or foncé — texte PETIT sur fond clair (AA ≥4.5) */
  --gc-accent-2:  #9A734366; /* or transparente p/ filets */
  --gc-accent-soft:#D8C3A3; /* champagne clair — texte/accent sur fond espresso */
  --gc-line:      rgba(42,33,27,.12);
  --gc-line-deep: rgba(216,195,163,.20);

  --gc-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --gc-sans:  'Jost', 'Segoe UI', system-ui, sans-serif;

  --gc-maxw: 1180px;
  --gc-gutter: clamp(1.25rem, 4vw, 2.5rem);
  --gc-radius: 12px;
  --gc-ease: cubic-bezier(.22,1,.36,1);
  --gc-arch: 50% 50% 8px 8px / 32% 32% 8px 8px;

  --demobar-h: 38px;
  --header-h: 70px;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  font-family: var(--gc-sans);
  font-weight: 400;
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--gc-fg);
  background: var(--gc-bg);
  overflow-x: clip;
  padding-top: var(--demobar-h);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,svg,video { display: block; max-width: 100%; height: auto; }
img { background: var(--gc-bg-2); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input,textarea,select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gc-accent); outline-offset: 3px; border-radius: 3px; }

/* ---------- Tipografia ---------- */
h1,h2,h3 { font-family: var(--gc-serif); font-weight: 600; line-height: 1.04; letter-spacing: .005em; color: var(--gc-fg); }
h1 { font-size: clamp(2.6rem, 6.2vw + .5rem, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw + .6rem, 3.4rem); }
h3 { font-size: clamp(1.4rem, 1.4vw + .8rem, 1.85rem); }
p { color: var(--gc-fg-soft); }
em { font-style: italic; }
strong { font-weight: 600; color: var(--gc-fg); }

.serif-italic { font-family: var(--gc-serif); font-style: italic; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--gc-sans);
  font-size: .76rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gc-accent-ink);
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: var(--gc-accent); }
.eyebrow.is-center::after { content: ""; width: 2.2rem; height: 1px; background: var(--gc-accent); }
.eyebrow.is-center { justify-content: center; }
.section--deep .eyebrow { color: var(--gc-accent-soft); }
.section--deep .eyebrow::before, .section--deep .eyebrow.is-center::after { background: var(--gc-accent-soft); }

.lead { font-size: clamp(1.08rem, .9rem + .6vw, 1.35rem); line-height: 1.6; color: var(--gc-fg-soft); }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.5rem, var(--gc-maxw)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, 8rem); position: relative; }
.section--alt { background: var(--gc-bg-2); }
.section--deep { background: var(--gc-bg-deep); color: var(--gc-fg-on-deep); }
.section--deep h2, .section--deep h3 { color: #F5ECDF; }
.section--deep p { color: #C9BDAE; }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .55rem; }
.section-head p { margin-top: 1rem; }

.hairline { height: 1px; background: var(--gc-line); border: 0; }
.section--deep .hairline { background: var(--gc-line-deep); }

/* ---------- Botões ---------- */
.btn {
  --b-bg: var(--gc-fg); --b-fg: var(--gc-bg);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 48px; padding: .85em 1.6em;
  font-family: var(--gc-sans); font-size: .95rem; font-weight: 500; letter-spacing: .03em;
  background: var(--b-bg); color: var(--b-fg);
  border-radius: 999px;
  transition: transform .25s var(--gc-ease), box-shadow .25s var(--gc-ease), background-color .25s, color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(42,33,27,.55); }
.btn:active { transform: translateY(0); }
.btn .ic { width: 18px; height: 18px; }
.btn--ghost {
  --b-bg: transparent; --b-fg: var(--gc-fg);
  border: 1px solid var(--gc-line);
  box-shadow: none;
}
.btn--ghost:hover { --b-bg: rgba(176,137,90,.08); border-color: var(--gc-accent); box-shadow: none; transform: translateY(-2px); }
.btn--on-deep { --b-bg: var(--gc-accent-soft); --b-fg: var(--gc-bg-deep); }
.btn--on-deep.btn--ghost { --b-bg: transparent; --b-fg: var(--gc-fg-on-deep); border-color: var(--gc-line-deep); }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 500; color: var(--gc-fg); letter-spacing: .02em; }
.link-arrow .ic { width: 17px; height: 17px; color: var(--gc-accent); transition: transform .25s var(--gc-ease); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* ---------- Media / arcos ---------- */
.media-arch { position: relative; border-radius: var(--gc-arch); overflow: hidden; }
.media-arch img { width: 100%; height: 100%; object-fit: cover; }
.media-arch::after { /* filet champagne intérieur */
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(176,137,90,.32); pointer-events: none;
}

/* =====================================================================
   Demo bar
   ===================================================================== */
.demobar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--demobar-h);
  display: flex; align-items: center; justify-content: center; gap: clamp(.7rem, 2vw, 1.2rem);
  background: linear-gradient(90deg, #211A15, #2A211B 50%, #211A15);
  border-bottom: 1px solid rgba(176,137,90,.30);
  color: var(--gc-fg-on-deep);
  font-family: var(--gc-sans); font-size: .76rem; letter-spacing: .03em;
  padding-inline: 1rem; overflow: hidden;
}
.demobar .demobar-txt { white-space: nowrap; color: #C2B6A6; }
.demobar b { color: var(--gc-accent-soft); font-weight: 600; }
.demobar-cta {
  display: inline-flex; align-items: center; gap: .4rem; flex: none;
  height: 26px; padding: 0 .85rem; border-radius: 999px;
  background: linear-gradient(135deg, #D8C3A3, #B0895A);
  color: var(--gc-bg-deep); font-weight: 600; font-size: .74rem; letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .22s var(--gc-ease), box-shadow .22s var(--gc-ease);
}
.demobar-cta .ic { width: 14px; height: 14px; }
.demobar-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 18px -8px rgba(176,137,90,.7); }
@media (max-width: 560px){ .demobar .demobar-sub { display: none; } }
@media (max-width: 400px){ .demobar .demobar-txt { display: none; } }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky; top: var(--demobar-h); z-index: 900;
  background: color-mix(in srgb, var(--gc-bg) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s, box-shadow .3s;
}
.site-header.is-stuck { border-color: var(--gc-line); box-shadow: 0 6px 24px -20px rgba(42,33,27,.6); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; color: var(--gc-fg); }
.brand svg { height: 42px; width: auto; }
.brand:hover { color: var(--gc-accent); }

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.2rem); list-style: none; padding: 0; }
.nav a {
  position: relative; font-size: .9rem; font-weight: 400; letter-spacing: .04em; color: var(--gc-fg);
  padding-block: .4rem;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gc-accent); transition: width .3s var(--gc-ease); }
.nav a:hover::after, .nav a[aria-current="true"]::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .6rem; }

/* Seletor de idioma */
.lang { position: relative; }
.lang-toggle { display: inline-flex; align-items: center; gap: .4rem; min-height: 44px; padding: .4rem .6rem; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gc-fg); border-radius: 8px; }
.lang-toggle .ic { width: 15px; height: 15px; color: var(--gc-fg-soft); transition: transform .25s; }
.lang[data-open="true"] .lang-toggle .ic { transform: rotate(180deg); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + .4rem); min-width: 9rem;
  background: var(--gc-bg-card); border: 1px solid var(--gc-line); border-radius: 10px;
  box-shadow: 0 18px 40px -22px rgba(42,33,27,.5);
  padding: .35rem; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 20;
}
.lang[data-open="true"] .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .55rem .7rem; border-radius: 7px; font-size: .9rem; letter-spacing: .02em; min-height: 40px; }
.lang-menu a:hover { background: rgba(176,137,90,.1); }
.lang-menu a[aria-current="true"] { color: var(--gc-accent-ink); }
.lang-menu a span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gc-fg-soft); }

.header-cta { display: none; }

/* Hambúrguer */
.burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; padding: 0 11px; border-radius: 8px; }
.burger span { height: 1.6px; width: 100%; background: var(--gc-fg); border-radius: 2px; transition: transform .3s var(--gc-ease), opacity .25s; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Drawer mobile */
.mobile-nav {
  position: fixed; inset: 0; z-index: 980;
  background: var(--gc-bg);
  padding: calc(var(--demobar-h) + 1.5rem) var(--gc-gutter) 2rem;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .42s var(--gc-ease);
  overflow-y: auto;
}
body.menu-open .mobile-nav { transform: none; }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-nav-top .brand svg { height: 38px; }
.mobile-nav .m-close { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--gc-line); border-radius: 8px; }
.mobile-nav .m-close .ic { width: 20px; height: 20px; }
.mobile-nav ul { list-style: none; padding: 0; display: flex; flex-direction: column; }
.mobile-nav nav a { display: block; font-family: var(--gc-serif); font-size: 1.9rem; font-weight: 500; padding: .55rem 0; border-bottom: 1px solid var(--gc-line); }
.mobile-nav nav a:hover { color: var(--gc-accent); }
.mobile-nav .m-cta { margin-top: 2rem; }
.mobile-nav .m-lang { margin-top: auto; padding-top: 2rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.mobile-nav .m-lang a { padding: .5rem .9rem; border: 1px solid var(--gc-line); border-radius: 999px; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; min-height: 44px; display: inline-flex; align-items: center; }
.mobile-nav .m-lang a[aria-current="true"] { background: var(--gc-fg); color: var(--gc-bg); border-color: var(--gc-fg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 1.1rem 0 0; }
.hero h1 .serif-italic { color: var(--gc-accent); white-space: nowrap; }
.hero-sub { margin-top: 1.5rem; max-width: 34rem; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-meta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center; }
.hero-meta .stars { display: inline-flex; gap: 2px; color: var(--gc-accent); }
.hero-meta .stars .ic { width: 16px; height: 16px; }
.hero-meta small { display: block; color: var(--gc-fg-soft); font-size: .82rem; letter-spacing: .02em; }
.hero-meta b { font-family: var(--gc-serif); font-size: 1.3rem; font-weight: 600; }

.hero-media { position: relative; }
.hero-media .media-arch { aspect-ratio: 4 / 5; max-width: 30rem; margin-inline: auto; }
/* crop p/ baixo: discretiza o lettrage présent en haut de la photo (idéal : photo sans texte) */
.hero-media .media-arch img { object-position: center 80%; }
/* lavado quente no topo: esbate o lettrage de la photo (sans assombrir) — idéal : photo sans texte */
.hero-media .media-arch::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; border-radius: inherit; background: linear-gradient(to bottom, rgba(246,239,230,.62), rgba(246,239,230,.14) 20%, rgba(246,239,230,0) 38%); }
.hero-sidetext {
  position: absolute; top: 50%; left: -2.2rem; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl; font-size: .72rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gc-fg-soft); display: none;
}
.hero-badge {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  background: var(--gc-bg-card); border: 1px solid var(--gc-line); border-radius: 999px;
  padding: .5rem 1.1rem; font-size: .8rem; letter-spacing: .06em; white-space: nowrap;
  box-shadow: 0 18px 40px -26px rgba(42,33,27,.6); color: var(--gc-fg);
  display: inline-flex; align-items: center; gap: .5rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #5C8A57; box-shadow: 0 0 0 3px rgba(92,138,87,.18); }

/* =====================================================================
   Bandeau de prova
   ===================================================================== */
.proof { background: var(--gc-bg-deep); color: var(--gc-fg-on-deep); padding-block: clamp(.9rem, 2.2vw, 1.4rem); }
.proof .container { display: grid; grid-template-columns: 1fr; gap: 0; }
.proof-item { display: flex; align-items: center; gap: .8rem; padding: .95rem .4rem; border-bottom: 1px solid var(--gc-line-deep); }
.proof-item:last-child { border-bottom: 0; }
.proof-item .ic-wrap { flex: none; width: 34px; height: 34px; display: grid; place-items: center; color: var(--gc-accent-soft); }
.proof-item .ic { width: 19px; height: 19px; stroke-width: 1.3; }
.proof-item b { display: block; font-family: var(--gc-serif); font-size: 1.12rem; font-weight: 500; color: #F2E8DA; line-height: 1.2; letter-spacing: .005em; }
.proof-item span { font-size: .76rem; color: #B6AA9A; letter-spacing: .05em; margin-top: 1px; }

/* =====================================================================
   Soins — linhas editoriais alternadas (imagem em arco)
   ===================================================================== */
.soins { display: flex; flex-direction: column; gap: clamp(2.4rem, 5vw, 4.2rem); }
.soin-row { display: grid; gap: clamp(1.3rem, 3vw, 2.2rem); align-items: center; }
.soin-media { position: relative; }
.soin-media .media-arch { aspect-ratio: 4 / 5; max-width: 24rem; margin-inline: auto; }
.soin-media .media-arch img { transition: transform .9s var(--gc-ease); }
.soin-row:hover .soin-media img { transform: scale(1.04); }
.soin-media .tag {
  position: absolute; top: 1rem; left: 1rem; background: var(--gc-bg-card);
  border: 1px solid var(--gc-line); border-radius: 999px; padding: .35rem .85rem;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gc-accent-ink);
}
.soin-content .num { font-family: var(--gc-serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 500; color: var(--gc-accent); line-height: 1; display: block; }
.soin-content h3 { margin: .5rem 0 .8rem; }
.soin-content p { max-width: 34rem; }
.soin-tags { list-style: none; padding: 0; margin: 1.3rem 0 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.soin-tags li { font-size: .82rem; letter-spacing: .02em; color: var(--gc-fg); background: var(--gc-bg-2); border: 1px solid var(--gc-line); border-radius: 999px; padding: .4rem .85rem; }
.soin-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.8rem; }
.soin-foot .price { font-family: var(--gc-serif); font-size: 1.6rem; font-weight: 600; color: var(--gc-fg); }
.soin-foot .price small { font-family: var(--gc-sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gc-fg-soft); display: block; }
@media (min-width: 860px){
  .soin-row { grid-template-columns: 1fr 1fr; column-gap: clamp(1.4rem, 2.6vw, 2.6rem); }
  .soin-row.is-rev .soin-media { order: 2; }
  .soin-media .media-arch { max-width: 23rem; }
  /* arco encostado ao lado do texto = imagem e conteúdo mais próximos, ritmo editorial preciso */
  .soin-row:not(.is-rev) .soin-media .media-arch { margin-left: auto; margin-right: 0; }
  .soin-row.is-rev .soin-media .media-arch { margin-left: 0; margin-right: auto; }
  .soin-content { max-width: 32rem; }
  .soin-row.is-rev .soin-content { margin-left: auto; }
}

/* =====================================================================
   Ambiance (espresso, full-bleed)
   ===================================================================== */
.ambiance { position: relative; overflow: hidden; background: var(--gc-bg-deep); }
.ambiance-bg { position: absolute; inset: 0; z-index: 0; }
.ambiance-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.ambiance::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(20,15,12,.92) 0%, rgba(20,15,12,.55) 55%, rgba(20,15,12,.35) 100%); }
.ambiance .container { position: relative; z-index: 2; }
.ambiance-quote { max-width: 40rem; }
.ambiance-quote .mark { font-family: var(--gc-serif); font-size: 5rem; line-height: .6; color: var(--gc-accent); display: block; margin-bottom: .4rem; }
.ambiance-quote blockquote { font-family: var(--gc-serif); font-size: clamp(1.7rem, 1rem + 2.6vw, 2.9rem); font-weight: 500; font-style: italic; line-height: 1.22; color: #F2E8DA; }
.ambiance-quote blockquote em { color: var(--gc-accent-soft); font-style: italic; }
.ambiance-quote cite { display: block; margin-top: 1.6rem; font-family: var(--gc-sans); font-style: normal; font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: #C2B6A6; }

/* =====================================================================
   Rituel — 3 passos, numerais gigantes
   ===================================================================== */
.ritual-grid { display: grid; gap: clamp(2rem, 4vw, 3rem); counter-reset: step; }
.ritual-step { position: relative; padding-top: 1.9rem; border-top: 1px solid var(--gc-line); }
.ritual-step::before { content: ""; position: absolute; top: -1px; left: 0; width: 52px; height: 2px; background: var(--gc-accent); }
.ritual-step .step-num { font-family: var(--gc-serif); font-size: clamp(4rem, 7vw, 6rem); font-weight: 500; line-height: .82; color: var(--gc-accent); }
.ritual-step h3 { margin: .75rem 0 .55rem; }
.ritual-step p { font-size: .96rem; max-width: 28rem; }

/* =====================================================================
   Avis
   ===================================================================== */
.avis-grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.5rem); }
.avis-card { position: relative; background: var(--gc-bg-card); border: 1px solid var(--gc-line); border-radius: var(--gc-radius); padding: clamp(1.7rem, 2.4vw, 2.1rem); display: flex; flex-direction: column; gap: 1.15rem; box-shadow: 0 20px 44px -34px rgba(42,33,27,.42); }
.avis-card .stars { display: inline-flex; gap: 4px; color: var(--gc-accent); }
.avis-card .stars .ic { width: 19px; height: 19px; }
.avis-card blockquote { font-family: var(--gc-serif); font-size: clamp(1.2rem, 1rem + .55vw, 1.42rem); line-height: 1.5; color: var(--gc-fg); font-style: italic; flex: 1; }
.avis-card .who { display: flex; align-items: center; gap: .85rem; margin-top: auto; padding-top: 1.15rem; border-top: 1px solid var(--gc-line); }
.avis-card .who .ava { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--gc-accent-soft); display: grid; place-items: center; font-family: var(--gc-serif); font-size: 1.2rem; font-weight: 600; color: var(--gc-bg-deep); }
.avis-card .who b { display: block; font-size: .98rem; font-weight: 600; color: var(--gc-fg); letter-spacing: .005em; }
.avis-card .who span { font-size: .82rem; color: var(--gc-fg-soft); }
.avis-disclaimer { margin-top: 1.6rem; font-size: .8rem; color: var(--gc-fg-soft); letter-spacing: .02em; display: inline-flex; align-items: center; gap: .5rem; }
.avis-disclaimer .ic { width: 15px; height: 15px; color: var(--gc-accent); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-list { border-top: 1px solid var(--gc-line); max-width: 50rem; }
.faq-item { border-bottom: 1px solid var(--gc-line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1.35rem .2rem; text-align: left; font-family: var(--gc-serif); font-size: clamp(1.15rem,.9rem+.7vw,1.45rem); font-weight: 600; color: var(--gc-fg); }
.faq-q .ic { flex: none; width: 22px; height: 22px; color: var(--gc-accent); transition: transform .35s var(--gc-ease); }
.faq-item[aria-expanded="true"] .faq-q .ic { transform: rotate(45deg); }
.faq-a { overflow: hidden; height: 0; transition: height .38s var(--gc-ease); }
.faq-a-inner { padding: 0 .2rem 1.4rem; color: var(--gc-fg-soft); max-width: 44rem; }
@media (prefers-reduced-motion: reduce){ .faq-a { transition: none; } }

/* =====================================================================
   CTA + formulaire
   ===================================================================== */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-info .lead { margin-top: 1rem; }
.contact-list { list-style: none; padding: 0; margin-top: 2rem; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .ic-wrap { flex: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gc-line); display: grid; place-items: center; color: var(--gc-accent); }
.contact-list .ic { width: 19px; height: 19px; }
.contact-list b { display: block; font-weight: 500; color: var(--gc-fg); font-size: .95rem; }
.contact-list span, .contact-list a { color: var(--gc-fg-soft); font-size: .92rem; }
.contact-list a:hover { color: var(--gc-accent); }
/* contacto em secção espresso: remapear o componente (estava feito p/ fundo claro) */
.section--deep .contact-list b { color: var(--gc-fg-on-deep); }
.section--deep .contact-list span, .section--deep .contact-list a { color: #C9BDAE; }
.section--deep .contact-list a:hover { color: var(--gc-accent-soft); }
.section--deep .contact-list .ic-wrap { border-color: var(--gc-line-deep); }

.form-card { background: var(--gc-bg-card); border: 1px solid var(--gc-line); border-radius: var(--gc-radius); padding: clamp(1.4rem, 3vw, 2.2rem); }
.section--deep .form-card { background: rgba(255,255,255,.04); border-color: var(--gc-line-deep); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gc-fg-soft); margin-bottom: .5rem; }
.section--deep .field label { color: #C2B6A6; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; min-height: 48px;
  background: var(--gc-bg); border: 1px solid var(--gc-line); border-radius: 9px;
  color: var(--gc-fg); transition: border-color .25s, box-shadow .25s;
}
.section--deep .field input, .section--deep .field select, .section--deep .field textarea { background: rgba(255,255,255,.05); border-color: var(--gc-line-deep); color: var(--gc-fg-on-deep); }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gc-accent); box-shadow: 0 0 0 3px rgba(176,137,90,.18); }
.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.form-note { font-size: .8rem; color: var(--gc-fg-soft); margin-top: .4rem; }
.section--deep .form-note { color: #A89C8C; }
.form-feedback { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 9px; background: rgba(92,138,87,.12); border: 1px solid rgba(92,138,87,.4); color: #2A211B; font-size: .9rem; display: none; align-items: center; gap: .6rem; }
.section--deep .form-feedback { color: #E7F0E6; }
.form-feedback.is-visible { display: flex; }
.form-feedback .ic { width: 18px; height: 18px; color: #5C8A57; flex: none; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--gc-bg-deep); color: var(--gc-fg-on-deep); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
.footer-brand svg { height: 48px; color: var(--gc-fg-on-deep); }
.footer-brand p { margin-top: 1rem; max-width: 24rem; color: #C2B6A6; font-size: .92rem; }
.footer-col h4 { font-family: var(--gc-sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gc-accent-soft); margin-bottom: 1rem; font-weight: 500; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-col a, .footer-col li { color: #C9BDAE; font-size: .92rem; }
.footer-col a:hover { color: var(--gc-accent-soft); }
.footer-hours { display: flex; justify-content: space-between; gap: 1rem; max-width: 17rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--gc-line-deep); border-radius: 50%; display: grid; place-items: center; color: var(--gc-fg-on-deep); transition: border-color .25s, color .25s, transform .25s; }
.socials a:hover { color: var(--gc-accent-soft); border-color: var(--gc-accent-soft); transform: translateY(-2px); }
.socials .ic { width: 19px; height: 19px; }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid var(--gc-line-deep); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: .82rem; color: #C2B6A6; letter-spacing: .01em; }
.footer-bottom .footer-realisation { color: #A89C8C; }
.footer-bottom a { color: var(--gc-accent-soft); font-weight: 500; }
.footer-bottom a:hover { color: #EFE2CC; }
@media (max-width: 640px){
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .45rem; }
}

/* =====================================================================
   Reveal on scroll
   ===================================================================== */
@media (prefers-reduced-motion: no-preference){
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--gc-ease), transform .8s var(--gc-ease); }
  .reveal.is-visible { opacity: 1; transform: none; }
  .reveal[data-delay="1"]{ transition-delay: .08s; }
  .reveal[data-delay="2"]{ transition-delay: .16s; }
  .reveal[data-delay="3"]{ transition-delay: .24s; }
}
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn, .soin-card, .link-arrow .ic { transition: none !important; }
}

/* =====================================================================
   Responsivo
   ===================================================================== */
@media (min-width: 600px){
  .proof .container { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
  .proof-item:nth-child(3), .proof-item:nth-child(4) { border-bottom: 0; }
  .proof-item:nth-last-child(-n+2) { border-bottom: 0; }
  .proof-item:nth-child(1), .proof-item:nth-child(2) { border-bottom: 1px solid var(--gc-line-deep); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
  .soins-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px){
  :root { --demobar-h: 40px; }
  .ritual-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; }
  .hero-sidetext { display: block; }
}

@media (min-width: 940px){
  .nav { display: block; }
  .burger { display: none; }
  .header-cta { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-media .media-arch { max-width: none; }
  .proof .container { grid-template-columns: repeat(4, 1fr); }
  .proof-item { flex-direction: row; align-items: center; text-align: left; border-bottom: 0 !important; border-right: 1px solid var(--gc-line-deep); padding: .3rem 1.5rem; gap: .75rem; }
  .proof-item:last-child { border-right: 0; }
  .proof-item:first-child { padding-left: 0; }
  .avis-grid { grid-template-columns: repeat(3, 1fr); }
  .soins-grid { grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; }
  .soin-card.is-feature { grid-column: span 2; flex-direction: row; }
  .soin-card.is-feature .soin-media { aspect-ratio: auto; flex: 1.1; min-height: 100%; }
  .soin-card.is-feature .soin-body { flex: 1; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr 1.15fr; }
}

@media (min-width: 1280px){
  .hero { padding-block: clamp(3rem, 5vw, 5rem) 6rem; }
}

/* Landscape mobile — hero não corta CTA */
@media (max-height: 560px) and (orientation: landscape){
  .hero-media { display: none; }
  .hero { min-height: auto; }
}

/* Print fallback */
@media print { .demobar, .site-header, .mobile-nav { display: none; } body { padding-top: 0; } }
