:root {
  color-scheme: light;
  --ink: #130d22;
  --plum: #1e1530;
  --violet: #493179;
  --lavender: #cbb6ef;
  --lilac: #a989d8;
  --hot-pink: #ff65c8;
  --aqua: #7df9ff;
  --lime: #d8ff4f;
  --muted: #7a6d86;
  --paper: #fbf7ff;
  --cream: #efe6f8;
  --sage: #7f7997;
  --moss: #493179;
  --rose: #9a6fc5;
  --citrus: #dacbff;
  --line: rgba(30, 21, 48, 0.15);
  --shadow: 0 24px 50px rgba(19, 13, 34, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 101, 200, 0.08), transparent 28%),
    linear-gradient(315deg, rgba(125, 249, 255, 0.12), transparent 32%),
    var(--paper);
  color: var(--ink);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(19, 13, 34, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(203, 182, 239, 0.18);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 16px clamp(18px, 4vw, 52px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.nav-links,
.site-footer div {
  align-items: center;
  display: flex;
}

.brand {
  display: inline-flex;
  width: min(146px, 42vw);
}

.brand img {
  height: auto;
  width: 100%;
}

.nav-links {
  color: rgba(255, 255, 255, 0.72);
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--lavender);
}

.cart-button {
  align-items: center;
  background: var(--hot-pink);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  height: 38px;
  justify-self: end;
  padding: 0 14px;
}

.cart-icon {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  transform: rotate(45deg);
}

.hero {
  background: var(--ink);
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 92% 4%, rgba(5, 1, 22, 0.9) 0 22%, transparent 22.5%),
    radial-gradient(circle at 74% 78%, rgba(216, 255, 79, 0.22) 0 10%, transparent 10.5%),
    radial-gradient(circle at -4% 101%, rgba(9, 4, 27, 0.86) 0 19%, transparent 19.5%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero::after {
  background: linear-gradient(
    90deg,
    rgba(19, 13, 34, 0.88),
    rgba(30, 21, 48, 0.38) 56%,
    rgba(19, 13, 34, 0.58)
  );
  content: "";
  inset: 0;
  position: absolute;
}

.hero-image {
  filter: saturate(1.2) hue-rotate(12deg) brightness(0.78);
  height: 92vh;
  opacity: 0.42;
  object-fit: cover;
}

.hero-copy {
  color: #fff;
  left: clamp(22px, 7vw, 96px);
  max-width: 760px;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  z-index: 2;
}

.eyebrow,
.scent,
.journal article p {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--lime);
  font-size: clamp(1rem, 2vw, 1.32rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: clamp(4px, 1vw, 12px);
  text-transform: lowercase;
}

.hero-logo {
  margin-bottom: 26px;
  max-width: min(620px, 86vw);
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  color: #fff;
  font-size: clamp(3rem, 8vw, 7.6rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0 0 24px;
  max-width: 820px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.96;
  margin-bottom: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy p:not(.eyebrow) {
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.55;
  max-width: 560px;
}

.hero-actions,
.filters,
.product-meta,
.signup-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.filter,
.add-button,
.choose-button {
  border: 1px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
}

.button.primary,
.add-button,
.choose-button {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--hot-pink);
}

.button.secondary {
  background: rgba(125, 249, 255, 0.16);
  border-color: rgba(125, 249, 255, 0.58);
  color: #fff;
}

.ticker {
  background: var(--plum);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.ticker span {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  letter-spacing: 0.02em;
  min-height: 70px;
  padding: 24px;
  text-align: center;
}

.section,
.feature-grid,
.split-section,
.journal,
.about-section,
.examples-section,
.contact-band {
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro,
.section-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.intro > p,
.section-heading > p,
.split-copy p,
.contact-band p,
.product-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  background: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 0;
  padding-top: 0;
}

.feature-grid article {
  background: var(--paper);
  border-top: 7px solid var(--hot-pink);
  min-height: 260px;
  padding: clamp(28px, 5vw, 52px);
}

.feature-grid article:nth-child(2) {
  border-top-color: var(--aqua);
}

.feature-grid article:nth-child(3) {
  border-top-color: var(--lime);
}

.feature-icon {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-weight: 900;
  margin-bottom: 70px;
  padding: 7px 12px;
}

.shop {
  background:
    linear-gradient(90deg, rgba(255, 101, 200, 0.1), transparent 38%),
    #fffaff;
}

.section-heading {
  margin-bottom: 32px;
}

.filters {
  justify-self: end;
}

.filter {
  background: transparent;
  color: var(--muted);
  min-height: 38px;
  padding: 8px 15px;
}

.filter.active {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
  box-shadow: 4px 4px 0 var(--aqua);
}

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

.product-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(19, 13, 34, 0.12);
  overflow: hidden;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translate(-3px, -5px) rotate(-0.5deg);
}

.product-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-copy {
  padding: 20px;
}

.scent {
  color: var(--violet);
  font-size: 0.69rem;
  margin-bottom: 8px;
}

.product-meta {
  justify-content: space-between;
  margin-top: 18px;
}

.product-meta span {
  font-size: 1.2rem;
  font-weight: 900;
}

.add-button {
  min-height: 38px;
  padding: 8px 17px;
}

.choose-button {
  min-height: 38px;
  padding: 8px 15px;
}

.split-section {
  align-items: stretch;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 101, 200, 0.28) 0 12%, transparent 12.5%),
    radial-gradient(circle at 20% 78%, rgba(125, 249, 255, 0.24) 0 14%, transparent 14.5%),
    var(--plum);
  color: #fff;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
}

.split-media img {
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.split-copy {
  align-self: center;
}

.split-copy .eyebrow {
  color: var(--lime);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  margin: 24px 0 28px;
}

.about-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(125, 249, 255, 0.24) 0 12%, transparent 12.5%),
    radial-gradient(circle at 88% 82%, rgba(255, 101, 200, 0.18) 0 14%, transparent 14.5%),
    #fffaff;
}

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

