@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --ink: #171214;
  --ink-soft: #4d4246;
  --cream: #fffaf5;
  --paper: #f8f1eb;
  --rose: #f2c7cf;
  --rose-strong: #dd8194;
  --pink: #ef476f;
  --white: #ffffff;
  --green: #25d366;
  --line: rgba(23, 18, 20, 0.14);
  --shadow: 0 28px 70px rgba(46, 30, 37, 0.16);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.announcement {
  position: relative;
  z-index: 100;
  overflow: hidden;
  height: 34px;
  color: var(--cream);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.announcement__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  height: 100%;
  padding-left: 28px;
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 245, 0.92);
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(46, 30, 37, 0.07);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: var(--cream);
  background: var(--ink);
  border-radius: 50% 50% 44% 56% / 58% 44% 56% 42%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 700;
  transform: rotate(-6deg);
}

.brand__mark--small {
  width: 38px;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.brand__text small {
  margin-top: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav > a:not(.button) {
  position: relative;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button--small {
  min-height: 43px;
  padding-inline: 19px;
  font-size: 0.8rem;
}

.button--large {
  min-height: 62px;
  padding-inline: 34px;
}

.button--dark {
  color: var(--cream);
  background: var(--ink);
}

.button--primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.32);
}

.button--ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.3);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--white);
}

.button--light {
  color: var(--ink);
  background: var(--cream);
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}

.hero::before {
  content: "EVANGELINE";
  position: absolute;
  top: 48%;
  left: 50%;
  color: rgba(23, 18, 20, 0.035);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(7rem, 17vw, 16rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: 70px;
}

.hero__copy h1,
.section-heading h2,
.tiktok-section__copy h2,
.final-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero__copy h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}

.hero__copy h1 em {
  color: var(--rose-strong);
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--rose);
}

.hero__lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero__notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__notes i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--ink);
  background: var(--rose);
  border-radius: 50%;
  font-size: 0.7rem;
  font-style: normal;
}

.hero__visual {
  position: relative;
  min-height: 600px;
}

