:root {
  --ink: #2f1725;
  --muted: #745b6a;
  --paper: #fff8fc;
  --soft: #fdeaf4;
  --petal: #f7d4e6;
  --line: #efc8dc;
  --gold: #b88943;
  --wine: #8d174f;
  --rose: #c21872;
  --rose-dark: #70103f;
  --rose-light: #fce5f1;
  --shadow: 0 22px 70px rgba(141, 23, 79, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  animation: pageFade 0.8s ease both;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(239, 200, 220, 0.75);
  background: rgba(255, 248, 252, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: #c21872;
  box-shadow: 0 10px 24px rgba(194, 24, 114, 0.2);
  overflow: hidden;
}

.brand-mark img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  transform: rotate(0deg);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
}

nav a:hover,
.text-link:hover {
  color: var(--wine);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(194, 24, 114, 0.18);
}

.button.primary:hover,
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--rose-dark);
}

.button.whatsapp {
  background: #1f8f59;
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  min-height: calc(100svh - 72px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 7vw, 88px) clamp(18px, 6vw, 84px) 36px;
  background:
    radial-gradient(circle at 10% 10%, rgba(252, 229, 241, 0.95), transparent 32%),
    linear-gradient(180deg, #fff8fc 0%, #fffdf9 100%);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 26px;
  width: min(34vw, 360px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 24, 114, 0.38), transparent);
  content: "";
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Marcellus, Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(3.05rem, 5.9vw, 6.05rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 3.45vw, 3.85rem);
  line-height: 1.08;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.hero-copy > p:not(.eyebrow),
.section p,
.lead-copy p,
.founder p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  position: relative;
  min-height: 140px;
  overflow: hidden;
  border: 1px solid rgba(239, 200, 220, 0.9);
  border-radius: 18px;
  padding: 42px 18px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 252, 0.66)),
    radial-gradient(circle at 100% 0, rgba(194, 24, 114, 0.12), transparent 36%);
  box-shadow: 0 18px 42px rgba(141, 23, 79, 0.08);
}

