/* ============================================================
   EDELVEA — apaiser le travail et le quotidien
   Design tokens
   ============================================================ */

:root {
  --ivory: #FFF9E2;
  --pistachio: #EBECCC;
  --eucalyptus: #CDD4B1;
  --peach: #FEECD0;
  --clay: #DCA278;

  --ink: #3B3A2C;
  --ink-soft: rgba(59, 58, 44, 0.68);
  --ink-faint: rgba(59, 58, 44, 0.42);

  --eucalyptus-deep: #9EA97E;
  --clay-deep: #C08657;

  /* Palette additionnelle extraite du logo (nid d'abeilles aquarelle) */
  --rose: #E7B0B0;
  --rose-deep: #CC7077;
  --honey: #F1E4A2;
  --mint: #ADD9B5;
  --hex-line: #C9A47E;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hand: 'Caveat', cursive;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 60px -25px rgba(59, 58, 44, 0.35);
  --shadow-card: 0 12px 40px -18px rgba(59, 58, 44, 0.28);

  --max-w: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eucalyptus-deep);
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--eucalyptus-deep);
  display: inline-block;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.5em 0;
  color: var(--ink);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 480;
}

.italic-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--clay-deep);
}

p {
  margin: 0 0 1em 0;
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* -------------------- buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--clay);
  color: #fff9ef;
  box-shadow: 0 14px 30px -12px rgba(192, 134, 87, 0.55);
}

.btn-primary:hover {
  background: var(--clay-deep);
  box-shadow: 0 18px 36px -12px rgba(192, 134, 87, 0.65);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(59, 58, 44, 0.28);
}

.btn-secondary:hover {
  border-color: var(--eucalyptus-deep);
  background: rgba(205, 212, 177, 0.35);
}

.btn:focus-visible {
  outline: 3px solid var(--eucalyptus-deep);
  outline-offset: 3px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 20px 0;
  background: rgba(255, 249, 226, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59, 58, 44, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: auto;
  display: block;
}

.wordmark em {
  font-style: italic;
  color: var(--clay-deep);
}

.header-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-links a {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--ink-soft);
}

.header-links a:hover {
  color: var(--ink);
}

.icon-link {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pistachio);
  color: var(--ink);
}

.icon-link:hover {
  background: var(--eucalyptus);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(1100px 620px at 82% -10%, rgba(205, 212, 177, 0.55), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(254, 236, 208, 0.65), transparent 55%),
    var(--ivory);
  overflow: hidden;
  text-align: center;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  letter-spacing: -0.01em;
}

.hero .lede {
  max-width: 52ch;
  margin: 0 auto 40px;
  font-size: 1.12rem;
}

/* -------- breathing signature -------- */
.breathe {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 8px auto 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breathe-hex {
  position: absolute;
  width: 110px;
  height: 110px;
  fill: none;
  stroke: var(--hex-line);
  stroke-width: 1.4;
  opacity: 0.55;
  transform: rotate(4deg);
}

.breathe-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(158, 169, 126, 0.55);
}

.breathe-core {
  width: 91px;
  height: 91px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e7e8cf, var(--eucalyptus) 70%);
  box-shadow: 0 0 0 0 rgba(158, 169, 126, 0.4);
  animation: breathe 10s ease-in-out infinite;
}

.breathe-label {
  position: absolute;
  bottom: -30px;
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--ink-faint);
  white-space: nowrap;
}

.breathe-label span {
  opacity: 0;
  transition: opacity .6s ease;
}

.breathe-label span.active {
  opacity: 1;
}

.breathe-label span:nth-child(2) {
  position: absolute;
  left: 0;
}

@keyframes breathe {
  0% {
    transform: scale(0.52);
  }

  40% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(0.52);
  }
}

.scroll-cue {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.scroll-cue:hover {
  border-color: var(--ink-soft);
}

.scroll-cue svg {
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .breathe-core,
  .scroll-cue svg {
    animation: none !important;
  }
}

/* ============================================================
   QUIZ SECTION
   ============================================================ */
.quiz-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--pistachio);
  position: relative;
}

.quiz-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.quiz-head .lede {
  margin: 0 auto;
}

.quiz-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 5vw, 48px);
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
}

.quiz-fallback {
  text-align: center;
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.quiz-fallback a {
  font-weight: 600;
  text-decoration: underline;
}

/* -------- quiz app (native, no external embed) -------- */
.quiz-progress {
  width: 100%;
  height: 6px;
  background: var(--pistachio);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 22px;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--clay);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.quiz-step {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eucalyptus-deep);
  font-weight: 600;
  margin: 0 0 10px 0;
}

.quiz-question {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin-bottom: 26px;
  color: var(--ink);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  text-align: left;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(59, 58, 44, 0.14);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .15s ease;
}

.quiz-option:hover {
  background: var(--pistachio);
  border-color: var(--eucalyptus-deep);
}

.quiz-option:active {
  transform: scale(0.99);
}

.quiz-option:focus-visible {
  outline: 3px solid var(--eucalyptus-deep);
  outline-offset: 2px;
}

