/* ANAÏS shop front. No scripts, no cookies, no external requests. */
:root {
  --cream: #FFF8EC; --paper: #FFFFFF; --green: #184D33; --leaf: #2F7D4F;
  --ink: #22302A; --muted: #5C6B63; --tomato: #D9482B; --sun: #FFC94A; --line: #EFE3CD;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  font-size: 18px; line-height: 1.5; -webkit-font-smoothing: antialiased;
}
.hero, main, footer { width: min(980px, 100%); margin: 0 auto; padding-left: clamp(18px, 5vw, 40px); padding-right: clamp(18px, 5vw, 40px); }
.hero { padding-top: clamp(36px, 8vh, 88px); padding-bottom: clamp(28px, 6vh, 56px); }

.soon {
  display: inline-block; margin: 0 0 22px; padding: 6px 14px;
  background: var(--tomato); color: #FFFFFF; border-radius: 999px;
  font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.mark {
  margin: 0; color: var(--green);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(64px, 16vw, 168px); font-weight: 700; line-height: .95; letter-spacing: .08em;
}
h1 {
  margin: 18px 0 0; max-width: 17em;
  font-size: clamp(28px, 4.6vw, 48px); line-height: 1.12; letter-spacing: -.015em; font-weight: 800;
}
h1 span { background: linear-gradient(transparent 62%, var(--sun) 62%); }
.lede { margin: 20px 0 0; max-width: 36em; font-size: clamp(18px, 2.2vw, 21px); color: var(--muted); }

.band { padding: clamp(24px, 5vh, 44px) 0; border-top: 2px solid var(--line); }
h2 { margin: 0 0 18px; font-size: 15px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf); }

.how, .shelf, .promise ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.how { grid-template-columns: repeat(3, minmax(0, 1fr)); counter-reset: s; }
.how li { counter-increment: s; padding: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; }
.how li::before {
  content: counter(s); display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 14px;
  border-radius: 50%; background: var(--green); color: var(--cream); font-weight: 800;
}
.how strong, .shelf strong { display: block; font-size: 20px; line-height: 1.25; }
.how span, .shelf span { display: block; margin-top: 6px; color: var(--muted); font-size: 16px; }

.shelf { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shelf li { padding: 20px 22px; background: var(--paper); border: 1px solid var(--line); border-top: 6px solid var(--c, var(--green)); border-radius: 18px; }
.c1 { --c: #C98A2B; } .c2 { --c: #D9482B; } .c3 { --c: #E0B12E; } .c4 { --c: #2F7D4F; } .c5 { --c: #B8447A; } .c6 { --c: #2E6F9E; }

.promise li { padding-left: 34px; position: relative; font-size: 19px; }
.promise li::before { content: ""; position: absolute; left: 0; top: .38em; width: 18px; height: 18px; border-radius: 50%; background: var(--sun); border: 4px solid var(--green); }

footer { padding-top: 32px; padding-bottom: 48px; border-top: 2px solid var(--line); color: var(--muted); font-size: 14px; }
footer p { margin: 8px 0 0; max-width: 60em; }
.mark.small { font-size: 28px; margin-bottom: 10px; }

@media (max-width: 760px) { .how, .shelf { grid-template-columns: 1fr; } }
@media (min-width: 761px) and (max-width: 980px) { .shelf { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.more { color: var(--leaf); font-weight: 800; text-decoration: none; }
.more:hover { text-decoration: underline; }
