/**
 * Homepage Landing Page Styles
 * Matches landing-page.html design - Hero, Trust Bar, Competition Cards, How To Enter, Our Story, Winners, Social, FAQ
 */

/* Homepage body override */
body.home-landing-page {
  background: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
.light-theme body.home-landing-page { background: var(--cream); }
.dark-theme body.home-landing-page { background: var(--charcoal); }

/* ─── HERO — match landing-page.html .hero (charcoal + radial overlays, no photo) ─── */
.home-hero {
  background: var(--charcoal);
  padding: 90px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(122,34,50,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 0%, rgba(196,168,130,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.home-hero-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.home-hero-eyebrow::before, .home-hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.home-hero-title {
  position: relative;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.home-hero-title em { font-style: italic; color: var(--blush); }
.home-hero-sub {
  position: relative;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.home-hero-chips {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.home-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 9px;
  background: transparent;
  border: 2px solid rgba(196,168,130,0.20);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.home-hero-chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
/* Hero countdown – feminine, elegant styling */
.home-hero-countdown {
  position: relative;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.home-hero-countdown-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  opacity: 0.95;
}

.home-hero-countdown #hero-countdown,
.home-hero-countdown .countdown-timer,
.home-hero-countdown-units {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  width: auto;
  max-width: 100%;
  background: none !important;
  border: none !important;
}

.home-hero-countdown .time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 14px 10px;
  background: transparent;
  border: none;
  border-radius: 50px;
}

.home-hero-countdown .time-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.home-hero-countdown .time-label {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-top: 4px;
}

/* Light theme overrides for hero countdown – same creamy colors as dark theme */
.light-theme .home-hero-countdown .time-unit {
  background: transparent;
  border: none;
}

.light-theme .home-hero-countdown .time-value {
  color: var(--ivory) !important;
  -webkit-text-fill-color: var(--ivory) !important;
}

.light-theme .home-hero-countdown .time-label {
  color: var(--ivory) !important;
}

.light-theme .home-hero-countdown-label {
  color: var(--ivory) !important;
}

/* Hide default colon separator; pills speak for themselves */
.home-hero-countdown .time-unit:not(:last-child)::after {
  display: none;
}

/* ─── TRUST BAR ─── */
.home-trust-bar {
  background: var(--gold-light);
  border-top: 1px solid rgba(196,168,130,0.25);
  border-bottom: 1px solid rgba(196,168,130,0.25);
  padding: 22px 24px;
  display: flex; align-items: center;
  justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.home-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  padding: 0 20px;
  position: relative;

}
.home-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: linear-gradient(to bottom, transparent, rgba(196,168,130,0.5), transparent);
}
.home-trust-item i { color: var(--gold-dark); }
@media (max-width: 768px) {
  .home-trust-bar { gap: 12px; padding: 20px 16px; }
  .home-trust-item { padding: 4px 12px; }
  .home-trust-item:not(:last-child)::after { display: none; }
  .home-hero-countdown .time-unit { min-width: 48px; padding: 12px 8px; }
  .home-hero-countdown .time-value { font-size: 20px; }
  .home-hero-countdown-label { font-size: 11px; letter-spacing: 0.15em; }
}

/* ─── SECTION COMMON ─── */
.home-section { padding: 80px 24px; }
.home-section-alt { background: #fff; }
.dark-theme .home-section-alt { background: var(--charcoal-light); }
.dark-theme .home-section-alt .home-section-eyebrow { color: var(--gold); }
.home-section-dark {
  background: var(--charcoal);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='d'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23d)' opacity='0.015'/%3E%3C/svg%3E");
}
.home-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.home-section-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 400;
  margin-bottom: 12px;
}
.home-section-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}
.home-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto 0;
}
.home-section-title em { font-style: italic; color: var(--rosewood); }
.dark-theme .home-section-title { color: #fff; }
.dark-theme .home-section-title em { color: var(--blush); }
.dark-theme .home-section-title::after { background: linear-gradient(90deg, transparent, var(--blush), transparent); }
.home-section-title.light { color: #fff; }
.home-section-title.light em { color: var(--blush); }
.home-section-title.light::after { background: linear-gradient(90deg, transparent, var(--blush), transparent); }
.home-section-sub {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-grey);
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.dark-theme .home-section-sub { color: rgba(255,255,255,0.8); }

/* ─── COMPETITION CARDS (Landing style) ─── */
.home-comps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.home-comp-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  font-size: 15px;
  color: var(--warm-grey);
  font-weight: 500;
}
@media (max-width: 992px) {
  .home-comps-grid { grid-template-columns: repeat(2, 1fr); }
  .home-comps-grid.grid-1-mobile { grid-template-columns: 1fr; }
  .home-comps-grid.grid-2-mobile { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .home-comps-grid { grid-template-columns: 1fr; gap: 20px; }
  .home-comps-grid.grid-2-mobile { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

.home-comp-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(196,168,130,0.18);
  box-shadow: 0 4px 24px rgba(28,23,20,0.05);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.home-comp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28,23,20,0.12);
}
.dark-theme .home-comp-card { background: rgba(58,50,45,0.6); border-color: rgba(255,255,255,0.08); }

.home-comp-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--rosewood);
  color: white;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 400;
  z-index: 2;
}
.home-comp-card-badge.gold-badge {
  background: var(--charcoal);
  color: var(--gold);
}

.home-comp-img-wrap {
  position: relative;
  height: 280px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-comp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-comp-body { padding: 24px; }
.home-comp-category {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 400;
  margin-bottom: 6px;
}
.home-comp-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.dark-theme .home-comp-name { color: #fff; }
.home-comp-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-grey);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dark-theme .home-comp-desc { color: rgba(255,255,255,0.6); }

.home-comp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--ivory);
  border-bottom: 1px solid var(--ivory);
  margin-bottom: 16px;
}
.dark-theme .home-comp-meta { border-color: rgba(255,255,255,0.1); }
.home-comp-meta-item { text-align: center; flex: 1; }
.home-comp-meta-item + .home-comp-meta-item { border-left: 1px solid var(--ivory); }
.dark-theme .home-comp-meta-item + .home-comp-meta-item { border-color: rgba(255,255,255,0.1); }
.home-comp-meta-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  display: block;
}
.dark-theme .home-comp-meta-val { color: #fff; }
.home-comp-meta-key {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  font-weight: 500;
}
.dark-theme .home-comp-meta-key { color: rgba(255,255,255,0.4); }

.home-comp-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.home-comp-countdown .countdown-timer { margin: 0; }
.home-comp-countdown .time-unit { min-width: 42px; }
.home-comp-countdown .time-value { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--gold) !important; -webkit-text-fill-color: var(--gold) !important; }
.home-comp-countdown .time-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; }
.home-comp-countdown .time-unit:not(:last-child):after { color: var(--gold) !important; }