/* -------- quiz result -------- */
.quiz-result {
  text-align: center;
}

.quiz-result-emoji {
  font-size: 3rem;
  margin: 0 0 6px 0;
  line-height: 1;
}

.quiz-result-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: 16px;
}

.quiz-result-text {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 28px;
}

.quiz-result-cta {
  margin-bottom: 16px;
}

.quiz-retake {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  color: var(--ink-faint);
  font-family: var(--font-body);
  font-size: 0.88rem;
  text-decoration: underline;
  cursor: pointer;
}

.quiz-retake:hover {
  color: var(--ink-soft);
}

/* highlight the offer card when a quiz result deep-links to it */
.offer-card:target {
  animation: offer-highlight 1.8s ease;
}

@keyframes offer-highlight {
  0% {
    box-shadow: 0 0 0 4px rgba(192, 134, 87, 0.5), var(--shadow-card);
  }

  100% {
    box-shadow: var(--shadow-card);
  }
}

/* ============================================================
   PHILOSOPHY SECTION
   ============================================================ */
.philosophy {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--ivory);
}

.philosophy .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.philo-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--peach);
}

.philo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.philo-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(254, 236, 208, 0.15), rgba(205, 212, 177, 0.35));
}

.philo-quote {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  background: rgba(255, 249, 226, 0.88);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--ink);
  transform: rotate(-1.2deg);
}

.philo-text h2 {
  max-width: 14ch;
}

.philo-text p {
  color: var(--ink-soft);
  max-width: 56ch;
}

.philo-text p+p {
  margin-top: 1.1em;
}

.philo-annotation {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--clay-deep);
  transform: rotate(-2deg);
}

/* ============================================================
   À PROPOS SECTION
   ============================================================ */
.about {
  position: relative;
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--peach);
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.about-text h2 {
  max-width: 12ch;
}

.about-text p {
  color: var(--ink-soft);
  max-width: 56ch;
}

.about-text p+p {
  margin-top: 1.1em;
}

.about-traits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trait-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-card);
}

.trait-icon {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 10px;
}

.trait-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.trait-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0;
}

.b-about-sprig {
  position: absolute;
  top: 6%;
  right: 4%;
  width: 80px;
  height: auto;
  color: var(--clay-deep);
  opacity: 0.24;
  transform: rotate(14deg);
  pointer-events: none;
}

@media (max-width: 880px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    max-width: none;
  }
}

/* ============================================================
   OFFERS SECTION
   ============================================================ */
.offers {
  padding: clamp(70px, 9vw, 110px) 0;
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(254, 236, 208, 0.5), transparent 60%),
    var(--pistachio);
}

.offers-head {
  text-align: center;
  max-width: 625px;
  margin: 0 auto 50px;
}

.offers-head .lede {
  margin: 0 auto;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.offer-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 44px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}

.offer-card .tag {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.offer-card.autonome .tag {
  background: var(--mint);
  color: #2a4a30;
}

.offer-card.accompagnement .tag {
  background: var(--rose);
  color: #5c2a2a;
}

.offer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.offer-card .offer-desc {
  color: var(--ink-soft);
  flex-grow: 1;
  margin-bottom: 26px;
}

.offer-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
}

.offer-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--hex-line);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.offer-card .price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 18px;
}

.offer-card .price.price-big {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--clay-deep);
  margin-bottom: 22px;
}

/* -------- two-tier pricing (Accompagnement Personnalisé) -------- */
.price-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.price-option {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--peach);
  border-radius: var(--radius-sm);
}

.price-option-label {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.price-option-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--clay-deep);
  white-space: nowrap;
}

/* -------- free discovery call inset -------- */
.discovery-call {
  background: var(--mint);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 22px;
}

.discovery-call p {
  margin: 0;
  font-size: 0.92rem;
  color: #2a4a30;
}

.discovery-call strong {
  color: #1f3823;
}

