/* =========================================================
   Her Moves — static rebuild (design 1:1)
   ========================================================= */

:root {
  /* Palette (sampled from design) */
  --cream:   #fff8ed;   /* page background */
  --card:    #f2ece0;   /* cards / form panels */
  --panel:   #efe3d3;   /* footer + eyebrow pills */
  --input:   #fdf8ee;   /* inputs inside cards */
  --sage:    #ddddd0;   /* "English version" pill */
  --mocha:   #776555;   /* primary button */
  --mocha-d: #655646;   /* primary button hover */
  --ink:     #1c1c1c;
  --muted:   rgba(28, 28, 28, .62);
  --muted-2: rgba(28, 28, 28, .45);
  --line:    rgba(28, 28, 28, .16);

  --font-head: 'DM Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Geist', 'Inter', system-ui, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;
  --nav-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----------------------------- Reset ----------------------------- */
*, *::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(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* photos are shown desaturated */
.media-bw img { filter: grayscale(1) contrast(1.03); }

/* ----------------------------- Typography ----------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .01em;
  color: #4a443a;
  background: var(--panel);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -.015em;
  color: var(--ink);
}
.section__title em { font-style: italic; font-weight: 700; }

.section__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, .95rem + .35vw, 1.15rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}

.section { padding-block: clamp(64px, 8vw, 120px); }

.section__head { max-width: 780px; }
.section__head .section__lead { margin-top: 18px; }
.section__head--center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__head--center .section__lead { margin-inline: auto; }
.section__head--center .btn { margin-top: 34px; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--mocha); color: var(--cream); }
.btn--primary:hover { background: var(--mocha-d); }

.btn--soft { background: var(--cream); color: var(--ink); box-shadow: 0 1px 12px rgba(28,28,28,.08); }
.btn--soft:hover { background: #fff; }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { background: rgba(28, 28, 28, .05); }

.btn--wide { width: 100%; }

/* ============================= NAV ============================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px var(--gutter) 0;
  pointer-events: none;
}
.nav__bar {
  pointer-events: auto;
  max-width: var(--maxw);
  margin-inline: auto;
  height: 68px;
  padding: 0 14px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 248, 237, .82);
  backdrop-filter: blur(14px);
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(28, 28, 28, .07);
  transition: background-color .35s var(--ease);
}
.nav.is-scrolled .nav__bar { background: rgba(255, 248, 237, .95); }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 30px; width: auto; }

.nav__menu { display: flex; align-items: center; gap: 26px; }
.nav__menu > a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  transition: opacity .25s var(--ease);
}
.nav__menu > a:not(.nav__lang):hover { opacity: .6; }
.nav__lang { background: var(--sage); padding: 8px 16px; border-radius: 100px; }
.nav__lang:hover { filter: brightness(.97); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__cta { padding: 12px 22px; }

.sound-toggle {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  background: var(--card);
  display: grid; place-items: center;
  transition: background-color .3s var(--ease);
}
.sound-toggle:hover { background: var(--panel); }
.sound-toggle svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; fill: none; }
.sound-toggle.is-on svg { stroke: var(--mocha); }

.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 10px; }
.nav__burger span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--cream);
  padding: calc(var(--nav-h) + 30px) var(--gutter) 40px;
  display: flex;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__list { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.mobile-menu__list a {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  padding-block: 12px; border-bottom: 1px solid var(--line);
}
.mobile-menu__list .btn { align-self: flex-start; margin-top: 22px; font-size: 16px; border-bottom: 0; }

/* ============================= HERO ============================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  color: var(--ink);
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.45) sepia(.14) brightness(1.05) contrast(.98); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--cream) 0%, rgba(255,248,237,.25) 16%, rgba(255,248,237,.28) 55%, var(--cream) 100%),
    rgba(255, 248, 237, .28);
}
.hero__content { position: relative; max-width: 900px; }
.hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2.2rem, 1.2rem + 3.8vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-inline: auto;
  max-width: 20ch;
}
.hero__title em { font-style: italic; font-weight: 700; }
.hero__text {
  margin: 22px auto 0;
  font-size: clamp(1rem, .95rem + .4vw, 1.2rem);
  line-height: 1.5;
  max-width: 48ch;
  color: var(--muted);
}
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================= O HER MOVES ============================= */
.features {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}
.feature {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 2.6vw, 38px) clamp(20px, 2vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform .4s var(--ease);
}
.feature:hover { transform: translateY(-4px); }
.feature__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature__title { font-family: var(--font-head); font-weight: 700; font-style: italic; font-size: 1.2rem; line-height: 1.2; }
.feature__text { font-size: .97rem; line-height: 1.5; color: var(--muted); }

.about__note {
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 92ch;
  text-align: center;
  font-size: .84rem;
  line-height: 1.65;
  color: var(--muted-2);
}

/* ============================= COMMUNITY ============================= */
.community__grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.pillar { background: var(--card); border-radius: var(--radius-lg); padding: clamp(28px, 2.6vw, 40px); }
.pillar__title { font-family: var(--font-head); font-weight: 700; font-style: italic; font-size: 1.35rem; margin-bottom: 14px; }
.pillar__text { line-height: 1.55; color: var(--muted); }

.community__expect {
  margin-top: clamp(24px, 2.5vw, 32px);
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
}
.community__expect-title { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.5rem, 1rem + 1.8vw, 2.2rem); margin-bottom: 18px; }
.community__expect-title em { font-style: italic; font-weight: 700; }
.community__expect-text { font-size: 1.05rem; line-height: 1.6; max-width: 74ch; color: var(--muted); }

/* ============================= ORGANIZE ============================= */
.organize__body {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}
.organize__image { border-radius: var(--radius-lg); overflow: hidden; }
.organize__image img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.checklist {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.checklist li {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(1rem, .9rem + .5vw, 1.25rem);
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.checklist li:last-child { padding-bottom: 0; border-bottom: 0; }
.checklist__mark {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--mocha); color: var(--cream);
  display: grid; place-items: center; font-size: .75rem;
}
.organize__cta { margin-top: clamp(24px, 3vw, 40px); }

/* ============================= CONTACT ============================= */
.contact__body {
  margin-top: clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}
.contact__form {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
}
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-family: var(--font-head); font-weight: 500; font-size: .92rem; }
.field input, .field textarea, .newsletter__form input {
  font-family: var(--font-body); font-weight: 400; font-size: 1rem; color: var(--ink);
  background: var(--input);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px; width: 100%;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder, .newsletter__form input::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .newsletter__form input:focus { outline: none; border-color: var(--mocha); background: #fff; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.contact__submit { margin-top: 4px; }

.contact__image { border-radius: var(--radius-lg); overflow: hidden; }
.contact__image img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }

.form-status { font-size: .9rem; min-height: 1.1em; }
.form-status.is-ok { color: #4d7a4f; }
.form-status.is-err { color: #b3462f; }

/* ============================= FAQ ============================= */
.faq .section__head { margin-bottom: clamp(48px, 6vw, 88px); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.faq__item {
  background: var(--card);
  border-radius: 26px;
  padding: 4px 8px;
  transition: background-color .3s var(--ease);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 12px;
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(1rem, .92rem + .35vw, 1.12rem);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream); position: relative;
}
.faq__icon::before {
  content: ""; position: absolute; top: 50%; left: 47%;
  width: 7px; height: 7px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: transform .35s var(--ease);
}
.faq__item[open] .faq__icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.faq__a { overflow: hidden; }
.faq__a p {
  font-size: .98rem; line-height: 1.6; color: var(--muted);
  padding: 0 14px 18px 56px;
}
.faq__item:not([open]) .faq__a { display: none; }

/* ============================= NEWSLETTER ============================= */
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 72px);
  align-items: center;
}
.newsletter__left { max-width: 520px; }
.newsletter__form { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; max-width: 420px; }
.newsletter__form input[type="email"] { background: var(--card); }
.newsletter__image { border-radius: var(--radius-lg); overflow: hidden; }
.newsletter__image img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; max-height: 560px; }

/* ============================= FOOTER ============================= */
.footer { background: var(--panel); color: var(--ink); padding-block: clamp(52px, 6vw, 84px); }
.footer__inner { display: flex; flex-direction: column; gap: clamp(40px, 6vw, 72px); }
.footer__row--top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__logo { height: 54px; width: auto; }
.footer__tagline { display: block; margin-top: 14px; font-family: var(--font-head); font-weight: 500; font-size: 1.05rem; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(28, 28, 28, .28);
  display: grid; place-items: center;
  transition: background-color .3s var(--ease);
}
.footer__social a:hover { background: rgba(28, 28, 28, .06); }
.footer__social svg { width: 18px; height: 18px; fill: none; stroke: var(--ink); stroke-width: 1.6; }
.footer__social svg path[d^="M14 8"] { fill: var(--ink); stroke: none; }

.footer__contact { display: flex; flex-direction: column; gap: 12px; font-style: normal; }
.footer__contact a:hover { color: var(--mocha); }

.footer__row--bottom {
  display: flex; flex-wrap: wrap; gap: 14px 32px; align-items: center;
  padding-top: 26px; border-top: 1px solid rgba(28, 28, 28, .14);
  font-size: .9rem; color: var(--muted);
}
.footer__row--bottom a:hover, .footer__cookie:hover { color: var(--ink); }
.footer__copy { margin-left: auto; }
.footer__cookie { flex-basis: 100%; text-align: right; font-size: .9rem; color: var(--muted); }

/* ============================= COOKIE CONSENT (self-contained) ============================= */
.cc__banner {
  position: fixed;
  left: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 200;
  width: min(400px, calc(100vw - 28px));
  background: var(--cream);
  border-radius: 22px;
  padding: 26px 26px 22px;
  box-shadow: 0 18px 60px rgba(28, 28, 28, .18);
  animation: cc-in .4s var(--ease);
}
.cc__title { font-family: var(--font-head); font-weight: 500; font-size: 1.25rem; }
.cc__desc { margin-top: 10px; font-size: .92rem; line-height: 1.5; color: var(--muted); }
.cc__desc a { text-decoration: underline; }
.cc__actions { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.cc__actions .btn { flex: 1 1 auto; padding: 12px 18px; font-size: 14px; }

.cc__banner[hidden], .cc__modalWrap[hidden] { display: none !important; }
.cc__modalWrap { position: fixed; inset: 0; z-index: 210; display: grid; place-items: center; padding: 20px; }
.cc__overlay { position: absolute; inset: 0; background: rgba(28, 28, 28, .45); backdrop-filter: blur(3px); }
.cc__modal {
  position: relative;
  width: min(560px, 100%);
  max-height: 88vh; overflow-y: auto;
  background: var(--cream);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 30px 80px rgba(28, 28, 28, .28);
  animation: cc-in .4s var(--ease);
}
.cc__modalHead { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.cc__close { font-size: 1.8rem; line-height: 1; color: var(--muted); width: 40px; height: 40px; border-radius: 50%; }
.cc__close:hover { background: var(--card); color: var(--ink); }
.cc__cat {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--card); border-radius: 16px; padding: 18px 20px; margin-bottom: 12px;
}
.cc__catText strong { font-family: var(--font-head); font-weight: 500; font-size: 1.02rem; }
.cc__catText p { margin-top: 5px; font-size: .86rem; line-height: 1.45; color: var(--muted); }
.cc__always { flex: none; font-size: .82rem; color: var(--muted); }
.cc__switch { flex: none; position: relative; width: 46px; height: 26px; cursor: pointer; }
.cc__switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cc__switch span { position: absolute; inset: 0; background: #cfc6b5; border-radius: 100px; transition: background-color .25s var(--ease); }
.cc__switch span::before { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .25s var(--ease); }
.cc__switch input:checked + span { background: var(--mocha); }
.cc__switch input:checked + span::before { transform: translateX(20px); }
.cc__modalActions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cc__modalActions .btn { padding: 12px 22px; font-size: 14px; }
@keyframes cc-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .cc__banner, .cc__modal { animation: none; } }

/* ============================= REVEAL ============================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================= RESPONSIVE ============================= */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .organize__body { grid-template-columns: 1fr; }
  .organize__image img { min-height: 260px; }
}
@media (max-width: 900px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .contact__body, .newsletter__inner { grid-template-columns: 1fr; }
  .community__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .footer__row--top { gap: 32px; }
}
@media (max-width: 560px) {
  :root { --radius-lg: 18px; }
  .features { grid-template-columns: 1fr; }
  .contact__row { grid-template-columns: 1fr; }
  .footer__cookie { margin-left: 0; }
  .newsletter__image img { min-height: 300px; }
}
