/* ========================================
   PRESENCE — Feminist Campaign Stylesheet
   Light Theme: White + Feminist Purple
   ======================================== */

:root {
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;

  --bg-primary: #ffffff;
  --bg-secondary: #faf8fc;
  --bg-card: #ffffff;
  --bg-card-hover: #faf5ff;
  --text-primary: #1a0e2e;
  --text-secondary: #5c4f6e;
  --text-muted: #9489a3;
  --border-color: rgba(147, 51, 234, 0.12);
  --border-hover: rgba(147, 51, 234, 0.3);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(147, 51, 234, 0.15);
  color: var(--purple-900);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- LANGUAGE TOGGLE ---- */
.lang-toggle {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 1001;
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.lang-btn.active {
  background: var(--purple-700);
  color: #fff;
}

.lang-btn:hover:not(.active) { color: var(--purple-600); }

/* ---- NAVIGATION ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav.visible { transform: translateY(0); }

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--purple-700);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-secondary);
  transition: all 0.3s ease;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--bg-primary) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(147, 51, 234, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 35% 35% at 25% 85%, rgba(168, 85, 247, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 75% 85%, rgba(147, 51, 234, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; max-width: 720px; }

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 2rem;
  padding: 0.45rem 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  background: rgba(147, 51, 234, 0.04);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.75rem;
  background: linear-gradient(145deg, var(--purple-900) 20%, var(--purple-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--purple-400), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  color: #fff;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-800));
  box-shadow: 0 8px 32px rgba(147, 51, 234, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--purple-700);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  background: var(--purple-50);
  border-color: var(--purple-500);
  transform: translateY(-2px);
}

/* ---- SECTIONS ---- */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-primary);
}

/* ---- EDITORIAL TEXT ---- */
.editorial-text {
  max-width: 660px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.editorial-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* ---- PULL QUOTES ---- */
.pull-quote-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-primary);
}

.pull-quote-section.alt {
  background: linear-gradient(160deg, rgba(147, 51, 234, 0.03), rgba(243, 232, 255, 0.4));
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 700;
  font-style: italic;
  text-align: center;
  color: var(--purple-700);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* ---- CARDS (Value section) ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(147, 51, 234, 0.08);
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- CRITIQUE SECTION ---- */
.critique-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 780px;
  margin: 0 auto;
}

.critique-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}

.critique-item:hover {
  background: rgba(147, 51, 234, 0.03);
  border-color: var(--border-color);
}

.critique-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--purple-300);
  line-height: 1;
  min-width: 50px;
}

.critique-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.critique-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
}

/* ---- SELF-RESPECT SECTION ---- */
.self-respect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sr-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(147, 51, 234, 0.08);
}

.sr-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--purple-50);
  color: var(--purple-600);
  margin-bottom: 1.25rem;
}

.sr-icon svg { width: 20px; height: 20px; }

.sr-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.sr-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ---- QUESTIONS SECTION ---- */
.questions-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.question-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.question-item:first-child {
  border-top: 1px solid var(--border-color);
}

.q-mark {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple-300);
  line-height: 1;
  flex-shrink: 0;
}

.question-item p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

/* ---- MANIFESTO SECTION ---- */
.manifesto {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.manifesto-line {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.manifesto-line:first-child {
  border-top: 1px solid var(--border-color);
}

.manifesto-line span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.manifesto-line:hover span {
  color: var(--text-primary);
}

.manifesto-line.highlight span {
  color: var(--purple-700);
  font-size: 1.3rem;
}

.manifesto-line.highlight:hover span {
  color: var(--purple-800);
}

/* ---- CLOSING ---- */
.section-closing {
  padding: 8rem 0;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(147, 51, 234, 0.04) 0%, transparent 70%);
}

.closing-content {
  max-width: 660px;
  margin: 0 auto;
}

.closing-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: var(--text-primary);
}

.closing-content > p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.closing-line {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-700);
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.closing-cta {
  margin-top: 0.5rem;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer-logo {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--purple-600);
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.footer-copy { margin-top: 0.3rem; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-reveal > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-reveal > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .self-respect-grid { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .critique-item {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
  }

  .hero { padding: 5rem 1.5rem 3.5rem; }
  .section { padding: 5rem 0; }
  .pull-quote-section { padding: 3.5rem 0; }
  .section-closing { padding: 6rem 0; }

  .lang-toggle { top: 0.75rem; right: 4rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }
  .question-item p { font-size: 1rem; }
  .manifesto-line span { font-size: 1.05rem; }
  .manifesto-line.highlight span { font-size: 1.1rem; }
}

/* ========================================
   VISUAL ENHANCEMENTS — Icons & Decorations
   ======================================== */

/* ---- Hero Venus Watermark ---- */
.hero-venus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 380px;
  color: var(--purple-200);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-venus svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  z-index: 1;
}

/* ---- Floating Feminist Symbols ---- */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-symbol {
  position: absolute;
  color: var(--purple-300);
  opacity: 0.08;
  animation: floatDrift 20s ease-in-out infinite;
}

.float-1 {
  width: 48px;
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.float-2 {
  width: 36px;
  top: 60%;
  right: 10%;
  animation-delay: -7s;
  animation-duration: 25s;
}

.float-3 {
  width: 28px;
  top: 30%;
  right: 20%;
  animation-delay: -14s;
  animation-duration: 22s;
}

@keyframes floatDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-18px) rotate(3deg); }
  50% { transform: translateY(8px) rotate(-2deg); }
  75% { transform: translateY(-12px) rotate(1deg); }
}

