/* ===== DESIGN SYSTEM ===== */
:root {
  --cream:          #f7faf7;
  --bg-blue-light:  #deebf7;
  --bg-green-light: #e8f3e6;
  --bg-blue-mid:    #eaf4f9;
  --dark-green:     #486344;
  --mid-green:      #7dac75;
  --light-green:    #a8c8a3;
  --dark-blue:      #182e49;
  --mid-blue:       #bdd7ee;
  --coral:          #f35c5c;
  --coral-dk:       #d94040;
  --text:           #182e49;
  --text-mid:       #3d5c3a;
  --text-light:     #7a9a7a;
  --radius:         16px;
  --shadow:         0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover:   0 8px 32px rgba(0,0,0,0.14);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 19px;
}
h1, h2, h3 { font-family: 'Fredoka One', cursive; line-height: 1.2; letter-spacing: 0.025em; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.4rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 680px; }
.container.center { text-align: center; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.section { padding: 5rem 0; }
.bg-blue-light  { background: var(--bg-blue-light); }
.bg-green-light { background: var(--bg-green-light); }
.bg-blue-mid    { background: var(--bg-blue-mid); }
.bg-dark-green  { background: var(--dark-green); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 3px solid transparent;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-primary     { background: var(--coral); color: #fff; border-color: var(--coral); }
.btn-primary:hover { background: var(--coral-dk); border-color: var(--coral-dk); }
.btn-outline     { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn-outline:hover { background: var(--coral); color: #fff; }
.btn-secondary   { background: var(--dark-green); color: #fff; border-color: var(--dark-green); }
.btn-secondary:hover { background: #3a5037; border-color: #3a5037; }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-ghost-white:hover { background: #fff; color: var(--dark-green); border-color: #fff; }
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-small { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-coming-soon { background: #e8ede8; color: var(--text-light); border-color: #e8ede8; cursor: default; pointer-events: none; }
.btn-video { background: var(--dark-blue); color: #fff; border-color: var(--dark-blue); }
.btn-video:hover { background: #0f1e32; border-color: #0f1e32; }

/* ===== SECTION TAGS ===== */
.section-tag {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-tag.light {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0.75rem auto 2.5rem;
  text-align: center;
}

/* ===== WAVE DIVIDERS ===== */
.section-divider { line-height: 0; }
.section-divider svg { width: 100%; display: block; }
.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; display: block; }

/* ===== NAVIGATION ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(247,250,247,0.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--dark-green);
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  font-weight: 700;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--coral); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark-green);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(140deg, #486344 0%, #5a7a54 55%, #7dac75 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 5rem 6rem 5rem;
  min-height: 88vh;
  overflow: hidden;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 2px, transparent 2px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.75); margin-bottom: 0.5rem; }
.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: #fff;
  text-shadow: 2px 4px 0 rgba(0,0,0,0.15);
  margin-bottom: 1rem;
}
.hero-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
}
.hero-sub { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-illustration { position: relative; z-index: 1; display: flex; justify-content: center; }
.hero-image-placeholder, .image-placeholder {
  background: rgba(255,255,255,0.15);
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  min-height: 340px;
  width: 100%;
}
.hero-image-placeholder span, .image-placeholder span { font-size: 3rem; opacity: 0.5; }
.image-placeholder.round {
  border-radius: 50%;
  width: 320px;
  height: 320px;
  border-color: rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
  color: var(--text-mid);
}
.hero-photo {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.about-photo {
  width: 320px;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-section { padding-top: 6rem; }
.about-section h2 { margin-bottom: 1.25rem; }
.about-section p { color: var(--text-mid); margin-bottom: 1rem; }
.about-highlights { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0; }
.highlight-chip {
  background: var(--bg-green-light);
  border: 2px solid var(--light-green);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-green);
}

/* ===== FEATURED BOOKS (homepage) ===== */
.books-section h2,
.books-section .section-intro { text-align: center; margin-left: auto; margin-right: auto; }
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.book-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.book-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.book-cover-placeholder {
  background: linear-gradient(135deg, var(--bg-green-light), var(--bg-blue-light));
  border-radius: 10px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 700;
  overflow: hidden;
}
.book-cover-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.book-card h3 { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--text); font-size: 1.1rem; letter-spacing: 0; }
.book-card p { color: var(--text-mid); font-size: 0.95rem; flex: 1; }
.book-links { display: flex; gap: 0.75rem; margin-top: 0.25rem; flex-wrap: wrap; }
.books-footer { text-align: center; margin-top: 1rem; }
.books-footer p { font-weight: 700; color: var(--text-mid); margin-bottom: 1.25rem; }

/* ===== SNAIL MAIL ===== */
.snail-headline { font-size: 1.15rem; font-weight: 700; color: var(--dark-green); margin-bottom: 0.75rem; }
.snail-section h2 { margin-bottom: 1rem; }
.snail-text p { color: var(--text-mid); margin-bottom: 1rem; }
.snail-perks {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.snail-perks li {
  font-weight: 600;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-mid);
}
.snail-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

/* ===== APPEARANCES ===== */
.appearances-section h2, .appearances-section .section-intro { text-align: center; }
.appearances-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.appearance-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s;
}
.appearance-card:hover { transform: translateY(-4px); }
.appearance-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.appearance-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.appearance-card p { font-size: 0.95rem; color: var(--text-mid); }
.appearances-cta { text-align: center; }
.appearances-cta p { font-weight: 700; margin-bottom: 1rem; color: var(--text-mid); }

/* ===== TESTIMONIALS ===== */
.testimonials-section h2 { text-align: center; margin-bottom: 2.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--bg-green-light);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 5px solid var(--mid-green);
}
.testimonial-text { font-style: italic; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8; }
.testimonial-author { font-weight: 800; font-size: 0.9rem; color: var(--dark-green); }

/* ===== PRESS ===== */
.press-section h2, .press-section .section-intro { text-align: center; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.press-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1rem;
  text-align: center;
  transition: transform 0.2s;
}
.press-item:hover { transform: translateY(-4px); }
.press-item p { font-weight: 700; color: var(--text-mid); font-size: 0.95rem; }
.press-item-link { display: block; text-decoration: none; }
.press-item-link:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.press-outlet { font-size: 0.78rem; font-weight: 800; color: var(--coral); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.press-headline { font-size: 0.95rem; font-weight: 600; color: var(--text-mid); font-style: italic; }
.consignment-pitch { margin-top: 3rem; background: var(--bg-green-light); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; }
.consignment-pitch h3 { color: var(--dark-green); margin-bottom: 0.75rem; font-size: 1.4rem; }
.consignment-pitch p { color: var(--text-mid); margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--dark-green); text-align: center; }
.newsletter-section h2 { color: #fff; }
.newsletter-section > .container > p { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin: 2rem 0 1rem; }
.newsletter-input {
  flex: 1;
  min-width: 240px;
  max-width: 360px;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.18); }
.newsletter-fine { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; }

/* ===== CONTACT ===== */
.contact-section h2 { text-align: center; }
.contact-section > .container > p { color: var(--text-mid); margin-bottom: 0; text-align: center; }
.contact-options {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.contact-card {
  background: #fff;
  border: 2px solid var(--bg-blue-light);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  min-width: 130px;
}
.contact-card:hover { border-color: var(--coral); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.contact-card span { font-size: 2rem; }
.contact-card p { font-weight: 700; font-size: 0.9rem; color: var(--text-mid); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark-blue); color: #fff; padding: 3rem 0; text-align: center; }
.footer-logo { font-family: 'Fredoka One', cursive; font-size: 1.75rem; color: var(--mid-green); margin-bottom: 0.5rem; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--mid-green); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== BOOKS PAGE ===== */
.page-hero {
  background: linear-gradient(140deg, #486344 0%, #5a7a54 55%, #7dac75 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 2px, transparent 2px);
  background-size: 32px 32px;
}
.page-hero h1 { font-family: 'Fredoka One', cursive; font-size: clamp(2.5rem, 5vw, 3.5rem); color: #fff; position: relative; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-top: 0.75rem; position: relative; }

.filter-bar { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; padding: 2.5rem 1.5rem 0; }
.filter-btn {
  background: #fff;
  border: 2px solid var(--mid-blue);
  color: var(--text-mid);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active { background: var(--dark-green); border-color: var(--dark-green); color: #fff; }

.books-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  padding: 2.5rem 0 0;
}
.book-card[data-cat].hidden { display: none; }

/* ===== SNAIL MAIL TIER INLINE ===== */
.tier-cards-inline { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.tier-mini {
  background: #fff;
  border: 2px solid var(--light-green);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: all 0.2s;
  min-width: 90px;
}
.tier-mini:hover { border-color: var(--coral); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.tier-price { font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: var(--coral); line-height: 1; }
.tier-price span { font-family: 'Nunito', sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--text-mid); }
.tier-label { font-size: 0.78rem; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== SERVICES ===== */
.services-section h2, .services-section .section-intro { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-card h3 { color: var(--dark-green); }
.service-card p { color: var(--text-mid); }
.service-detail { font-weight: 700; font-size: 0.9rem; color: var(--dark-green); }

/* ===== CONTACT TEXT ICONS ===== */
.text-icon { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: var(--dark-green); display: block; }

/* ===== NEWSLETTER ARCHIVE ===== */
.newsletter-archive { margin-top: 1rem; }
.newsletter-archive a { color: rgba(255,255,255,0.65); text-decoration: underline; font-size: 0.9rem; }
.newsletter-archive a:hover { color: #fff; }

/* ===== SNAIL MAIL PAGE TIERS ===== */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; margin-top: 3rem; }
.tier-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 6px solid var(--mid-green);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.tier-card.featured { border-color: var(--coral); }
.tier-card-price { font-family: 'Fredoka One', cursive; font-size: 2.8rem; color: var(--coral); line-height: 1; }
.tier-card-price span { font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-mid); }
.tier-card h3 { color: var(--dark-green); margin-bottom: 0; }
.tier-card p { color: var(--text-mid); font-size: 0.95rem; flex: 1; }
.tier-card .btn { margin-top: auto; }

/* ===== SHIPPING SCHEDULE ===== */
.shipping-box {
  background: var(--bg-green-light);
  border-radius: var(--radius);
  border-left: 5px solid var(--mid-green);
  padding: 2rem;
  max-width: 680px;
  margin: 2rem auto 0;
  text-align: left;
}
.shipping-box h3 { color: var(--dark-green); margin-bottom: 0.75rem; }
.shipping-box p { color: var(--text-mid); margin-bottom: 0.5rem; }
.shipping-box .shipping-note { font-size: 0.9rem; font-style: italic; color: var(--text-light); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 2rem 4rem;
    text-align: center;
    min-height: auto;
  }
  .hero-buttons { justify-content: center; }
  .hero-illustration { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .about-image { order: -1; display: flex; justify-content: center; }
  .image-placeholder.round { width: 240px; height: 240px; }
  .about-photo { width: 240px; height: 240px; }
}
@media (max-width: 640px) {
  .site-nav { padding: 1rem 1.25rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 1.25rem;
    border-top: 1px solid var(--bg-blue-light);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .section { padding: 3.5rem 0; }
  .hero-title { font-size: 3rem; }
  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-input { min-width: 280px; max-width: 100%; }
  .ann-content { gap: 0.5rem; }
  .ann-content p { font-size: 0.8rem; }
  .ann-cta { font-size: 0.8rem; padding: 0.25rem 0.75rem; }
}

/* ===== ANNOUNCEMENT BANNER ===== */
.announcement-banner {
  background: rgba(243, 92, 92, 0.75);
  color: var(--dark-blue);
  padding: 0.7rem 3rem 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ann-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ann-tag {
  background: rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.18rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.announcement-banner p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-blue);
}
.ann-cta {
  background: #fff;
  color: var(--coral-dk);
  padding: 0.28rem 1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ann-cta:hover { transform: scale(1.04); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.ann-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(24,46,73,0.6);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.3rem;
}
.ann-close:hover { color: var(--dark-blue); }
