/* =========================================================
   House of Olga — earthy / Hermès model
   Pink lives in product photos, never in UI.
   ========================================================= */

:root {
  /* UI palette */
  --cream: #F5EFE4;
  --cream-2: #EFE7D6;
  --soft-black: #1B1612;
  --soft-black-2: #2A2420;
  --cognac: #9B6B3F;
  --cognac-light: #B58457;
  --brass: #B8945A;
  --ink: #2D241D;
  --muted: #6B5A4C;
  --hairline: rgba(27, 22, 18, 0.12);
  --hairline-light: rgba(245, 239, 228, 0.18);

  /* Product palette (used only on swatches & product imagery) */
  --pink: #BC3D7A;
  --blue: #8AA8C2;
  --leather-cognac: #A56B3D;
  --leather-black: #2A211A;

  /* Type */
  --display: "Fraunces", "Times New Roman", serif;
  --body: "DM Sans", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7rem);
  --radius: 14px;
  --radius-pill: 999px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -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; }
ul { list-style: none; padding: 0; margin: 0; }

.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;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  margin: 0.4rem 0 1.2rem;
  color: var(--soft-black);
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--cognac);
}
.display--md { font-size: clamp(2rem, 4.8vw, 3.4rem); }
.display--sm { font-size: clamp(1.5rem, 3vw, 2rem); }
.display--light { color: var(--cream); }
.display--light em { color: var(--brass); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 2rem;
  line-height: 1.55;
}
section p { color: var(--ink); }
section p strong { color: var(--soft-black); font-weight: 600; }

.eyebrow {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cognac);
  margin: 0 0 0.75rem;
}
.eyebrow--light { color: var(--brass); }
.eyebrow--cognac { color: var(--cognac); }

.accent { color: var(--cognac); font-style: italic; font-family: var(--display); font-weight: 500; }

/* ---------- Wordmark ---------- */
.wordmark {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--soft-black);
  display: inline-block;
}
.wordmark em {
  font-style: italic;
  color: var(--cognac);
  font-weight: 400;
}
.wordmark--sm { font-size: 1.6rem; }
.wordmark--lg { font-size: clamp(3rem, 7vw, 5rem); margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 0.18s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--dark { background: var(--soft-black); color: var(--cream); }
.btn--dark:hover { background: #000; }

.btn--outline {
  background: transparent; color: var(--soft-black);
  border-color: rgba(27, 22, 18, 0.35);
}
.btn--outline:hover { border-color: var(--soft-black); }

.btn--cream { background: var(--cream); color: var(--soft-black); }
.btn--cream:hover { background: #fff; }

.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.btn--block { width: 100%; padding: 1rem 1.5rem; font-size: 1rem; }

/* ---------- Pill badge ---------- */
.pill {
  display: inline-block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cognac);
  background: var(--cream-2);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

/* ---------- Image slots (placeholders until real photos) ---------- */
.image-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #ECE2CF 0%, #DDD0B6 100%);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.image-slot::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(27, 22, 18, 0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.6;
}
.image-slot span {
  position: relative; z-index: 1;
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--hairline);
}
.image-slot[data-image]:has(img) { background: transparent; }
.image-slot[data-image]:has(img) span,
.image-slot[data-image]:has(img)::before { display: none; }
.image-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.image-slot--hero { aspect-ratio: 4 / 5; }
.image-slot--full { aspect-ratio: 1 / 1; border-radius: 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto;
  padding: 0.85rem var(--gutter);
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(2.5rem, 6vw, 4.5rem); }
.hero__inner {
  text-align: center;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex; flex-direction: column; align-items: center;
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
  margin-top: 0.5rem;
}
.hero__image {
  margin: 0;
  padding: 0 var(--gutter);
}
.hero__image .image-slot {
  aspect-ratio: 4 / 5;
  max-width: 920px; margin: 0 auto;
}
@media (min-width: 720px) {
  .hero__image .image-slot { aspect-ratio: 16 / 10; }
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--soft-black);
  color: var(--cream);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
}
.ticker__track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: marquee 38s linear infinite;
  padding-left: 100%;
}
.ticker__track span { color: var(--cream); opacity: 0.92; }
.ticker__track span[aria-hidden="true"] { color: var(--brass); opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ---------- Muse ---------- */
.muse { padding: var(--section-y) 0; }
.muse__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 860px) {
  .muse__grid { grid-template-columns: 1fr 1.05fr; gap: 4rem; }
}
.muse__copy p { margin: 0 0 1rem; max-width: 56ch; }
.muse__caption {
  margin-top: 1.5rem !important;
  display: inline-block;
  background: var(--cream-2);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  color: var(--ink) !important;
}
.muse__caption em { color: var(--cognac); font-family: var(--display); font-weight: 500; }

/* ---------- Three pieces intro ---------- */
.intro {
  text-align: center;
  padding: var(--section-y) 0;
  background: var(--cream-2);
}
.intro__inner { padding: 0 var(--gutter); }
.intro__inner .lede { margin-bottom: 0; }