.home-comp-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color:var(--primary);
  border: none;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.home-comp-btn:hover {
  background: var(--rosewood);
  transform: translateY(-1px);
  color: #fff;
}

/* Dark theme: gold background, primary (charcoal) text */
.dark-theme .home-comp-btn {
  background: var(--gold);
  color: var(--primary);
}
.dark-theme .home-comp-btn:hover {
  background: var(--gold-dark);
  color: var(--primary);
}

.home-comp-btn.sold-out {
  background: var(--ivory);
  color: var(--warm-grey);
  cursor: default;
}
.home-comp-btn.sold-out:hover {
  background: var(--ivory);
  transform: none;
}

/* ─── HOW TO ENTER ─── */
.home-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .home-how-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Match landing-page.html: keep 2 columns on small phones (no single-column stack) */
@media (max-width: 576px) {
  .home-how-grid { gap: 24px 16px; }
}

.home-how-item { text-align: center; position: relative; }
.home-how-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid rgba(196,168,130,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-dark);
  margin: 0 auto 18px;
}
.home-how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.dark-theme .home-how-title { color: #fff; }
.dark-theme .home-how-num { background: rgba(255,255,255,0.08); border-color: rgba(196,168,130,0.3); color: var(--gold); }
.home-how-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-grey);
  line-height: 1.7;
}
.dark-theme .home-how-desc { color: rgba(255,255,255,0.6); }