.team-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(19, 13, 34, 0.12);
  min-height: 220px;
  padding: clamp(28px, 5vw, 48px);
}

.team-card p {
  color: var(--hot-pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.team-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.94;
  margin: 0;
}

.team-card:nth-child(2) {
  box-shadow: 8px 8px 0 rgba(255, 101, 200, 0.22);
}

.team-card:nth-child(2) p {
  color: var(--violet);
}

.examples-section {
  background:
    linear-gradient(135deg, rgba(125, 249, 255, 0.14), transparent 32%),
    linear-gradient(315deg, rgba(255, 101, 200, 0.12), transparent 34%),
    var(--paper);
}

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

.example-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(19, 13, 34, 0.12);
  margin: 0;
  overflow: hidden;
}

.example-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.example-card figcaption {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
  padding: 16px;
}

.augie-card {
  grid-column: span 2;
}

.augie-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.augie-media img {
  height: 100%;
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg) scale(1.34);
  transform-origin: center;
  width: 100%;
}

.journal {
  background:
    linear-gradient(135deg, rgba(216, 255, 79, 0.22), transparent 34%),
    var(--cream);
}

.journal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal article {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(73, 49, 121, 0.18);
  min-height: 220px;
  padding: 28px;
}

.journal article h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.05;
}

.contact-band {
  align-items: center;
  background: var(--ink);
  border-top: 1px solid var(--line);
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-band a {
  color: var(--lime);
  font-weight: 900;
}

.signup-form label {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.signup-row {
  flex-wrap: nowrap;
}

input {
  background: #fff;
  border: 2px solid var(--lavender);
  border-radius: 18px;
  min-height: 48px;
  min-width: 0;
  padding: 0 18px;
  width: 100%;
}

select {
  appearance: none;
  background: #fff;
  border: 2px solid var(--lavender);
  border-radius: 18px;
  color: var(--ink);
  min-height: 48px;
  padding: 0 44px 0 16px;
  width: 100%;
}

.modal,
.cart-drawer {
  background: rgba(19, 13, 34, 0.68);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 40;
}

.modal.is-open,
.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 22px;
}

.modal-card,
.cart-panel {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(255, 101, 200, 0.35);
  color: var(--ink);
}

.modal-card {
  border-radius: 8px;
  max-height: calc(100vh - 44px);
  max-width: 1040px;
  overflow: auto;
  padding: clamp(18px, 3vw, 30px);
  position: relative;
  width: min(100%, 1040px);
}

.modal-layout {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
}

.modal-layout img {
  aspect-ratio: 1 / 1;
  border: 2px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
}

.modal-copy h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 16px;
}

.modal-copy > p:not(.eyebrow),
.selection-note,
.cart-note,
.empty-cart {
  color: var(--muted);
  line-height: 1.6;
}

.option-group {
  margin-top: 20px;
}

.option-group label,
.option-group > p {
  color: var(--ink);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

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

.scent-option {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  min-height: 48px;
  padding: 10px 12px;
  text-align: left;
}

.scent-option.is-selected {
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--aqua);
}

.selection-note {
  font-size: 0.92rem;
  margin: 16px 0 20px;
}

.icon-button {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
}

.cart-drawer {
  display: flex;
  justify-content: flex-end;
}

.cart-panel {
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  max-width: 440px;
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  width: min(100%, 440px);
}

.cart-heading,
.cart-total,
.cart-line,
.cart-line-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-heading h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-line {
  align-items: stretch;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  flex-direction: column;
  padding: 14px;
}

.cart-line h3 {
  margin: 0;
}

.cart-line p {
  color: var(--muted);
  margin: 4px 0 0;
}

.remove-item {
  background: transparent;
  border: 0;
  color: var(--violet);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0;
  text-transform: uppercase;
}

.cart-total {
  border-top: 2px solid var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  padding-top: 18px;
}

.preorder-link {
  text-align: center;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  color: rgba(255, 255, 255, 0.72);
  flex-wrap: wrap;
  gap: 18px;
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .hero-image {
    min-height: 780px;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(19, 13, 34, 0.2),
      rgba(19, 13, 34, 0.86)
    );
  }

  .hero-copy {
    bottom: 52px;
    left: 22px;
    right: 22px;
    top: auto;
    transform: none;
  }

  .ticker,
  .feature-grid,
  .product-grid,
  .journal-grid,
  .team-grid,
  .examples-grid,
  .modal-layout,
  .intro,
  .section-heading,
  .split-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .filters {
    justify-self: start;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: 12px 14px;
  }

  .hero,
  .hero-image {
    min-height: 760px;
  }

  .hero-logo {
    max-width: 270px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-actions,
  .signup-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .signup-row .button {
    width: 100%;
  }

  .ticker span {
    min-height: auto;
    padding: 16px;
  }

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

  .augie-card {
    grid-column: auto;
  }

  .split-media img {
    min-height: 320px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .scent-options {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    border-radius: 0;
    max-width: none;
  }
}