.fashion-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.fashion-card--back {
  top: 26px;
  right: -30px;
  width: 68%;
  height: 75%;
  background: linear-gradient(145deg, #dac1bd, #f4ddd5 52%, #f9f0eb);
  transform: rotate(9deg);
}

.fashion-card--main {
  top: 70px;
  left: 18px;
  width: 73%;
  height: 78%;
  padding: 24px;
  background: linear-gradient(160deg, #1b1518, #32272c);
  transform: rotate(-4deg);
}

.fashion-card__topline {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.fashion-card__label {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.fashion-card__silhouette {
  position: absolute;
  inset: 0;
}

.fashion-card__silhouette--dress::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  width: 34%;
  height: 64%;
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.35));
  clip-path: polygon(38% 0, 62% 0, 70% 15%, 62% 31%, 92% 100%, 8% 100%, 38% 31%, 30% 15%);
  filter: drop-shadow(0 18px 20px rgba(68, 39, 46, 0.18));
  transform: translateX(-50%);
}

.fashion-card__silhouette--dress::after {
  content: "";
  position: absolute;
  top: 11%;
  left: 50%;
  width: 28%;
  height: 16%;
  border: 7px solid rgba(255, 255, 255, 0.6);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.fashion-card__silhouette--set::before {
  content: "";
  position: absolute;
  top: 21%;
  left: 50%;
  width: 49%;
  height: 35%;
  background: linear-gradient(145deg, #f5d0d7, #c67a8a);
  border-radius: 20% 20% 8% 8%;
  clip-path: polygon(13% 0, 36% 0, 42% 11%, 58% 11%, 64% 0, 87% 0, 100% 23%, 82% 37%, 76% 29%, 72% 100%, 28% 100%, 24% 29%, 18% 37%, 0 23%);
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}

.fashion-card__silhouette--set::after {
  content: "";
  position: absolute;
  top: 54%;
  left: 50%;
  width: 43%;
  height: 31%;
  background: linear-gradient(145deg, #f6f0ec, #c8b9b2);
  clip-path: polygon(4% 0, 96% 0, 82% 100%, 55% 100%, 50% 32%, 45% 100%, 18% 100%);
  transform: translateX(-50%);
}

.fashion-card__caption {
  position: absolute;
  right: 24px;
  bottom: 26px;
  left: 24px;
  z-index: 3;
  padding-top: 16px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.fashion-card__caption strong,
.fashion-card__caption small {
  display: block;
}

.fashion-card__caption strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
}

.fashion-card__caption small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.floating-tag {
  position: absolute;
  z-index: 8;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 18, 20, 0.08);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(43, 25, 32, 0.14);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.floating-tag--one {
  top: 19%;
  left: -5%;
  transform: rotate(-10deg);
}

.floating-tag--two {
  right: -2%;
  bottom: 17%;
  color: var(--white);
  background: var(--pink);
  transform: rotate(8deg);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero__glow--one {
  top: -100px;
  right: -80px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(242, 199, 207, 0.55), rgba(242, 199, 207, 0));
}

.hero__glow--two {
  bottom: -160px;
  left: -160px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 202, 171, 0.22), rgba(240, 202, 171, 0));
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 36px;
  background: var(--ink);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

.collection {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

.section-heading h2,
.tiktok-section__copy h2,
.final-cta h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.section-heading > p,
.section-heading--center > p {
  margin: 0;
  color: var(--ink-soft);
}

.section-heading--center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p {
  max-width: 590px;
  margin: 22px auto 0;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}

.category-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.category-card__art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.category-card__art::before,
.category-card__art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.category-card__art--one {
  background: linear-gradient(145deg, #dfc0bd, #f5dfd7);
}

.category-card__art--one::before {
  top: -8%;
  left: -13%;
  width: 80%;
  height: 48%;
  background: rgba(255,255,255,.25);
}

.category-card__art--two {
  background: linear-gradient(155deg, #d7b9c2, #f3d8df 55%, #f9ecee);
}

.category-card__art--three {
  background: linear-gradient(145deg, #cdbeb5, #ece1d9);
}

.clothing-shape {
  position: absolute;
  top: 12%;
  left: 50%;
  filter: drop-shadow(0 24px 26px rgba(61, 34, 44, 0.18));
  transform: translateX(-50%);
}

.clothing-shape--dress {
  width: 46%;
  height: 58%;
  background: linear-gradient(145deg, #fff8f4, #c98f99);
  clip-path: polygon(36% 0, 64% 0, 72% 16%, 64% 31%, 94% 100%, 6% 100%, 36% 31%, 28% 16%);
}

.clothing-shape--top {
  top: 18%;
  width: 58%;
  height: 41%;
  background: linear-gradient(145deg, #fcf7f4, #b16f7d);
  clip-path: polygon(14% 0, 36% 0, 42% 12%, 58% 12%, 64% 0, 86% 0, 100% 25%, 82% 40%, 75% 31%, 70% 100%, 30% 100%, 25% 31%, 18% 40%, 0 25%);
}

.clothing-shape--bag {
  top: 22%;
  width: 50%;
  height: 40%;
  background: linear-gradient(145deg, #fff7ee, #aa8e7e);
  border-radius: 12% 12% 22% 22%;
}

.clothing-shape--bag::before {
  content: "";
  position: absolute;
  top: -28%;
  left: 20%;
  width: 60%;
  height: 50%;
  border: 12px solid #dbc5b8;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.category-card__content {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.category-card__content > span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.category-card__content h3 {
  margin: 8px 0 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.category-card__content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.category-card__content strong {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
}

.tiktok-section {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.tiktok-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(221, 129, 148, 0.22), rgba(221, 129, 148, 0));
  border-radius: 50%;
}

.tiktok-section__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 80px;
}

.tiktok-section__copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.stat-list {
  display: grid;
  gap: 18px;
  margin: 36px 0;
}

.stat-list > div {
  padding-left: 18px;
  border-left: 2px solid var(--rose-strong);
}

.stat-list strong,
.stat-list span {
  display: block;
}

.stat-list strong {
  font-size: 0.9rem;
}

.stat-list span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.tiktok-frame {
  overflow: hidden;
  padding: 14px;
  background: #f3ece7;
  border-radius: 32px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.tiktok-frame__header {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 10px;
  color: var(--ink-soft);
}

.tiktok-frame__header small {
  margin-left: auto;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot--pink { background: var(--pink); }
.dot--cream { background: #d9b69f; }
.dot--white { background: #fff; border: 1px solid #d2c5bf; }

.tiktok-embed-wrap {
  min-height: 525px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
}

.tiktok-embed-wrap blockquote {
  width: 100%;
}

.embed-fallback {
  padding: 36px;
  text-align: center;
}

.embed-fallback a {
  text-decoration: underline;
}

.process {
  background: var(--cream);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 76px;
  right: 17%;
  left: 17%;
  height: 1px;
  background: var(--line);
}

.step {
  position: relative;
  z-index: 2;
  padding: 34px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.step__number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(23, 18, 20, 0.35);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.step__icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  color: var(--ink);
  background: var(--rose);
  border: 10px solid var(--cream);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  box-shadow: 0 0 0 1px var(--line);
}

.step h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.step p {
  max-width: 250px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.manifesto {
  padding-top: 50px;
  padding-bottom: 50px;
}

.manifesto__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  padding: 68px;
  color: var(--white);
  background: linear-gradient(135deg, #2b2025, #171214);
  border-radius: var(--radius-lg);
}

.manifesto__quote {
  max-width: 820px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-style: italic;
  line-height: 1.1;
}

.manifesto__signature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.manifesto__signature .brand__mark {
  color: var(--ink);
  background: var(--rose);
}

.manifesto__signature strong,
.manifesto__signature small {
  display: block;
}

.manifesto__signature small {
  color: rgba(255,255,255,.55);
}

.final-cta {
  overflow: hidden;
  background: var(--rose);
}

.final-cta__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.7) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(23,18,20,.35) 0 1px, transparent 2px);
  background-size: 46px 46px, 62px 62px;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
}

.final-cta__inner .eyebrow {
  justify-content: center;
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px auto 34px;
  color: rgba(23, 18, 20, 0.72);
  font-size: 1.06rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr;
  gap: 60px;
  padding-top: 74px;
  padding-bottom: 58px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand__mark {
  color: var(--ink);
  background: var(--rose);
}

.site-footer__grid > div:first-child p {
  max-width: 310px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.52);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.76rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 19px;
  color: var(--white);
  background: var(--green);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(24, 89, 49, 0.34);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(24, 89, 49, 0.4);
}

.whatsapp-float svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }

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

:focus-visible {
  outline: 3px solid rgba(239, 71, 111, 0.65);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  .hero__grid,
  .tiktok-section__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 590px);
    margin-inline: auto;
  }

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

  .category-card--large {
    grid-column: 1 / -1;
  }

  .tiktok-section__copy {
    max-width: 690px;
  }

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

@media (max-width: 820px) {
  .section {
    padding: 88px 0;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

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

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 90px 30px;
    background: var(--cream);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav .button {
    margin-top: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .steps::before {
    display: none;
  }

  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
    column-gap: 22px;
    text-align: left;
  }

  .step__icon {
    grid-area: icon;
    margin: 0;
  }

  .step h3 {
    grid-area: title;
    align-self: end;
  }

  .step p {
    grid-area: text;
    margin: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__mark {
    width: 38px;
  }

  .brand__text strong {
    font-size: 1.1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 108px;
  }

  .hero__grid {
    gap: 42px;
  }

  .hero__copy h1 {
    font-size: clamp(3.1rem, 15vw, 4.7rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__notes {
    display: grid;
    gap: 12px;
  }

  .hero__visual {
    min-height: 475px;
  }

  .fashion-card--main {
    top: 48px;
    left: 4%;
    width: 78%;
    height: 78%;
  }

  .fashion-card--back {
    right: 2%;
    width: 70%;
    height: 76%;
  }

  .floating-tag--one { left: 0; }
  .floating-tag--two { right: 0; }

  .scroll-cue {
    bottom: 12px;
  }

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

  .category-card--large {
    grid-column: auto;
  }

  .category-card {
    min-height: 455px;
  }

  .tiktok-section__grid {
    gap: 46px;
  }

  .tiktok-frame {
    margin-inline: -6px;
    padding: 8px;
    border-radius: 24px;
  }

  .tiktok-embed-wrap {
    min-height: 430px;
    border-radius: 18px;
  }

  .step {
    grid-template-columns: 72px 1fr;
    padding: 26px 20px;
  }

  .step__icon {
    width: 66px;
    height: 66px;
    border-width: 7px;
  }

  .manifesto {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .manifesto__inner {
    padding: 38px 24px;
    border-radius: 28px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__grid > div:first-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    display: grid;
    gap: 4px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
