/* ── Homepage-only overrides ─────────────────────────────────── */
/* Base homepage styles live in global.css.
   Add any front-page-specific rules here that should not load globally. */

/* Hero: ensure full-viewport on home only */
body.home .sc-hero {
  height: 100svh;
  min-height: 600px;
}

/* Marquee: tighten on very large screens */
@media (min-width: 1600px) {
  .sc-marquee__inner { animation-duration: 28s; }
}

/* Philosophy: extra breathing room on desktop */
@media (min-width: 1280px) {
  #sc-philosophy { padding: 140px 0; }
}

/* ── Scent Quiz Banner ────────────────────────────────────────── */
.sc-quiz-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 800px;
  max-height: 800px;
}

.sc-quiz-banner__left {
  background: var(--bone);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 72px;
  gap: 0;
  text-align: center;
  border-right: 1px solid var(--ink-08);
}

.sc-quiz-banner__eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 20px;
}
.sc-quiz-banner__eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--green);
  margin: 14px auto 0;
  opacity: .5;
}

.sc-quiz-banner__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 32px;
  max-width: 28ch;
}

.sc-quiz-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--ink);
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.sc-quiz-banner__cta::after {
  content: '→';
  font-size: 13px;
  transition: transform .25s var(--ease);
}
.sc-quiz-banner__cta:hover {
  background: transparent;
  color: var(--ink);
}
.sc-quiz-banner__cta:hover::after {
  transform: translateX(4px);
}

.sc-quiz-banner__right {
  overflow: hidden;
}
.sc-quiz-banner__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.sc-quiz-banner:hover .sc-quiz-banner__right img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .sc-quiz-banner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .sc-quiz-banner__left {
    padding: 40px 24px;
    align-items: center;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid var(--ink-08);
  }
  .sc-quiz-banner__right {
    height: 240px;
  }
}

/* Spotlight section parallax bg */
.sc-spotlight {
  background-attachment: fixed;
}
@media (max-width: 768px) {
  /* Disable fixed attachment on mobile (performance + iOS bug) */
  .sc-spotlight { background-attachment: scroll; }
}