.offer-card.accompagnement {
  border: 1px solid rgba(192, 134, 87, 0.35);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(60px, 8vw, 100px) 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='96' viewBox='0 0 84 96'%3E%3Cg fill='none' stroke='%23C9A47E' stroke-width='1' opacity='0.35'%3E%3Cpolygon points='21,4 63,4 84,40 63,76 21,76 0,40'/%3E%3Cpolygon points='21,52 63,52 84,88 63,124 21,124 0,88'/%3E%3C/g%3E%3C/svg%3E") 0 0,
    var(--ivory);
  background-size: 84px 96px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-list details {
  background: var(--peach);
  border-radius: var(--radius-md);
  padding: 6px 26px;
  transition: background .3s ease;
}

.faq-list details[open] {
  background: var(--pistachio);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 34px 20px 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--clay-deep);
  transition: transform .3s ease;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list summary:focus-visible {
  outline: 3px solid var(--eucalyptus-deep);
  outline-offset: 3px;
}

.faq-list details p {
  color: var(--ink-soft);
  padding-bottom: 22px;
  margin: -6px 0 0 0;
  max-width: 62ch;
}

/* ============================================================
   BOTANICAL DECORATIONS
   ============================================================ */
.botanical {
  position: absolute;
  color: var(--eucalyptus-deep);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.b-hero-tl {
  top: -18px;
  left: -20px;
  width: 130px;
  height: auto;
  transform: rotate(-12deg);
}

.b-hero-br {
  bottom: 40px;
  right: 4%;
  width: 90px;
  height: auto;
  opacity: 0.26;
  transform: rotate(8deg);
}

.b-quiz-corner {
  top: 28px;
  right: 6%;
  width: 74px;
  height: auto;
  opacity: 0.22;
  transform: rotate(15deg) scaleX(-1);
}

.b-philo-sprig {
  position: static;
  display: block;
  width: 46px;
  height: auto;
  color: var(--clay-deep);
  opacity: 0.45;
  margin-bottom: 14px;
  transform: rotate(8deg);
}

.b-offers-corner {
  top: 10%;
  left: 3%;
  width: 100px;
  height: auto;
  opacity: 0.2;
  transform: rotate(-20deg);
}

.hero,
.quiz-section,
.offers,
.about,
.philosophy,
.faq {
  position: relative;
  overflow: hidden;
}

/* -------- organic wave dividers between sections -------- */
.organic-divider {
  position: relative;
  width: 100%;
  height: 60px;
  margin-top: -1px;
  line-height: 0;
}

.organic-divider svg:first-child {
  width: 100%;
  height: 100%;
  display: block;
}

.divider-down svg:first-child path {
  fill: var(--pistachio);
}

.divider-down-peach svg:first-child path {
  fill: var(--peach);
}


.divider-up svg:first-child path {
  fill: var(--ivory);
}

.divider-up-peach svg:first-child path {
  fill: var(--peach);
}

.wave-leaf {
  position: absolute;
  width: 26px;
  height: 26px;
  color: var(--clay-deep);
  opacity: 0.5;
}

.wave-leaf-1 {
  left: 12%;
  top: 8px;
  transform: rotate(-10deg);
}

.wave-leaf-2 {
  right: 14%;
  top: 4px;
  transform: rotate(20deg) scaleX(-1);
}

@media (max-width: 700px) {
  .b-hero-tl {
    width: 90px;
  }

  .b-hero-br {
    display: none;
  }

  .b-quiz-corner {
    width: 54px;
  }

  .b-offers-corner {
    width: 70px;
  }
}

/* ============================================================
   CLOSING / FOOTER
   ============================================================ */
.closing {
  padding: clamp(56px, 7vw, 80px) 0;
  text-align: center;
  background: var(--eucalyptus);
}

.closing p.lede {
  margin: 0 auto 8px;
}

.site-footer {
  padding: 34px 0 40px;
  background: var(--ivory);
  border-top: 1px solid rgba(59, 58, 44, 0.1);
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-tag {
  font-size: 0.86rem;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-sprig {
  width: 16px;
  height: 20px;
  color: var(--eucalyptus-deep);
  opacity: 0.7;
  transform: rotate(-10deg);
}

.footer-hex {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--hex-line);
  stroke-width: 1.6;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-links a {
  font-size: 0.86rem;
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .philosophy .wrap {
    grid-template-columns: 1fr;
  }

  .philo-visual {
    aspect-ratio: 16/10;
  }

  .philo-text h2 {
    max-width: none;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MENU MOBILE
   ============================================================ */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 60;
}

.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .35s ease, opacity .35s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 880px) {
  .menu-toggle {
    display: flex;
  }

  .site-header.no-blur {
    backdrop-filter: none;
    background: var(--ivory);
  }

  .header-links {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: var(--ivory);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .4s ease, transform .4s ease, visibility 0s linear .4s;
    z-index: 50;
  }

  .header-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .4s ease, transform .4s ease, visibility 0s linear 0s;
  }

  .header-links a {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--ink);
  }

  .header-links span.label {
    display: inline;
  }

  .header-links .icon-link {
    margin-top: 8px;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* ============================================================
   BOUTIQUE PAGE
   ============================================================ */
.shop-hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  text-align: center;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(254, 236, 208, 0.55), transparent 60%),
    var(--ivory);
  overflow: hidden;
}

.shop-hero .wrap {
  max-width: 700px;
}

.shop-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 28px;
}

.back-link:hover {
  color: var(--ink);
}

.shop-grid {
  position: relative;
  padding: 0 0 clamp(70px, 9vw, 110px);
  background: var(--ivory);
  overflow: hidden;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.offer-card.product-card {
  background: var(--pistachio);
}

.offer-card .tag.tag-live {
  background: var(--mint);
  color: #2a4a30;
}

.offer-card .tag.tag-soon {
  background: var(--peach);
  color: var(--clay-deep);
}

.product-card.coming-soon {
  opacity: 0.75;
}

.product-card.coming-soon .btn {
  pointer-events: none;
  background: rgba(59, 58, 44, 0.12);
  color: var(--ink-faint);
  border-color: transparent;
  box-shadow: none;
}

.product-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 22px;
  aspect-ratio: 5/4;
  background: var(--peach);
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-note {
  max-width: 640px;
  margin: 44px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

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