/* =========================================
   Harlow & Willow — Brand & Site Styles
   ========================================= */

:root {
  /* Brand palette */
  --jam: #420318;
  --jam-deep: #2a0210;
  --peachy: #f4988d;
  --peachy-warm: #f7a99f;
  --powder: #a1b3f7;
  --powder-soft: #b9c7f9;
  --lemon: #ffffaa;
  --cream: #faf6ee;
  --white: #ffffff;

  /* Typography */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --s-xs: 0.5rem;
  --s-sm: 1rem;
  --s-md: 2rem;
  --s-lg: 4rem;
  --s-xl: 6rem;
  --s-2xl: 9rem;

  /* Layout */
  --max-width: 1240px;
  --content-width: 920px;
  --reading-width: 680px;
}

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..900,0..100,0..1&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--jam);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain texture for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  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='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-variation-settings: "SOFT" 50, "opsz" 100;
  line-height: 1.15;
}

h4 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--peachy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--lemon);
}

em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
}

strong {
  font-weight: 600;
  color: var(--white);
}

/* Eyebrow / kicker */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peachy);
  margin-bottom: var(--s-sm);
  display: inline-block;
}

.eyebrow--powder { color: var(--powder); }
.eyebrow--lemon { color: var(--lemon); }

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s-md);
  position: relative;
  z-index: 2;
}

.container--narrow {
  max-width: var(--content-width);
}

.container--reading {
  max-width: var(--reading-width);
}

section {
  padding: var(--s-xl) 0;
  position: relative;
}

@media (max-width: 720px) {
  section {
    padding: var(--s-lg) 0;
  }
  .container {
    padding: 0 1.25rem;
  }
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(66, 3, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 152, 141, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 26px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--peachy);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  letter-spacing: -0.02em;
}

.nav-logo-text .amp {
  color: var(--powder);
  font-style: italic;
  font-weight: 300;
  margin: 0 0.1em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
}

.nav-links a:hover {
  color: var(--peachy);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--peachy);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--peachy);
  color: var(--jam) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--lemon);
  color: var(--jam) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none; }

@media (max-width: 720px) {
  .nav-links {
    gap: 1rem;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .nav-links .nav-link-mobile {
    display: inline;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 999px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--peachy);
  color: var(--jam) !important;
}

.btn-primary:hover {
  background: var(--lemon);
  color: var(--jam) !important;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--cream) !important;
  border: 1px solid rgba(250, 246, 238, 0.3);
}

.btn-secondary:hover {
  border-color: var(--peachy);
  color: var(--peachy) !important;
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Hero (homepage) */
.hero {
  padding: var(--s-2xl) 0 var(--s-xl);
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--peachy);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 2rem;
}

.hero h1 .accent {
  color: var(--peachy);
  font-style: italic;
  font-weight: 300;
}

.hero h1 .accent-powder {
  color: var(--powder);
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 1.25rem;
  max-width: 56ch;
  color: rgba(250, 246, 238, 0.85);
  line-height: 1.55;
  margin-bottom: 2.5rem;
}

.hero-decoration {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 680px;
  height: 680px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.80;
}

.hero-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero-decoration {
    width: 380px;
    height: 380px;
    top: 20px;
    right: -120px;
    opacity: 0.55;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: var(--s-xl) 0 var(--s-lg);
  }
  .hero-sub {
    font-size: 1.1rem;
  }
}

/* Cards (packages on homepage) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

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

.package-card {
  background: rgba(250, 246, 238, 0.04);
  border: 1px solid rgba(244, 152, 141, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cream);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--peachy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.package-card:hover {
  border-color: var(--peachy);
  transform: translateY(-4px);
  background: rgba(250, 246, 238, 0.06);
  color: var(--cream);
}

.package-card:hover::before {
  transform: scaleX(1);
}

.package-card .number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--peachy);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 9;
}

.package-card h3 {
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.package-card .package-sub {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--powder);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.package-card p {
  font-size: 0.97rem;
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.78);
  flex: 1;
}

.package-card .package-price {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 152, 141, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-card .price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--peachy);
}

.package-card .arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(244, 152, 141, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.package-card:hover .arrow {
  background: var(--peachy);
  color: var(--jam);
  border-color: var(--peachy);
  transform: translateX(4px);
}

/* Section heading block */
.section-head {
  margin-bottom: 3rem;
  max-width: 60ch;
}

.section-head h2 {
  margin-bottom: 1.25rem;
}

.section-head p {
  font-size: 1.15rem;
  color: rgba(250, 246, 238, 0.75);
}

/* Two-column / split sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.split-image {
  border-radius: 12px;
  overflow: hidden;
  background: var(--peachy);
  aspect-ratio: 4/5;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Testimonial */
.testimonial {
  background: var(--peachy);
  color: var(--jam);
  border-radius: 32px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: var(--lemon);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  max-width: 50ch;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--jam);
  margin-bottom: 0.5rem;
  font-style: italic;
  font-weight: 300;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--jam);
  font-weight: 300;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.testimonial blockquote em {
  font-weight: 500;
}

.testimonial-cite {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--jam);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial {
    padding: 3rem 2rem;
  }
  .testimonial blockquote {
    font-size: 1.25rem;
  }
}

.testimonial--powder {
  background: var(--powder);
}

.testimonial--powder::before {
  background: var(--peachy);
}

/* CTA Block */
.cta-block {
  background: var(--peachy);
  color: var(--jam);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  margin-top: var(--s-lg);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "&";
  position: absolute;
  top: -3rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 20rem;
  line-height: 1;
  color: var(--lemon);
  opacity: 0.4;
  z-index: 0;
  font-style: italic;
}

