/*
 * HornMe brand refresh.
 * Kept as a separately named asset so existing previews cannot reuse the
 * previously cached editorial stylesheet.
 */

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-latin-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg-color: #fff9f7;
  --bg-secondary: #ffe7e8;
  --text-main: #0a0a0a;
  --text-muted: #514749;
  --accent-color: #df1018;
  --accent-hover: #b90c13;
  --border-color: #f1c9cc;
  --error-color: #b90c13;
  --font-serif: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-subtle: 0 8px 24px rgba(10, 10, 10, 0.08);
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  font-family: "Poppins", var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.045em;
}

em {
  color: var(--accent-color);
  font-style: normal;
  font-weight: 700;
}

.button {
  background-color: var(--accent-color);
  color: #fff;
}

.button:hover {
  background-color: var(--accent-hover);
}

.brand img,
.phone-logo {
  filter: none;
}

.product-poster {
  background: linear-gradient(145deg, #ffe7e8, #ffd4d7);
}

.hero-carousel {
  position: relative;
  display: block;
  min-height: clamp(440px, 44vw, 540px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
}

.hero-carousel .hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 550ms ease, transform 700ms ease;
  pointer-events: none;
}

.hero-carousel .hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-carousel .hero-slide img,
.hero-carousel .hero-slide:first-child img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
}

.carousel-controls {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.carousel-arrow,
.carousel-dot {
  border: 0;
  cursor: pointer;
}

.carousel-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 249, 247, 0.94);
  color: var(--text-main);
  box-shadow: 0 8px 20px rgba(10, 10, 10, 0.15);
  font: inherit;
  font-size: 1.15rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 249, 247, 0.94);
  box-shadow: 0 8px 20px rgba(10, 10, 10, 0.12);
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: #b9aaac;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--accent-color);
}

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

@media (max-width: 899px) {
  .hero-carousel {
    min-height: min(72vh, 620px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel .hero-slide {
    transform: none;
    transition: none;
  }
}

.phone-preview {
  background: #fff;
  color: var(--text-main);
  box-shadow: 0 20px 40px rgba(10, 10, 10, 0.16);
}

.phone-top,
.mood-reading small {
  color: #777;
}

.phone-subtitle {
  color: #666;
}

.meter {
  background: #f2d9da;
}

.meter-fill {
  background: linear-gradient(90deg, #df1018, #ff6b50);
}

.mood-reading span {
  color: var(--accent-color);
}

.phrases span {
  background: var(--bg-secondary);
}

.phone-action {
  background: var(--accent-color);
  color: #fff;
}

.consent-section {
  background-color: var(--accent-color);
  color: #fff;
}

.consent-section h2,
.consent-section p {
  color: #fff;
}

.consent-section em,
.consent-section .eyebrow,
.consent-principles span,
.service-note {
  color: #ffd7d9 !important;
}

.light-link {
  color: #fff;
}

.light-link:hover {
  color: #ffd7d9;
}

.footer-top .brand img {
  filter: none;
}