/* Femme Harmonie — FR editorial (distinct from Lunessa Donna) */
:root {
  --paper: #f2f4f7;
  --paper-2: #e6eaef;
  --ink: #1a222c;
  --ink-2: #2c3846;
  --mute: #5c6b7a;
  --line: rgba(26, 34, 44, 0.12);
  --accent: #3d5f7a;
  --accent-deep: #2a4558;
  --rose: #a65d6d;
  --rose-soft: #f5e8eb;
  --white: #ffffff;
  --serif: "Petrona", Georgia, serif;
  --sans: "Red Hat Text", "Segoe UI", sans-serif;
  --max: 1120px;
  --g: clamp(1.1rem, 3.4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bar: 4.1rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef1f5 0%, var(--paper) 28%, var(--paper) 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accent-deep); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.55em;
  color: var(--ink);
}
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent); color: #fff; }

.wrap {
  width: min(100% - 2 * var(--g), var(--max));
  margin-inline: auto;
}

.js [data-in] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.js [data-in].in { opacity: 1; transform: none; }
.js [data-in][data-w="1"] { transition-delay: 0.08s; }
.js [data-in][data-w="2"] { transition-delay: 0.16s; }
@media (prefers-reduced-motion: reduce) {
  .js [data-in] { opacity: 1; transform: none; transition: none; }
}

.top-ad {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--bar);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-inline: var(--g);
  background: rgba(242, 244, 247, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(26, 34, 44, 0.06);
}
.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand em {
  font-style: italic;
  font-weight: 500;
  color: var(--rose);
}
.nav {
  display: none;
  gap: 1.25rem;
  margin-left: auto;
}
.nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a:hover { color: var(--accent); }
.header-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}
.btn-buy {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.55rem 0.95rem;
  border-radius: 2px;
}
.btn-buy:hover { background: var(--accent-deep); }
.menu-btn {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
  padding: 0;
  border-radius: 2px;
}
.menu-btn i {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset: var(--bar) 0 0;
  z-index: 45;
  background: var(--ink);
  color: #fff;
  padding: 2rem var(--g);
  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.mobile-nav.open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-style: italic;
  display: block;
  padding: 0.25rem 0;
}
.mobile-nav small {
  display: block;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 960px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
  .header-end { margin-left: 0; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.35rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  border: 1.5px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-primary {
  background: var(--accent);
  color: #fff !important;
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-accent {
  background: var(--rose);
  color: #fff !important;
}
.btn-accent:hover { background: #8a4a58; }
.btn-outline {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--ink);
}

/* Hero: full-bleed */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 26s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(26, 34, 44, 0.88) 0%, rgba(26, 34, 44, 0.5) 55%, rgba(26, 34, 44, 0.25) 100%),
    linear-gradient(to top, rgba(26, 34, 44, 0.55), transparent 42%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 2 * var(--g), 36rem);
  margin: 0 0 0 max(var(--g), calc((100vw - var(--max)) / 2));
  padding: 4rem 0 3.25rem;
}
.hero-brand {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 0.95;
  margin: 0 0 1rem;
  animation: rise 0.9s var(--ease) both;
}
.hero-brand em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: #e8c4cc;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 500;
  font-style: italic;
  max-width: 22ch;
  margin-bottom: 0.85rem;
  animation: rise 0.9s 0.1s var(--ease) both;
}
.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
  margin-bottom: 1.4rem;
  animation: rise 0.9s 0.18s var(--ease) both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
  animation: rise 0.9s 0.26s var(--ease) both;
}
.meta-line {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  animation: rise 0.9s 0.34s var(--ease) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.ribbon {
  background: var(--accent-deep);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}
.ribbon-track {
  display: flex;
  width: max-content;
  gap: 2.25rem;
  padding: 0.8rem 0;
  animation: ticker 30s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ribbon-track span::before {
  content: "·";
  margin-right: 2.25rem;
  color: #e8c4cc;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: clamp(3.25rem, 7vw, 5.75rem) 0; }
.section-soft { background: var(--paper-2); }
.section-ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
}
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink p { color: rgba(255, 255, 255, 0.7); }

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.section-head {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}
.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.9rem);
}
.section-head p { color: var(--mute); margin: 0; }
.lead { font-size: 1.1rem; color: var(--ink-2); }

.intro-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .intro-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}
.keybox {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border-left: 3px solid var(--accent);
}
.keybox h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.keybox ul {
  list-style: disc;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}