.cta-block-content {
  position: relative;
  z-index: 1;
}

.cta-block h2 {
  color: var(--jam);
  margin-bottom: 1rem;
  max-width: 22ch;
  margin-inline: auto;
}

.cta-block p {
  color: var(--jam);
  font-size: 1.15rem;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  opacity: 0.85;
}

.cta-block .btn-primary {
  background: var(--jam);
  color: var(--peachy) !important;
}

.cta-block .btn-primary:hover {
  background: var(--jam-deep);
  color: var(--lemon) !important;
}

@media (max-width: 720px) {
  .cta-block {
    padding: 3rem 1.5rem;
  }
  .cta-block::before {
    font-size: 14rem;
    top: -2rem;
    right: -1rem;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(244, 152, 141, 0.15);
  padding: var(--s-lg) 0 2rem;
  margin-top: var(--s-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--peachy);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  margin-bottom: 1rem;
  line-height: 1;
}

.footer-brand .amp {
  color: var(--powder);
  font-style: italic;
  font-weight: 300;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(250, 246, 238, 0.65);
  max-width: 32ch;
  line-height: 1.5;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peachy);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--cream);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--peachy);
}

.footer-bottom {
  border-top: 1px solid rgba(244, 152, 141, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.5);
}

/* === Package detail page === */
.package-hero {
  padding: var(--s-xl) 0 var(--s-lg);
  position: relative;
}

.package-hero .package-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--powder);
  margin-bottom: 1.5rem;
}

.package-hero h1 {
  margin-bottom: 1.5rem;
}

.package-hero .package-deck {
  font-size: 1.25rem;
  max-width: 56ch;
  color: rgba(250, 246, 238, 0.85);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.package-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244, 152, 141, 0.15);
  border: 1px solid rgba(244, 152, 141, 0.15);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3rem;
}

.package-stat {
  background: var(--jam);
  padding: 2rem 1.75rem;
}

.package-stat .label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peachy);
  margin-bottom: 0.6rem;
  display: block;
}

.package-stat .value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  font-variation-settings: "SOFT" 50;
}

@media (max-width: 720px) {
  .package-stats {
    grid-template-columns: 1fr;
  }
}

/* Package content sections */
.package-section {
  padding: var(--s-lg) 0;
  border-top: 1px solid rgba(244, 152, 141, 0.1);
}

.package-section-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
}

@media (max-width: 900px) {
  .package-section-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.package-section h2 {
  font-size: 2rem;
  margin-bottom: 0;
}

.package-phase {
  margin-bottom: 2.5rem;
}

.package-phase:last-child {
  margin-bottom: 0;
}

.package-phase h4 {
  color: var(--peachy);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.package-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.package-list li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.55;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--peachy);
}

/* Add-on highlight box */
.addon-box {
  background: linear-gradient(135deg, var(--powder) 0%, var(--powder-soft) 100%);
  color: var(--jam);
  border-radius: 24px;
  padding: 3rem;
  margin-top: 2rem;
}

.addon-box .eyebrow {
  color: var(--jam);
}

.addon-box h3 {
  color: var(--jam);
  margin-bottom: 1rem;
}

.addon-box p {
  color: var(--jam);
  opacity: 0.85;
}

.addon-box ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 1.5rem 0;
}

.addon-box li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.55;
  color: var(--jam);
}

.addon-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--jam);
}

.addon-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--jam);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(66, 3, 24, 0.15);
}

@media (max-width: 720px) {
  .addon-box {
    padding: 2rem 1.5rem;
  }
}

/* FAQ */
.faq-item {
  border-top: 1px solid rgba(244, 152, 141, 0.15);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(244, 152, 141, 0.15);
}

.faq-q {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-variation-settings: "SOFT" 50;
}

.faq-a {
  color: rgba(250, 246, 238, 0.78);
  line-height: 1.6;
}

/* About page */
.about-hero {
  padding: var(--s-xl) 0 var(--s-lg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-portrait {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 80px rgba(66, 3, 24, 0.2);
  pointer-events: none;
}

.about-text h1 {
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(250, 246, 238, 0.85);
  margin-bottom: 1.25rem;
}

.about-text p strong {
  color: var(--peachy);
  font-weight: 500;
}

/* Retainer page */
.retainer-feature {
  padding: var(--s-lg) 0;
}

.retainer-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .retainer-features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  border-left: 2px solid var(--peachy);
  padding-left: 1.75rem;
}

.feature-card h4 {
  color: var(--peachy);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 50;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: rgba(250, 246, 238, 0.78);
  font-size: 0.97rem;
  line-height: 1.55;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-method {
  border: 1px solid rgba(244, 152, 141, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s ease;
}

.contact-method:hover {
  border-color: var(--peachy);
}

.contact-method h4 {
  color: var(--peachy);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-method a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  font-variation-settings: "SOFT" 50;
}

.contact-method a:hover {
  color: var(--peachy);
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: reveal 0.9s ease forwards;
  }
  .reveal-1 { animation-delay: 0.1s; }
  .reveal-2 { animation-delay: 0.25s; }
  .reveal-3 { animation-delay: 0.4s; }
  .reveal-4 { animation-delay: 0.55s; }

  @keyframes reveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(244, 152, 141, 0.15);
  border-bottom: 1px solid rgba(244, 152, 141, 0.15);
  padding: 1.75rem 0;
  margin: 0;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--peachy);
  font-style: italic;
  font-variation-settings: "SOFT" 50;
}

.marquee-dot {
  color: var(--powder);
  font-size: 1.4rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
