@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --ink: #1a1a18;
  --muted: #67625b;
  --paper: #f1eee8;
  --paper-deep: #e3dfd7;
  --card: #faf8f3;
  --red: #c72a09;
  --red-dark: #a72208;
  --line: rgba(26, 26, 24, 0.18);
  --shadow: 0 24px 80px rgba(55, 45, 34, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Barlow', Arial, sans-serif;
  font-weight: 300;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(241, 238, 232, 0.92);
  backdrop-filter: blur(16px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand-logo {
  display: block;
  width: clamp(138px, 16vw, 200px);
  height: auto;
}

.season-tag,
.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
}

.season-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
  isolation: isolate;
}

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

.eyebrow {
  margin: 0 0 24px;
  color: var(--red);
}

.display-title {
  margin: 0;
  max-width: 15ch;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.6rem, 6.2vw, 6.8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.display-title em {
  color: var(--muted);
  font-weight: 400;
}

.hero-intro {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
}

.hero-intro strong {
  color: var(--ink);
  font-weight: 500;
}

.hero-callout {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  line-height: 1.45;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 34px;
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  vertical-align: middle;
  letter-spacing: 0;
}

.pillar-title {
  display: inline;
  margin-top: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.pillar-description {
  display: block;
  margin: 5px 0 0 30px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.launch-pill {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 30px;
  background: var(--ink);
  padding: 9px 16px;
  color: var(--paper);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 500;
}

.launch-pill span {
  color: var(--red);
}

.signup-card {
  position: relative;
  width: min(100%, 480px);
  justify-self: start;
  border: 1px solid rgba(26, 26, 24, 0.14);
  border-radius: 2px;
  box-shadow: none;
  background: #f5f3ef;
  padding: 32px 24px;
}

.form-kicker {
  margin: 0 0 10px;
  color: var(--red);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 600;
}

.form-title {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.form-intro {
  margin: 0 0 30px;
  color: var(--muted);
  line-height: 1.55;
}

.waitlist-form {
  position: relative;
  z-index: 1;
}

.field {
  margin-top: 22px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 600;
}

.field .optional {
  color: var(--muted);
  text-transform: none;
  font-weight: 300;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  padding: 12px 14px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.field textarea {
  min-height: 82px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8d877e;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--ink);
}

.field input[aria-invalid='true'] {
  border-color: var(--red);
}

.field-error {
  min-height: 18px;
  margin: 6px 0 0;
  color: var(--red-dark);
  font-size: 0.76rem;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  margin-top: 26px;
  border: 1px solid var(--red);
  border-radius: 0;
  background: var(--red);
  padding: 14px 18px;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.primary-button:hover:not(:disabled) {
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.primary-button:disabled {
  border-color: #b9b3aa;
  background: #b9b3aa;
  color: #eeeae3;
  cursor: not-allowed;
  opacity: 0.78;
}

.button-arrow {
  font-size: 1.2rem;
  line-height: 1;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--red-dark);
  font-size: 0.85rem;
  line-height: 1.45;
}

.form-note {
  margin: 14px 0 0;
  color: #aaa59d;
  font-size: 0.75rem;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-underline-offset: 4px;
}

.teaser-page {
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
}

.teaser-page .site-nav {
  border-bottom-color: rgba(241, 238, 232, 0.18);
  background: rgba(26, 26, 24, 0.9);
}

.teaser-page .brand-logo {
  filter: none;
}

.teaser-page .season-tag {
  border-color: rgba(241, 238, 232, 0.25);
}

.teaser {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: 70px 20px;
  text-align: center;
  isolation: isolate;
}

.teaser::before,
.teaser::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(241, 238, 232, 0.14);
  content: '';
}

.teaser::before {
  top: -18vw;
  right: -12vw;
  width: 58vw;
  height: 58vw;
  border-radius: 49% 51% 34% 66% / 65% 35% 65% 35%;
  transform: rotate(24deg);
}

.teaser::after {
  bottom: -30vw;
  left: -22vw;
  width: 64vw;
  height: 64vw;
  border: 10vw solid rgba(199, 42, 9, 0.11);
  border-radius: 50%;
}

.teaser-content {
  max-width: 980px;
}

.teaser-title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4.2rem, 10vw, 10.5rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.teaser-title em {
  color: var(--red);
  font-weight: 400;
}

.teaser-copy {
  max-width: 520px;
  margin: 34px auto 0;
  color: #bcb6ac;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.teaser-cta {
  display: inline-flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  margin-top: 40px;
  border: 1px solid var(--red);
  background: var(--red);
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease;
}

.teaser-cta:hover {
  border-color: #e03d1d;
  background: #e03d1d;
}

.confirmation-main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 72px - 97px);
  overflow: hidden;
  padding: clamp(70px, 10vw, 140px) 20px;
  text-align: center;
}

.confirmation-main::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(199, 42, 9, 0.2);
  border-radius: 50%;
  content: '';
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.confirmation-content {
  position: relative;
  max-width: 760px;
}

.confirmation-title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.confirmation-copy {
  max-width: 510px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--ink);
  padding: 10px 18px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

.social-links a:hover {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 36px;
    padding-right: 32px;
    padding-left: 32px;
  }

}

@media (max-width: 767px) {
  .site-nav {
    min-height: 64px;
    padding: 10px 18px;
  }

  .brand-logo {
    width: 142px;
  }

  .season-tag {
    font-size: 0.61rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 42px;
    align-items: stretch;
    min-height: auto;
    padding: 68px 20px 76px;
  }

  .display-title {
    max-width: 14ch;
    font-size: clamp(3.8rem, 18vw, 6.2rem);
    line-height: 0.88;
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 1rem;
  }

  .signup-card {
    width: 100%;
    justify-self: stretch;
    padding: 30px 22px;
  }

  .form-title {
    font-size: 2.7rem;
  }

  .site-footer {
    align-items: flex-start;
    padding: 24px 20px;
  }

  .footer-links {
    gap: 2px 18px;
  }

  .teaser {
    min-height: calc(100svh - 64px);
    padding: 60px 20px 76px;
  }

  .teaser-title {
    font-size: clamp(4.2rem, 21vw, 7rem);
  }

  .teaser-copy {
    margin-top: 26px;
  }

  .teaser-cta {
    width: min(100%, 360px);
    margin-top: 34px;
  }

  .confirmation-main {
    min-height: calc(100svh - 64px);
  }

  .confirmation-main::before {
    width: 130vw;
  }
}

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

/* KAN-36 teaser artifact */
.artifact-teaser-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #0a0a09;
}