/* ---- Card Icons ---- */
.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--purple-50);
  color: var(--purple-600);
  margin-bottom: 1.25rem;
  transition: all 0.35s ease;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card:hover .card-icon {
  background: var(--purple-100);
  color: var(--purple-700);
  transform: scale(1.05);
}

/* ---- Section Dividers ---- */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  color: var(--purple-300);
  opacity: 0.4;
}

.section-divider svg {
  width: 120px;
  height: 24px;
}

/* ---- Critique Markers (icon + number) ---- */
.critique-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 50px;
  flex-shrink: 0;
}

.critique-icon {
  width: 24px;
  height: 24px;
  color: var(--purple-400);
  opacity: 0.6;
}

.critique-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple-300);
  line-height: 1;
}

.critique-item:hover .critique-icon {
  color: var(--purple-600);
  opacity: 1;
}

.critique-item:hover .critique-number {
  color: var(--purple-500);
}

/* ---- Manifesto Icons ---- */
.manifesto-line {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.manifesto-icon {
  font-size: 0.85rem;
  color: var(--purple-400);
  flex-shrink: 0;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.manifesto-line:hover .manifesto-icon {
  opacity: 1;
  color: var(--purple-600);
}

.manifesto-line.highlight .manifesto-icon {
  font-size: 1.1rem;
  color: var(--purple-600);
  opacity: 0.8;
}

.manifesto-line.highlight:hover .manifesto-icon {
  opacity: 1;
  color: var(--purple-700);
}

/* ---- Closing Venus ---- */
.closing-venus {
  width: 80px;
  margin: 0 auto 2rem;
  color: var(--purple-300);
  opacity: 0.25;
}

.closing-venus svg {
  width: 100%;
  height: auto;
}

/* ---- Question marks enhanced ---- */
.question-item {
  position: relative;
}

.question-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--purple-300);
  border-radius: 2px;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.question-item:hover::before {
  height: 60%;
  opacity: 0.5;
}

.question-item {
  padding-left: 1rem;
}

/* ---- Pull quote decorative marks ---- */
.pull-quote::before {
  content: '❝';
  display: block;
  font-size: 2.5rem;
  color: var(--purple-300);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* ---- Responsive adjustments for visuals ---- */
@media (max-width: 768px) {
  .hero-venus {
    width: 180px;
    height: 240px;
    opacity: 0.08;
  }

  .float-symbol { opacity: 0.05; }

  .critique-marker {
    flex-direction: row;
    gap: 0.75rem;
    min-width: auto;
  }

  .manifesto-line {
    gap: 0.75rem;
  }

  .closing-venus {
    width: 60px;
  }
}

/* ========================================
   THE SHOWROOM SECTION
   ======================================== */

.showroom-content {
  max-width: 820px;
  margin: 0 auto;
}

.showroom-text {
  text-align: center;
  margin-bottom: 3rem;
}

.showroom-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 660px;
  margin: 0 auto;
}

.showroom-text p + p {
  margin-top: 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--purple-700);
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.showroom-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.showroom-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(147, 51, 234, 0.08);
}

.showroom-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--purple-50);
  color: var(--purple-600);
  margin-bottom: 1.25rem;
  transition: all 0.35s ease;
}

.showroom-icon svg {
  width: 22px;
  height: 22px;
}

.showroom-card:hover .showroom-icon {
  background: var(--purple-100);
  color: var(--purple-700);
}

.showroom-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.showroom-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
}

.showroom-closing {
  text-align: center;
}

.showroom-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--purple-700);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.showroom-quote::before {
  content: '❝';
  display: block;
  font-size: 2rem;
  color: var(--purple-300);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
}

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

/* ========================================
   FEMINIST POWER SECTION
   ======================================== */

.section-power {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--bg-primary) 100%);
}

.power-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.power-venus {
  width: 64px;
  margin: 0 auto 1.5rem;
  color: var(--purple-400);
  opacity: 0.3;
}

.power-venus svg {
  width: 100%;
  height: auto;
}

.power-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 1rem;
}

.power-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.power-text {
  margin-bottom: 2.5rem;
}

.power-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.power-text p:last-child {
  margin-bottom: 0;
}

.power-manifesto {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.power-line {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text-muted);
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.power-line:hover {
  color: var(--text-primary);
}

.power-highlight {
  font-size: 1.25rem;
  color: var(--purple-700);
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.power-highlight:hover {
  color: var(--purple-800);
}

/* ---- Footer statement ---- */
.footer-statement {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--purple-600) !important;
  font-size: 0.82rem !important;
  margin-bottom: 0.25rem;
}

/* ========================================
   CONTACT / FEEDBACK FORM
   ======================================== */

.section-contact {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact-block {
  max-width: 580px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-400);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  align-self: center;
  margin-top: 0.5rem;
  min-width: 220px;
}