/* ---------- Products ---------- */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: var(--section-y) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 760px) {
  .products { grid-template-columns: repeat(3, 1fr); }
}
.product { display: flex; flex-direction: column; }
.product__image { margin: 0 0 1.25rem; }
.product__num {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cognac);
  margin: 0 0 0.4rem;
}
.product__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.55rem;
  margin: 0 0 0.6rem;
  color: var(--soft-black);
}
.product__row {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--hairline);
  padding-top: 0.85rem;
}
.product__price {
  margin: 0;
  font-size: 1rem;
  color: var(--soft-black);
  font-weight: 500;
}
.dots { display: inline-flex; gap: 0.5rem; }
.dot {
  width: 16px; height: 16px; border-radius: 50%;
  display: inline-block;
  border: 1px solid var(--hairline);
}
.dot.is-active { outline: 2px solid var(--cognac); outline-offset: 2px; }
.dot--pink   { background: var(--pink); }
.dot--blue   { background: var(--blue); }
.dot--cognac { background: var(--leather-cognac); }
.dot--black  { background: var(--leather-black); }

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 0 var(--gutter);
}

/* ---------- Palette ---------- */
.palette {
  padding: var(--section-y) 0;
  background: var(--cream-2);
}
.swatches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 920px; margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 760px) { .swatches { grid-template-columns: repeat(4, 1fr); } }
.swatch { text-align: center; }
.swatch__chip {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 -8px 24px rgba(0,0,0,0.10);
}
.swatch__chip svg { width: 28px; height: 28px; }
.swatch__chip--pink   { background: var(--pink); }
.swatch__chip--blue   { background: var(--blue); }
.swatch__chip--cognac { background: var(--leather-cognac); }
.swatch__chip--black  { background: var(--leather-black); }
.swatch__name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  margin: 0;
  color: var(--cognac);
}
.swatch__name em { font-style: italic; }
.swatch__meta {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.tag {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--cognac);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
}

/* ---------- What Arrives (dark) ---------- */
.arrives {
  background: var(--soft-black);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .arrives { grid-template-columns: 1.05fr 1fr; }
}
.arrives__image { margin: 0; }
.arrives__copy {
  padding: var(--section-y) var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
}
.arrives__copy p {
  color: rgba(245, 239, 228, 0.86);
  margin: 0 0 1rem;
  max-width: 52ch;
}
.arrives__copy strong, .arrives__copy em.accent { color: var(--brass); }
.arrives__close {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brass) !important;
  margin: 1rem 0 1.75rem !important;
}

/* ---------- Walk Kit ---------- */
.kit { padding: var(--section-y) 0; }
.kit__card {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: var(--cream-2);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: var(--container); margin: 0 auto;
}
@media (min-width: 860px) { .kit__card { grid-template-columns: 1fr 1fr; } }
.kit__image { margin: 0; }
.kit__image .image-slot { aspect-ratio: 1 / 1; border-radius: 0; }
.kit__body {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex; flex-direction: column; justify-content: center;
}
.kit__body p { margin: 0 0 1rem; max-width: 48ch; }
.price-row {
  display: flex; align-items: baseline; gap: 0.85rem;
  margin: 0.5rem 0 1.5rem;
  flex-wrap: wrap;
}
.price {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--soft-black);
}
.price--strike {
  font-size: 1.15rem;
  color: var(--muted);
  text-decoration: line-through;
  font-family: var(--body);
}
.badge {
  background: var(--cognac);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
}

/* ---------- Waitlist (dark) ---------- */
.waitlist {
  background: var(--soft-black);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.waitlist__inner {
  text-align: center;
  max-width: 720px;
}
.waitlist__lede {
  color: rgba(245, 239, 228, 0.82);
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  margin: 0 auto 2rem;
  max-width: 50ch;
}
.waitlist__lede em.accent { color: var(--brass); }
.waitlist__form {
  display: flex; flex-direction: column; gap: 0.75rem;
  max-width: 460px; margin: 0 auto;
}
.waitlist__form input[type="email"] {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 239, 228, 0.18);
  background: rgba(245, 239, 228, 0.05);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.waitlist__form input[type="email"]::placeholder { color: rgba(245, 239, 228, 0.45); }
.waitlist__form input[type="email"]:focus {
  border-color: var(--brass);
  background: rgba(245, 239, 228, 0.08);
}
.form-status {
  min-height: 1.4em;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  color: var(--brass);
}
.form-status.is-error { color: #E89B9B; }
.benefits {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  color: rgba(245, 239, 228, 0.7);
  font-size: 0.92rem;
}
.benefits li { display: inline-flex; align-items: center; gap: 0.55rem; }
.bullet {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass);
  display: inline-block;
}

/* ---------- Waitlist success card ---------- */
.waitlist__success {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.9rem;
  animation: fadeUp 0.55s ease both;
}
.waitlist__success[hidden] { display: none; }
.waitlist__check {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--brass);
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.waitlist__check svg { width: 28px; height: 28px; }
.waitlist__success-copy {
  margin: 0;
  max-width: 44ch;
  color: rgba(245, 239, 228, 0.86);
}
.waitlist__success-copy em.accent { color: var(--brass); }
.waitlist__success-meta {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: rgba(245, 239, 228, 0.55);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-top: 1px solid var(--hairline);
}
.footer__inner {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center;
}
.footer__meta {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
}