.teaser-frame {
  position: relative;
  width: min(390px, 100vw);
  height: min(700px, 100svh);
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
  background: #e8e6e0;
}

.lookbook-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.05);
  background: #e8e6e0;
  padding: 40px 24px;
  opacity: 0.95;
  filter: blur(1.5px);
}

.lookbook-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #6b6963;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.lookbook-category small {
  color: #999;
  letter-spacing: 0;
  text-transform: none;
  font-size: 11px;
  font-weight: 300;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.lookbook-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  background: #c9c5bd;
}

.lookbook-image-red {
  background: linear-gradient(160deg, #c72a09, #8f1f07);
}

.lookbook-image span {
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 9px;
}

.lookbook-item small,
.lookbook-item strong,
.lookbook-item em {
  display: block;
}

.lookbook-item small {
  margin-top: 6px;
  color: #999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 8px;
}

.lookbook-item strong {
  color: #1a1a18;
  font-size: 10px;
}

.lookbook-item em {
  color: #999;
  font-size: 9px;
}

.teaser-beta-tag {
  position: absolute;
  top: 24px;
  right: 20px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 4px 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 9px;
}

.teaser-float-pill {
  position: absolute;
  top: 80px;
  right: 16px;
  z-index: 3;
  border: 1px solid rgba(199, 42, 9, 0.4);
  border-radius: 20px;
  background: rgba(199, 42, 9, 0.15);
  padding: 8px 16px;
  color: #c72a09;
  letter-spacing: 0.08em;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.teaser-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.94) 72%, #000 100%);
  padding: 0 32px 40px;
  text-align: center;
}

