/* ----- Tokens ----- */
:root {
  --bg: #fff7f1;
  --bg-soft: #ffeede;
  --ink: #1b0f1c;
  --ink-2: #4a3a4d;
  --muted: #7a6c7d;
  --line: rgba(27, 15, 28, 0.1);
  --pink: #ff6f91;
  --coral: #ff8a5b;
  --amber: #ffb85c;
  --plum: #8a3ffc;
  --grad-warm: linear-gradient(135deg, #ff8a5b 0%, #ff6f91 50%, #b34cff 100%);
  --grad-soft: linear-gradient(135deg, #ffd9c2 0%, #ffc1d6 50%, #e0c8ff 100%);
  --shadow-sm: 0 2px 6px rgba(27, 15, 28, 0.06);
  --shadow-md: 0 12px 30px -12px rgba(179, 76, 255, 0.25),
    0 6px 18px -10px rgba(255, 111, 145, 0.25);
  --shadow-lg: 0 30px 60px -25px rgba(138, 63, 252, 0.35);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --maxw: 1180px;
}

/* ----- Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

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

/* ----- Reusable ----- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid rgba(138, 63, 252, 0.45);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: #2a1a2c;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 247, 241, 0.78);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(179, 76, 255, 0.28));
}
.brand__name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
}
.site-nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  color: var(--ink-2);
}
.site-nav a:hover {
  color: var(--ink);
}
.site-nav__cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
}
.site-nav__cta:hover {
  background: #2a1a2c;
}
@media (min-width: 720px) {
  .site-nav {
    display: flex;
  }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background-color: var(--bg);
  background-image: linear-gradient(
      to right,
      var(--bg) 0%,
      rgba(255, 247, 241, 0.92) 28%,
      rgba(255, 247, 241, 0) 70%
    ),
    url("images/hero-desktop.png");
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat, no-repeat;
}
@media (max-width: 720px) {
  .hero {
    background-image: linear-gradient(
        to bottom,
        rgba(255, 247, 241, 0.95) 0%,
        rgba(255, 247, 241, 0.7) 45%,
        rgba(255, 247, 241, 0.45) 100%
      ),
      url("images/hero-desktop.png");
    background-position: center top, center;
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero__title em {
  font-style: italic;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__glow {
  position: absolute;
  inset: auto -10% -40% auto;
  width: 70%;
  height: 70%;
  background: var(--grad-warm);
  filter: blur(120px);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero {
    padding: 110px 0 130px;
  }
}

/* ----- Sections ----- */
.section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 110px 0;
  }
}
.section__head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section__title {
  font-size: clamp(30px, 4.2vw, 48px);
}
.section__title--light {
  color: #fff;
}
.section__lede {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 17px;
}

/* ----- Cards ----- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
}
.card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 30% 20%,
    rgba(255, 255, 255, 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.card__image--tees {
  background: linear-gradient(160deg, #ffd1de 0%, #ff6f91 60%, #ff8a5b 100%);
}
.card__image--sets {
  background: linear-gradient(160deg, #ffe0bd 0%, #ff8a5b 55%, #ff6f91 100%);
}
.card__image--essentials {
  background: linear-gradient(160deg, #e6d4ff 0%, #b76dff 60%, #ff6f91 100%);
}
.card__image--accessories {
  background: linear-gradient(160deg, #ffe9c2 0%, #ffb85c 55%, #ff6f91 100%);
}
.card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: "Fraunces", Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.card__body {
  padding: 22px;
}
.card__title {
  font-size: 22px;
  margin-bottom: 8px;
}
.card__copy {
  color: var(--ink-2);
  font-size: 15px;
}

/* ----- Story ----- */
.section--story {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .story__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
}
.story__body {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 56ch;
}
.story__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background: var(--grad-soft);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ----- Notify ----- */
.section--notify {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--notify::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 70%;
  height: 70%;
  background: var(--grad-warm);
  filter: blur(120px);
  opacity: 0.45;
  border-radius: 50%;
  pointer-events: none;
}
.notify {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .notify {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.notify__lede {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 14px;
  font-size: 17px;
  max-width: 42ch;
}
.notify__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 520px) {
  .notify__form {
    grid-template-columns: 1fr auto;
  }
}
.notify__input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.notify__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.notify__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}
.notify__submit {
  background: #fff;
  color: var(--ink);
}
.notify__submit:hover {
  background: #f4eaff;
  transform: translateY(-1px);
}
.notify__status {
  grid-column: 1 / -1;
  min-height: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}
.notify__status--ok {
  color: #ffd9c2;
  font-weight: 500;
}
.notify__status--err {
  color: #ffb1b1;
  font-weight: 500;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 40px 0 56px;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-footer__tag {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-footer__meta {
  font-size: 14px;
  color: var(--ink-2);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.site-footer__meta a:hover {
  color: var(--ink);
  text-decoration: underline;
}
@media (min-width: 720px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

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