.keybox li { color: var(--ink-2); font-size: 0.95rem; }
.media-frame {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Habits: alternating magazine rows */
.habit-list { display: grid; gap: 2.5rem; }
.habit {
  display: grid;
  gap: 1.15rem;
  align-items: center;
}
@media (min-width: 800px) {
  .habit {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.25rem;
  }
  .habit:nth-child(even) .habit-media { order: 2; }
}
.habit-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
}
.habit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.habit:hover .habit-media img { transform: scale(1.04); }
.habit-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--rose);
  margin-bottom: 0.25rem;
}
.habit h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
.habit p { color: var(--mute); }
.note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--mute);
}

/* Food magazine */
.food-stack { display: grid; gap: 1.75rem; }
.food-row {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .food-row {
    grid-template-columns: 11rem 1fr;
    gap: 1.5rem;
  }
  .food-row.is-featured {
    grid-template-columns: 16rem 1fr;
    background: var(--rose-soft);
    border: none;
    padding: 1.25rem;
    border-radius: 2px;
  }
}
.food-row .pic {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 2px;
}
.food-row .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.food-row h3 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.food-row p { margin: 0; color: var(--mute); font-size: 0.98rem; }
.food-note {
  margin-top: 1.75rem;
  padding: 1rem 1.15rem;
  background: var(--paper-2);
  font-size: 0.92rem;
  color: var(--ink-2);
  border-left: 3px solid var(--accent);
}

/* Product */
.product-panel {
  display: grid;
  gap: 2rem;
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 2px;
  border: 1px solid var(--line);
}
@media (min-width: 860px) {
  .product-panel {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
  }
}
.product-visual img {
  width: 100%;
  border-radius: 2px;
}
.product-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
}
.product-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.feature-list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.25rem;
}
.feature-list li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.offer-box {
  background: var(--paper-2);
  padding: 1rem 1.15rem;
  margin-bottom: 1.15rem;
  border-radius: 2px;
}
.offer-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.35rem;
}
.price-now {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
}
.price-note {
  font-size: 0.85rem;
  color: var(--mute);
  margin-top: 0.35rem;
}
.affiliate-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--mute);
}

.health-box {
  background: var(--rose-soft);
  border: 1px solid rgba(166, 93, 109, 0.25);
  padding: 1.15rem 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  border-radius: 2px;
}

.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  padding: 0 0 1.15rem;
  color: var(--mute);
  max-width: 58ch;
}

.newsletter {
  background: var(--ink);
  color: #fff;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 2px;
}
.newsletter h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.newsletter > p { color: rgba(255, 255, 255, 0.7); max-width: 48ch; }
.nl-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
  max-width: 28rem;
}
.nl-form .field {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}
.nl-form input[type="text"],
.nl-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 2px;
}
.nl-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}
.consent a { color: #e8c4cc; }
.nl-form button[type="submit"] {
  background: var(--rose);
  color: #fff;
  border: 0;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  border-radius: 2px;
}
.nl-form button[type="submit"]:disabled { opacity: 0.6; }
.nl-error { color: #ffb4c0; font-size: 0.9rem; margin: 0; }
.nl-error a { color: #ffd0d8; }
.nl-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.nl-note a { color: #e8c4cc; }

.site-footer {
  background: #121820;
  color: rgba(255, 255, 255, 0.62);
  padding: 3rem 0 2rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.foot-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.foot-brand em { font-style: italic; color: #e8c4cc; }
.foot-tag {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.45);
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
}
.disc p { font-size: 0.88rem; margin-bottom: 0.85rem; }
.legal-id { font-size: 0.85rem !important; }
.copy {
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  max-width: 720px;
  margin: 0 auto;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.15rem 1.25rem;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.cookie-banner.show { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9rem; }
.cookie-banner a { color: #e8c4cc; }
.cookie-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-accept, .cookie-reject {
  border: 0;
  padding: 0.65rem 1rem;
  font-weight: 600;
  border-radius: 2px;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Legal pages */
.legal { padding: 3rem 0 4rem; }
.legal-head {
  max-width: 40rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.legal-head h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-main h2 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
}
.legal-main ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.legal-main li { margin-bottom: 0.35rem; color: var(--ink-2); }
.contact-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  background: var(--paper-2);
  padding: 1.25rem;
  border-radius: 2px;
}
.contact-card h2 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