.teaser-logo {
  position: absolute;
  top: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.teaser-logo img {
  display: block;
  width: 126px;
  height: auto;
}

.teaser-coming-label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
  color: #c72a09;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
}

.teaser-coming-label::before,
.teaser-coming-label::after {
  width: 24px;
  height: 1px;
  background: #c72a09;
  content: '';
  opacity: 0.6;
}

.artifact-teaser-title {
  margin: 0 0 10px;
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.12;
}

.artifact-teaser-title em {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.artifact-teaser-sub {
  max-width: 280px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.7;
}

.teaser-copy-mobile {
  display: none;
}

.artifact-waitlist-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-bottom: 12px;
  border: 0;
  border-radius: 30px;
  background: #c72a09;
  padding: 15px 36px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
}

.artifact-waitlist-button:hover {
  background: #a32208;
}

.artifact-waitlist-sub {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  font-size: 11px;
}

.artifact-footer-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
}

.artifact-footer-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

.teaser-noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

/* KAN-36 confirmation artifact */
.artifact-confirmation-page {
  min-height: 100vh;
  background: #d4d0c8;
  color: #1a1a18;
}

.confirmation-shell {
  display: flex;
  flex-direction: column;
  width: min(480px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  box-shadow: 0 0 0 1px #cdc9c2;
  background: #e4e2dd;
}

.confirmation-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-bottom: 1px solid #cdc9c2;
  padding: 12px 20px;
}

.confirmation-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.confirmation-nav img {
  display: block;
  width: 104px;
  height: auto;
}

.confirmation-nav span {
  color: #6b6963;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 9px;
}

.artifact-confirmation-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 32px;
  text-align: center;
}

.confirmation-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  border: 1px solid #c72a09;
  border-radius: 50%;
}

.confirmation-mark::before {
  color: #c72a09;
  content: '✓';
  font-size: 24px;
  font-weight: 700;
}

.confirmation-eyebrow,
.confirmation-next {
  text-transform: uppercase;
  font-weight: 500;
}

.confirmation-eyebrow {
  margin: 0 0 16px;
  color: #c72a09;
  letter-spacing: 0.24em;
  font-size: 10px;
}

.artifact-confirmation-content h1 {
  margin: 0 0 20px;
  color: #1a1a18;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.1;
}

.confirmation-message {
  max-width: 340px;
  margin: 0 0 40px;
  color: #6b6963;
  font-size: 14px;
  line-height: 1.8;
}

.confirmation-message strong {
  color: #1a1a18;
  font-weight: 500;
}

.confirmation-divider {
  width: 40px;
  height: 1px;
  margin-bottom: 32px;
  background: #cdc9c2;
}

.confirmation-next {
  margin: 0 0 20px;
  color: #6b6963;
  letter-spacing: 0.16em;
  font-size: 10px;
}

.artifact-social-row {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.artifact-social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #1a1a18;
  border-radius: 50%;
  background: transparent;
  transition: background 150ms ease, transform 150ms ease;
}

.artifact-social-row a:hover {
  transform: scale(1.05);
  background: #1a1a18;
}

.artifact-social-row svg {
  width: 18px;
  height: 18px;
  stroke: #1a1a18;
}

.artifact-social-row a:hover svg {
  stroke: #f5f3ef;
}

.artifact-confirmation-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #cdc9c2;
  padding: 24px 20px;
  text-align: center;
}

.artifact-confirmation-footer img {
  width: 92px;
  height: auto;
  margin-bottom: 12px;
}

.artifact-confirmation-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #6b6963;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
}

.artifact-confirmation-footer p {
  margin: 0;
  color: #aca69d;
  font-size: 10px;
}

@media (max-width: 767px) {
  .teaser-copy-desktop {
    display: none;
  }

  .teaser-copy-mobile {
    display: block;
  }
}

@media (max-width: 390px), (max-height: 700px) {
  .teaser-frame {
    border-radius: 0;
  }
}