/* ─── OUR STORY ─── */
.home-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 768px) {
  .home-about-inner { grid-template-columns: 1fr; gap: 40px; }
}

.home-about-visual {
  position: relative;
  height: 400px;
}
.home-about-visual-main {
  position: absolute;
  top: 0; left: 0; right: 40px; bottom: 40px;
  background: var(--ivory);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.home-about-visual-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.home-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}
.home-about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.home-about-title em { font-style: italic; color: var(--rosewood); }
.dark-theme .home-about-title { color: #fff; }
.home-about-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal );
  line-height: 1.9;
  margin-bottom: 16px;
}
.dark-theme .home-about-text { color: rgba(255,255,255,0.6); }
.home-about-stats { display: flex; gap: 36px; margin: 32px 0; flex-wrap: wrap; }
.home-about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  font-style: italic;
  color: var(--rosewood);
  display: block;
  line-height: 1;
}
.home-about-stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  font-weight: 500;
  margin-top: 4px;
}
.dark-theme .home-about-stat-label { color: rgba(255,255,255,0.4); }

/* ─── OUR WINNERS ─── */
.home-winners-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  max-width: 1200px;
  margin: 0 auto;
}
.home-winners-scroll::-webkit-scrollbar { display: none; }

.home-winner-card {
  flex-shrink: 0;
  width: 280px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-winner-prize-img {
  width: 100%;
  height: 160px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-winner-prize-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-winner-prize {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}
.home-winner-name { display: flex; align-items: center; gap: 10px; }
.home-winner-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(232,196,196,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--blush);
  font-weight: 500;
  flex-shrink: 0;
}
.home-winner-info-name { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.8); }
.home-winner-info-date { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.35); }

.home-could-be-you {
  flex-shrink: 0;
  width: 280px;
  border: 1px solid rgba(232,196,196,0.12);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
}
.home-could-be-you-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  font-style: italic;
  color: rgba(232,196,196,0.2);
}
.home-could-be-you-text {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-weight: 500;
}

/* ─── FOLLOW US (matches landing-page.html social strip) ─── */
.social-strip {
  background: var(--ivory);
  border-top: 1px solid rgba(196,168,130,0.2);
  border-bottom: 1px solid rgba(196,168,130,0.2);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
  font-weight: 400;
  margin-right: 12px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid rgba(196,168,130,0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 400;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-btn:hover {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.social-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .social-strip {
    padding: 24px 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 6px;
    align-items: stretch;
  }
  .social-label {
    grid-column: 1 / -1;
    width: auto;
    margin-right: 0;
    margin-bottom: 6px;
    text-align: center;
  }
  .social-btn {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-width: 0;
    padding: 10px 4px;
    gap: 6px;
    font-size: clamp(8px, 2.8vw, 10px);
    letter-spacing: 0.02em;
    line-height: 1.15;
    border-radius: 14px;
  }
  .social-btn svg {
    width: 15px;
    height: 15px;
  }
}
/* Very narrow: 2×2 so labels stay readable */
@media (max-width: 340px) {
  .social-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .social-btn {
    flex-direction: row;
    justify-content: center;
    padding: 10px 12px;
    font-size: 11px;
    border-radius: 50px;
  }
}

/* ─── FAQ ─── */
.home-faq-list { max-width: 760px; margin: 0 auto; }
.home-faq-item { border-bottom: 1px solid rgba(196,168,130,0.2); }
.home-faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.home-faq-q:hover { color: var(--rosewood); }
.home-faq-q.open { color: var(--rosewood); }
.dark-theme .home-faq-q { color: #fff; }
.home-faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(196,168,130,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  font-size: 16px;
  color: var(--gold-dark);
  font-weight: 500;
}
.home-faq-q.open .home-faq-icon {
  background: var(--rosewood);
  border-color: var(--rosewood);
  color: #fff;
  transform: rotate(45deg);
}
.home-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.35s;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.8;
  padding: 0;
}
.home-faq-a.open {
  max-height: 300px;
  padding-bottom: 22px;
}
.dark-theme .home-faq-a { color: rgba(255,255,255,0.7); }