.hero-stats div::before {
  position: absolute;
  top: 16px;
  left: 18px;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-stats div:nth-child(1)::before {
  content: "01";
}

.hero-stats div:nth-child(2)::before {
  content: "02";
}

.hero-stats div:nth-child(3)::before {
  content: "03";
}

.hero-stats div::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(194, 24, 114, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-stats dt {
  position: relative;
  z-index: 1;
  font-weight: 800;
  line-height: 1.22;
}

.hero-stats dd {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-media {
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(239, 200, 220, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
  animation: floatImage 5.8s ease-in-out infinite;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: softZoom 10s ease-in-out infinite alternate;
}

.intro-band {
  padding: 34px clamp(18px, 6vw, 84px);
  background: linear-gradient(135deg, var(--rose-dark), var(--rose), #d85b9f);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.intro-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 46%, transparent 68%);
  content: "";
  transform: translateX(-100%);
  animation: shine 5.6s ease-in-out infinite;
}

.intro-band p {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  font-family: Marcellus, Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 3.05rem);
  line-height: 1.16;
  text-align: center;
}

.section {
  padding: clamp(66px, 9vw, 120px) clamp(18px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.split > div:first-child {
  position: sticky;
  top: 110px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(141, 23, 79, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 58px rgba(141, 23, 79, 0.16);
}

.category-card::after {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 248, 252, 0.84);
  box-shadow: 0 10px 24px rgba(141, 23, 79, 0.14);
  content: "";
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-card div {
  display: grid;
  align-content: center;
  padding: 18px;
}

.category-card p {
  margin: 0;
  font-size: 0.95rem;
}

.lookbook {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 12px;
  padding: 0 clamp(18px, 6vw, 84px) clamp(66px, 9vw, 120px);
}

.lookbook img {
  width: 100%;
  height: clamp(320px, 45vw, 620px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(141, 23, 79, 0.1);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.lookbook img:hover {
  filter: saturate(1.08);
  transform: translateY(-6px);
}

.lookbook img:nth-child(2) {
  margin-top: 48px;
}

.promise {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(30px, 6vw, 84px);
  background: var(--soft);
}

.promise-list {
  display: grid;
  gap: 18px;
}

.promise-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 28px;
  row-gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.promise-list span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: Marcellus, Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.promise-list h3 {
  grid-column: 2;
}

.promise-list p {
  grid-column: 2;
  margin: 0;
  max-width: 760px;
}

.founder {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.founder img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--rose);
  font-weight: 800;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background:
    radial-gradient(circle at 86% 12%, rgba(216, 91, 159, 0.28), transparent 28%),
    linear-gradient(135deg, #321525 0%, #68133e 48%, #8d174f 100%);
  color: #fff;
}

.lead-section .eyebrow,
.lead-section .lead-copy p {
  color: #ffddec;
}

.lead-copy .button {
  margin-top: 16px;
}

.instagram-link {
  display: inline-flex;
  margin-top: 16px;
  color: #ffddec;
  font-weight: 800;
}

.instagram-link:hover,
.footer-instagram:hover {
  color: var(--rose);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 248, 252, 0.1);
  box-shadow: 0 24px 70px rgba(31, 8, 22, 0.22);
}

.lead-form label,
.lead-form legend {
  color: #f8f0e5;
  font-size: 0.92rem;
  font-weight: 700;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.lead-form input.is-invalid {
  border-color: #ff8fbe;
  box-shadow: 0 0 0 3px rgba(255, 143, 190, 0.18);
}

.field-error {
  display: none;
  margin-top: 6px;
  color: #ffd0e3;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.field-error.is-visible {
  display: block;
}

fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.checks label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
}

.checks input {
  accent-color: var(--rose);
}

.form-note {
  margin: -4px 0 0;
  color: #cdbdab;
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-status {
  display: none;
  margin: 0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(227, 255, 238, 0.14);
  color: #d8ffe7;
}

.form-status.is-error {
  background: rgba(255, 143, 190, 0.14);
  color: #ffd0e3;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--line);
}

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

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

.reveal.delay-1 {
  transition-delay: 0.08s;
}

.reveal.delay-2 {
  transition-delay: 0.16s;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes softZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.07);
  }
}

@keyframes shine {
  0%,
  58% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-instagram {
  color: var(--wine);
  font-weight: 800;
}

.mobile-dock {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .split,
  .promise,
  .founder,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
  }

  .split > div:first-child {
    position: static;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

@media (max-width: 820px) {
  .category-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .category-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) 1fr;
    align-items: stretch;
  }

  .category-card img {
    height: clamp(240px, 38vw, 320px);
    aspect-ratio: auto;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 10px 14px;
  }

  .brand span {
    max-width: 116px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark,
  .brand-mark img {
    width: 44px;
    height: 44px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(194, 24, 114, 0.18);
    border-radius: 50%;
    background: rgba(252, 229, 241, 0.82);
    box-shadow: 0 8px 22px rgba(141, 23, 79, 0.08);
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle:focus-visible {
    outline: 2px solid rgba(194, 24, 114, 0.32);
    outline-offset: 3px;
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--rose-dark);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

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

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

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

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    z-index: 30;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(239, 200, 220, 0.95);
    border-radius: 18px;
    background: rgba(255, 248, 252, 0.96);
    box-shadow: 0 22px 54px rgba(47, 23, 37, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(18px);
  }

  .site-header.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    min-height: 46px;
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--ink);
    font-weight: 800;
  }

  .mobile-menu a:last-child {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.35rem, 12.8vw, 3.35rem);
    line-height: 1.03;
  }

  .hero {
    padding: 30px 16px 28px;
  }

  .hero::after {
    right: 20px;
    bottom: 18px;
    width: 42vw;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-actions {
    flex-direction: column;
    margin: 26px 0 22px;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 0;
  }

  .hero-stats div {
    min-height: 142px;
    border-radius: 14px;
    padding: 40px 14px 16px;
  }

  .hero-stats div:last-child {
    grid-column: 1 / -1;
    min-height: 118px;
  }

  .hero-stats dt {
    font-size: 0.92rem;
  }

  .hero-stats dd {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .hero-media {
    min-height: 360px;
    margin-top: -6px;
    border-radius: 24px;
    transform: rotate(-1.2deg);
  }

  .hero-media::after {
    position: absolute;
    inset: auto 18px 18px auto;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    background: rgba(194, 24, 114, 0.16);
    content: "";
  }

  .intro-band,
  .section,
  .lookbook {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lookbook {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-card {
    display: grid;
    grid-template-columns: 44% 1fr;
    min-height: 176px;
    border-radius: 18px;
  }

  .category-card img {
    height: 100%;
    min-height: 176px;
    aspect-ratio: auto;
  }

  .category-card:nth-child(even) {
    grid-template-columns: 1fr 44%;
  }

  .category-card:nth-child(even) img {
    grid-column: 2;
    grid-row: 1;
  }

  .category-card:nth-child(even) div {
    grid-column: 1;
    grid-row: 1;
  }

  .category-card div {
    padding: 18px 16px;
  }

  .category-card h3 {
    font-size: 1.14rem;
  }

  .category-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .lookbook img,
  .lookbook img:nth-child(2) {
    margin-top: 0;
  }

  .lookbook img:first-child {
    grid-column: 1 / -1;
    height: 340px;
  }

  .lookbook img:nth-child(2),
  .lookbook img:nth-child(3) {
    height: 220px;
  }

  .promise {
    background:
      radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.7), transparent 35%),
      var(--soft);
  }

  .promise-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 6px;
    border: 1px solid rgba(239, 200, 220, 0.9);
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 12px 32px rgba(141, 23, 79, 0.08);
  }

  .promise-list {
    gap: 12px;
  }

  .founder {
    padding-top: 72px;
  }

  .founder img {
    max-height: 440px;
    border-radius: 24px;
  }

  .lead-section {
    border-radius: 28px 28px 0 0;
    margin-top: 18px;
  }

  .lead-form {
    border-radius: 22px;
  }

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

  .mobile-dock {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 20;
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(239, 200, 220, 0.9);
    border-radius: 18px;
    background: rgba(255, 248, 252, 0.88);
    box-shadow: 0 18px 44px rgba(47, 23, 37, 0.2);
    backdrop-filter: blur(18px);
  }

  .mobile-dock a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
  }

  .mobile-dock a:first-child {
    border: 1px solid var(--line);
    color: var(--rose-dark);
  }

  .mobile-dock a:last-child {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
  }
}
