/*
Theme Name: Empower Her Cape Cod
Theme URI: https://example.com/empower-her-cape-cod
Author: Andrew de Souza Ribeiro
Author URI: https://example.com
Description: Tema WordPress focado em conversão para a comunidade de mulheres imigrantes empreendedoras em Cape Cod.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: novo-tema
Tags: custom-background, custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
  color-scheme: light;
  --bg: #fff7fb;
  --surface: #ffffff;
  --surface-soft: rgba(255, 236, 246, 0.85);
  --text: #33223f;
  --muted: #8c6a88;
  --accent: #d63384;
  --accent-soft: #ffe1f0;
  --border: rgba(214, 51, 132, 0.18);
  --shadow: 0 24px 70px rgba(217, 45, 102, 0.12);
  --radius: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.75;
  position: relative;
  min-height: 100vh;
  background-color: #fff6fb;
  background-image:
    radial-gradient(at 8% 6%, rgba(255, 182, 217, 0.55) 0px, transparent 42%),
    radial-gradient(at 92% 12%, rgba(255, 213, 168, 0.45) 0px, transparent 45%),
    radial-gradient(at 78% 78%, rgba(214, 51, 132, 0.18) 0px, transparent 48%),
    radial-gradient(at 12% 92%, rgba(186, 132, 255, 0.22) 0px, transparent 50%),
    linear-gradient(180deg, #fff6fb 0%, #ffe9f4 55%, #ffe1f1 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Decorative aurora blobs that float behind everything */
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: drift 22s ease-in-out infinite alternate;
}

body::before {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, #ffb1d8 0%, rgba(255, 177, 216, 0) 70%);
}

body::after {
  width: 620px;
  height: 620px;
  bottom: -200px;
  left: -180px;
  background: radial-gradient(circle, #c8a4ff 0%, rgba(200, 164, 255, 0) 70%);
  animation-delay: -10s;
}

@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(40px, -30px, 0) scale(1.08); }
  100% { transform: translate3d(-30px, 40px, 0) scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after { animation: none; }
}

/* Subtle paper-grain texture overlay — gives the surface depth */
.site-content::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.6 0 0 0 0 0.8 0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #9f1d60;
}

.site-header {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: #ffffff;
  padding: 1.25rem 1.75rem 1rem;
  border-bottom: 1px solid rgba(214, 51, 132, 0.12);
  box-shadow: 0 10px 40px rgba(217, 45, 102, 0.08);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  width: 100%;
}

/* Hamburger toggle — hidden on desktop, visible on mobile */
.menu-toggle {
  display: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(214, 51, 132, 0.18);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 110;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.95);
}

.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.header-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-branding {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.site-title a {
  color: var(--text);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-description {
  color: var(--muted);
  margin: 0.35rem 0 0;
  font-size: 1rem;
}

.menu-badge {
  background: linear-gradient(135deg, #ffceed 0%, #ff9bd7 100%);
  color: #6f1f5d;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(217, 45, 102, 0.16);
}


.feminine-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.menu-item {
  margin: 0;
}

.menu-item a,
.site-navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0;
  color: #622569;
  background: transparent;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.menu-item a::after,
.site-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.menu-item a:hover,
.site-navigation a:hover {
  color: var(--accent);
}

.menu-item a:hover::after,
.site-navigation a:hover::after,
.site-navigation .current-menu-item a::after {
  transform: scaleX(1);
}

.site-navigation .current-menu-item a {
  color: var(--accent);
}

.button,
.hero-actions a,
.hero-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button-primary,
.hero-actions a.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover,
.hero-actions a.button-primary:hover {
  background: #b82469;
  transform: translateY(-2px);
}

.button-secondary,
.hero-actions a.button-secondary {
  background: transparent;
  color: var(--accent);
  border-color: rgba(214, 51, 132, 0.2);
}

.button-secondary:hover,
.hero-actions a.button-secondary:hover {
  background: rgba(214, 51, 132, 0.12);
  transform: translateY(-2px);
}

.site-content {
  max-width: 1120px;
  margin: 2.5rem auto;
  padding: 0 1.5rem 3rem;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 240, 247, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 30px 80px rgba(217, 45, 102, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 182, 217, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section--secondary {
  margin-top: 2rem;
}

.hero-section--secondary::after {
  top: auto;
  bottom: -80px;
  left: -80px;
  right: auto;
  background: radial-gradient(circle, rgba(200, 164, 255, 0.45) 0%, transparent 70%);
}

.hero-section--secondary h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.step-number {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  background: rgba(214, 51, 132, 0.12);
  color: #9e2f70;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section h1,
.page-hero h1 {
  font-size: 40px;
  margin: 0;
  line-height: 1.02;
}

.hero-text,
.page-hero p {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 48rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-highlights {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.highlight-card {
  background: #fff0f8;
  border: 1px solid rgba(255, 192, 219, 0.8);
  border-radius: 28px;
  padding: 1.3rem;
}

.highlight-card strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.section {
  margin-top: 3rem;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.section p {
  max-width: 72rem;
  color: var(--muted);
}

.cards-grid,
.feature-grid,
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.testimonial-card,
.contact-panel,
.page-hero,
.content-wrapper {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(217, 45, 102, 0.1);
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -30px;
  right: -10px;
  font-family: Georgia, serif;
  font-size: 9rem;
  color: rgba(214, 51, 132, 0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(217, 45, 102, 0.18);
}

.card,
.testimonial-card,
.contact-panel {
  padding: 1.8rem;
}

.card h3,
.testimonial-card h3 {
  margin-top: 0;
  color: #3d1f46;
}

.card p,
.testimonial-card p,
.contact-panel p {
  color: var(--muted);
}

.card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.card li {
  margin-bottom: 0.7rem;
}

.page-hero {
  padding: 2.5rem 2rem;
}

.page-hero-copy {
  max-width: 760px;
}

.content-wrapper {
  margin-top: 2rem;
  padding: 2rem;
}

/* Single post layout */
.single-post {
  margin-top: 0;
}

.post-cover {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(217, 45, 102, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);
  aspect-ratio: 16 / 9;
  background: var(--accent-soft);
}

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

.post-header {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
}

.post-header .eyebrow {
  margin-bottom: 1rem;
}

.post-title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.post-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.post-meta a {
  color: var(--accent);
}

.post-content {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.post-content p,
.post-content ul,
.post-content ol {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3d2543;
}

.post-content img,
.post-content .wp-block-image img {
  border-radius: 18px;
  margin: 1.5rem 0;
}

.post-content h2,
.post-content h3 {
  margin-top: 2rem;
  color: #3d1f46;
}

/* Blog archive thumbnails inherit .blog-card from home */
.blog-grid--archive {
  margin-top: 2rem;
}

.blog-grid--archive .blog-card h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #3d1f46;
}

.blog-grid--archive .blog-card h2 a {
  color: inherit;
}

.blog-grid--archive .blog-card h2 a:hover {
  color: var(--accent);
}

.pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.6rem;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(214, 51, 132, 0.18);
  margin: 0 0.25rem;
  font-weight: 600;
}

.pagination .page-numbers.current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.service-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.service-list li {
  margin-bottom: 1rem;
  padding-left: 1.3rem;
  position: relative;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 2rem;
}

.form-field {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-weight: 700;
  color: #40203f;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(214, 51, 132, 0.18);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  font-size: 1rem;
  background: #fff;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card {
  padding: 1.8rem;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.testimonial-card footer {
  margin-top: 1rem;
  font-weight: 700;
  color: #3d1f46;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: var(--accent-soft);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(214, 51, 132, 0.14);
  margin-top: 2rem;
}

.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 5rem;
}

/* ------------------------------------------------------------------
   HOME PAGE — magazine-style sections
------------------------------------------------------------------ */

.hero-meta {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta span {
  color: var(--accent);
  letter-spacing: 0.2em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-header .section-tag {
  justify-content: center;
}

.section-tag--light {
  color: #9f1d60;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 1rem;
}

.section-header p {
  margin: 0 auto;
  color: var(--muted);
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(214, 51, 132, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
  box-shadow: 0 25px 70px rgba(217, 45, 102, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.stats-bar .stat {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: background 0.3s ease;
}

.stats-bar .stat:hover {
  background: rgba(255, 255, 255, 0.95);
}

.stats-bar .stat strong {
  display: block;
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  color: var(--accent);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stats-bar .stat span {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Manifesto */
.manifesto {
  position: relative;
  margin-top: 4rem;
  padding: 4rem 2.5rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 213, 168, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(214, 51, 132, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 245, 250, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(217, 45, 102, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  overflow: hidden;
}

.manifesto::before {
  content: "“";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 18rem;
  color: rgba(214, 51, 132, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.manifesto h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0 0 1.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.manifesto .lead {
  max-width: 760px;
  margin: 0 auto 1.25rem;
  color: #4f3a55;
  font-size: 1.1rem;
  line-height: 1.85;
}

.manifesto .lead strong {
  color: var(--accent);
}

/* Pillars */
.pillars-section {
  margin-top: 4rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 2.2rem 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(217, 45, 102, 0.18);
  background: rgba(255, 255, 255, 0.85);
}

.pillar-number {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pillar-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  color: #3d1f46;
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* Audience */
.audience-section {
  margin-top: 4rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.audience-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(217, 45, 102, 0.16);
}

.audience-card h3 {
  margin: 0;
  color: #3d1f46;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
}

.audience-tag {
  margin-top: auto;
  align-self: flex-start;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-card--accent {
  background: linear-gradient(160deg, #fff 0%, #fff0f7 100%);
  border-color: rgba(214, 51, 132, 0.28);
  box-shadow: var(--shadow);
}

/* Programs / Pricing */
.programs-section {
  margin-top: 4rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.program-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 2.4rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 18px 50px rgba(217, 45, 102, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(217, 45, 102, 0.18);
}

.program-card header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #3d1f46;
}

.program-price {
  margin: 0.4rem 0 0;
  color: var(--text);
}

.program-price strong {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.program-price span {
  color: var(--muted);
  margin-left: 0.2rem;
}

.program-desc {
  margin: 0;
  color: var(--muted);
  min-height: 3rem;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.program-list li {
  padding-left: 1.6rem;
  position: relative;
  color: #4f3a55;
  font-size: 0.97rem;
}

.program-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.program-card .button {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

.program-card--featured {
  background: linear-gradient(165deg, #fff 0%, #fff0f7 100%);
  border: 1px solid var(--accent);
  box-shadow: 0 30px 80px rgba(217, 45, 102, 0.22);
  transform: translateY(-8px);
}

.program-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Agenda */
.agenda-section {
  margin-top: 4rem;
}

.agenda-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agenda-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 1.6rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.agenda-item:hover {
  border-color: rgba(214, 51, 132, 0.4);
  transform: translateX(4px);
  box-shadow: 0 20px 50px rgba(217, 45, 102, 0.14);
}

.agenda-date {
  text-align: center;
  background: var(--accent-soft);
  border-radius: 18px;
  padding: 1rem 0.5rem;
}

.agenda-day {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.agenda-month {
  display: block;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}

.agenda-info h3 {
  margin: 0 0 0.35rem;
  color: #3d1f46;
  font-size: 1.15rem;
}

.agenda-info p {
  margin: 0 0 0.35rem;
  color: var(--muted);
}

.agenda-meta {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Testimonials section header */
.testimonials-section {
  margin-top: 4rem;
}

/* Blog */
.blog-section {
  margin-top: 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(217, 45, 102, 0.18);
}

.blog-card-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--accent-soft);
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.blog-card-date {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #3d1f46;
}

.blog-card h3 a {
  color: inherit;
}

.blog-card h3 a:hover {
  color: var(--accent);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.blog-card-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--accent);
}

.blog-card--placeholder {
  background: linear-gradient(160deg, #fff 0%, #fff5fa 100%);
}

/* Newsletter */
.newsletter-section {
  position: relative;
  margin-top: 4rem;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 138, 191, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(200, 164, 255, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #2a0e2e 0%, #5a1d52 50%, #7a2a6a 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 40px 90px rgba(40, 10, 45, 0.35);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 182, 217, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-section .section-tag {
  color: #ffb8dc;
}

.newsletter-section h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.2;
}

.newsletter-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  white-space: nowrap;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* FAQ */
.faq-section {
  margin-top: 4rem;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 1.35rem 1.6rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 18px 40px rgba(217, 45, 102, 0.1);
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #3d1f46;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

/* Rich footer CTA */
.footer-cta--rich {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 50%),
    linear-gradient(135deg, #ffe1f0 0%, #ffc6e0 60%, #ffb1d4 100%);
  align-items: center;
  padding: 3rem;
  margin-top: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 30px 80px rgba(217, 45, 102, 0.18);
  overflow: hidden;
}

.footer-cta--rich::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta--rich strong {
  display: block;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #3d1f46;
  margin: 0.5rem 0;
  line-height: 1.2;
}

.footer-cta--rich p {
  margin: 0;
  color: #5a3a5a;
  max-width: 480px;
}

/* AOS safety fallback — if AOS fails to load, force visibility */
html:not(.js-aos) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* ==================================================================
   CAPE-SHIELD STYLE HOMEPAGE (pink palette)
================================================================== */

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #3d1f46 0%, #6f1f5d 100%);
  color: #ffe1f0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.topbar a {
  color: #ffe1f0;
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: #fff;
}

.topbar-info li,
.topbar-social li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-social li + li {
  position: relative;
  padding-left: 1.4rem;
}

.topbar-social li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 225, 240, 0.3);
  transform: translateY(-50%);
}

/* Sticky main header — overriding earlier rules */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
}

.site-header .header-top {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.header-cta {
  white-space: nowrap;
}

/* Hero */
.cs-hero {
  position: relative;
  margin: 0;
  padding: 5rem 1.5rem 4rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 182, 217, 0.6) 0%, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(200, 164, 255, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, #fff6fb 0%, #ffe9f4 100%);
  overflow: hidden;
}

.cs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1' fill='%23d63384' opacity='0.15'/></svg>");
  opacity: 0.5;
  pointer-events: none;
}

.cs-hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 1fr);
  gap: 3rem;
  align-items: center;
}

.cs-hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #2a0e2e;
}

.cs-hero-text {
  font-size: 1.1rem;
  color: #5a3a5a;
  max-width: 560px;
  margin: 0 0 2rem;
}

.cs-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cs-hero-badges {
  list-style: none;
  margin: 0;
  padding: 1.25rem 0 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(214, 51, 132, 0.18);
}

.cs-hero-badges li {
  font-size: 0.9rem;
  color: var(--muted);
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}

.cs-hero-badges strong {
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* Hero form card */
.cs-hero-form {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(214, 51, 132, 0.12);
  box-shadow: 0 30px 70px rgba(217, 45, 102, 0.18);
}

.cs-hero-form-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cs-hero-form h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
  color: #2a0e2e;
}

.cs-hero-form p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cs-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cs-form input,
.cs-form select {
  width: 100%;
  border: 1px solid rgba(214, 51, 132, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background: #fff7fb;
  color: var(--text);
  font-family: inherit;
}

.cs-form input:focus,
.cs-form select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

.cs-form button {
  margin-top: 0.4rem;
}

/* Outline button variant (Cape Shield "Start a Project") */
.button-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(58, 30, 60, 0.3);
}

.button-outline:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.button-lg {
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
}

/* Benefits strip */
.cs-benefits {
  max-width: 1280px;
  margin: -3rem auto 0;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.cs-benefit {
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 25px 60px rgba(217, 45, 102, 0.12);
  border: 1px solid rgba(214, 51, 132, 0.08);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cs-benefit-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #ffceed 100%);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.cs-benefit h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  color: #2a0e2e;
}

.cs-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Section header — Cape Shield style */
.cs-section-header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.cs-section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2a0e2e;
}

.cs-section-header p {
  color: var(--muted);
  margin: 0;
}

/* Why Us */
.cs-why {
  max-width: 1280px;
  margin: 6rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.cs-why-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(214, 51, 132, 0.15) 0%, rgba(255, 213, 168, 0.25) 100%);
}

.cs-why-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
    linear-gradient(160deg, #ffceed 0%, #ff9bd7 60%, #d63384 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cs-why-media--has-image .cs-why-image {
  background-image: none;
}

.cs-why-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cs-why-badge strong {
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.cs-why-badge span {
  font-size: 0.85rem;
  color: var(--muted);
}

.cs-why-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2a0e2e;
}

.cs-why-copy > p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.cs-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cs-why-list li {
  position: relative;
  padding-left: 2rem;
  color: #3d2543;
  line-height: 1.6;
}

.cs-why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.cs-why-list strong {
  color: #2a0e2e;
}

/* Services — 2 cards */
.cs-services {
  max-width: 1280px;
  margin: 6rem auto 0;
  padding: 0 1.5rem;
}

.cs-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.cs-service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(217, 45, 102, 0.12);
  border: 1px solid rgba(214, 51, 132, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cs-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(217, 45, 102, 0.2);
}

.cs-service-image {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cs-service-image--mentoria {
  background-color: #ffceed;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 45%),
    linear-gradient(135deg, #ffceed 0%, #d63384 100%);
}

.cs-service-image--comunidade {
  background-color: #ffd5a8;
  background-image:
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.5) 0%, transparent 45%),
    linear-gradient(135deg, #ffd5a8 0%, #ff9bd7 60%, #c8a4ff 100%);
}

.cs-service-image.has-image,
.cs-project-image.has-image {
  background-image: none;
}

.cs-service-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cs-service-body h3 {
  margin: 0 0 0.6rem;
  font-size: 1.5rem;
  color: #2a0e2e;
}

.cs-service-body > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.cs-service-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cs-service-body ul li {
  padding-left: 1.5rem;
  position: relative;
  color: #3d2543;
  font-size: 0.95rem;
}

.cs-service-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.cs-service-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--accent);
  align-self: flex-start;
}

/* Projects */
.cs-projects {
  max-width: 1280px;
  margin: 6rem auto 0;
  padding: 0 1.5rem;
}

.cs-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.cs-project-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(217, 45, 102, 0.1);
  border: 1px solid rgba(214, 51, 132, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(217, 45, 102, 0.18);
}

.cs-project-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cs-project-image--1 { background-image: linear-gradient(135deg, #ffceed 0%, #ff9bd7 100%); }
.cs-project-image--2 { background-image: linear-gradient(135deg, #ffd5a8 0%, #ff9bd7 100%); }
.cs-project-image--3 { background-image: linear-gradient(135deg, #c8a4ff 0%, #ff9bd7 100%); }

.cs-project-body {
  padding: 1.5rem;
}

.cs-project-date {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
}

.cs-project-card h3 {
  margin: 0.6rem 0 0.5rem;
  font-size: 1.15rem;
  color: #2a0e2e;
}

.cs-project-card p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cs-project-link {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}

/* Excellence / Stats */
.cs-excellence {
  margin: 6rem 0 0;
  padding: 5rem 1.5rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 182, 217, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(200, 164, 255, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, #fff6fb 0%, #ffe9f4 100%);
}

.cs-excellence-copy {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.cs-excellence-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2a0e2e;
}

.cs-excellence-copy p {
  color: var(--muted);
  margin: 0;
}

.cs-excellence-grid {
  max-width: 1280px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.cs-ex-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 15px 40px rgba(217, 45, 102, 0.08);
  border: 1px solid rgba(214, 51, 132, 0.08);
}

.cs-ex-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #2a0e2e;
}

.cs-ex-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cs-excellence-stats {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(214, 51, 132, 0.15);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(214, 51, 132, 0.15);
}

.cs-stat {
  background: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.cs-stat strong {
  display: block;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--accent);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cs-stat span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Partners */
.cs-partners {
  max-width: 1280px;
  margin: 6rem auto 0;
  padding: 0 1.5rem;
}

.cs-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.cs-partner {
  background: #fff;
  border: 1px solid rgba(214, 51, 132, 0.12);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #5a3a5a;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.cs-partner:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Final CTA */
.cs-cta {
  margin: 6rem 0 0;
  padding: 0 1.5rem;
}

.cs-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 138, 191, 0.3) 0%, transparent 45%),
    linear-gradient(135deg, #2a0e2e 0%, #6f1f5d 50%, #b82469 100%);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  box-shadow: 0 40px 100px rgba(40, 10, 45, 0.35);
}

.cs-cta h2 {
  margin: 0.5rem 0 0.8rem;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: #fff;
  line-height: 1.2;
}

.cs-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
}

.cs-cta .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #ffe1f0;
}

.cs-cta .button {
  justify-self: end;
}

/* Footer multi-column */
.site-footer {
  margin-top: 6rem;
  padding: 4rem 1.5rem 2rem;
  background: linear-gradient(180deg, #fff6fb 0%, #ffeaf4 100%);
  border-top: 1px solid rgba(214, 51, 132, 0.15);
  text-align: left;
  color: var(--text);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(214, 51, 132, 0.15);
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #2a0e2e;
  margin: 0 0 1.2rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: #5a3a5a;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.footer-brand {
  font-size: 1.4rem;
  margin: 0 0 0.8rem;
  color: #2a0e2e;
  letter-spacing: -0.02em;
}

.footer-col--brand p {
  color: var(--muted);
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-social {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem !important;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(214, 51, 132, 0.18);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
}

.footer-legal a {
  color: var(--muted);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1100px) {
  .cs-hero-inner,
  .cs-why,
  .cs-services-grid,
  .cs-excellence-grid,
  .cs-projects-grid,
  .cs-partners-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cs-benefits {
    grid-template-columns: 1fr;
    margin-top: -2rem;
  }

  .cs-excellence-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .hide-mobile { display: none; }

  .header-cta { display: none; }

  .cs-hero {
    padding: 3rem 1.25rem 3rem;
  }

  .cs-hero-inner,
  .cs-why,
  .cs-services-grid,
  .cs-projects-grid,
  .cs-excellence-grid,
  .cs-partners-grid,
  .footer-grid,
  .cs-cta-inner {
    grid-template-columns: 1fr !important;
  }

  .cs-cta-inner {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .cs-cta .button {
    justify-self: stretch;
  }

  .cs-why-media {
    aspect-ratio: 4 / 3;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==================================================================
   CONTACT PAGE
================================================================== */

.contact-page {
  max-width: none;
  margin: 0;
  padding: 0 0 5rem;
}

/* Hero */
.contact-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 182, 217, 0.55) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200, 164, 255, 0.35) 0%, transparent 50%),
    linear-gradient(180deg, #fff6fb 0%, #ffe9f4 100%);
  padding: 5rem 1.5rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1' fill='%23d63384' opacity='0.15'/></svg>");
  opacity: 0.5;
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #2a0e2e;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #5a3a5a;
  margin: 0;
}

/* Quick methods */
.contact-methods {
  max-width: 1280px;
  margin: -3.5rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.contact-method {
  display: block;
  background: #fff;
  border: 1px solid rgba(214, 51, 132, 0.1);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  box-shadow: 0 25px 60px rgba(217, 45, 102, 0.12);
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(217, 45, 102, 0.2);
  border-color: var(--accent);
  color: inherit;
}

.contact-method--static:hover {
  transform: none;
  cursor: default;
  border-color: rgba(214, 51, 132, 0.1);
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #ffceed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.contact-method h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  color: #2a0e2e;
}

.contact-method p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-method-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Form + Info grid */
.contact-grid {
  max-width: 1280px;
  margin: 5rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  gap: 2.5rem;
  align-items: start;
}

/* Form card */
.contact-form-card {
  background: #fff;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 30px 80px rgba(217, 45, 102, 0.15);
  border: 1px solid rgba(214, 51, 132, 0.08);
}

.contact-form-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.contact-form-card h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #2a0e2e;
  letter-spacing: -0.02em;
}

.contact-form-intro {
  color: var(--muted);
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
}

.contact-form .form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2a0e2e;
  letter-spacing: 0.02em;
}

.contact-form .form-field label span {
  color: var(--accent);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid rgba(214, 51, 132, 0.18);
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fff7fb;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b497b1;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(214, 51, 132, 0.35);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(214, 51, 132, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23d63384' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-actions .button {
  align-self: flex-start;
}

.form-privacy {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 90px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid rgba(214, 51, 132, 0.1);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 15px 40px rgba(217, 45, 102, 0.08);
}

.contact-info-card h3 {
  margin: 0.5rem 0 0.8rem;
  color: #2a0e2e;
  font-size: 1.15rem;
}

.contact-info-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-info-card ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(214, 51, 132, 0.1);
  font-size: 0.95rem;
}

.contact-info-card ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-info-card ul li strong {
  color: #2a0e2e;
}

.contact-info-card ul li span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-info-list li {
  display: block !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  padding-left: 1.5rem;
  position: relative;
  color: #3d2543;
}

.contact-info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.contact-info-card--accent {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 213, 168, 0.4) 0%, transparent 55%),
    linear-gradient(160deg, #fff 0%, #fff5fa 100%);
  border-color: rgba(214, 51, 132, 0.18);
}

.contact-info-card--dark {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 138, 191, 0.25) 0%, transparent 50%),
    linear-gradient(135deg, #2a0e2e 0%, #6f1f5d 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 25px 60px rgba(40, 10, 45, 0.3);
}

.contact-info-card--dark h3 {
  color: #fff;
}

.contact-info-card--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.15);
  color: #ffe1f0;
}

/* Light button variant for dark backgrounds */
.button-light {
  background: #fff;
  color: var(--accent);
  border: 1px solid #fff;
}

.button-light:hover {
  background: #ffe1f0;
  color: #9f1d60;
}

/* Contact FAQ */
.contact-faq {
  max-width: 900px;
  margin: 5rem auto 0;
  padding: 0 1.5rem;
}

.contact-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    padding: 3rem 1.25rem 4rem;
  }

  .contact-form-card {
    padding: 1.75rem;
    border-radius: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions .button {
    align-self: stretch;
    width: 100%;
  }
}

/* ==================================================================
   END CONTACT PAGE
================================================================== */

/* ==================================================================
   END CAPE-SHIELD STYLE
================================================================== */

/* ------------------------------------------------------------------ */

@media (max-width: 1100px) {
  .pillars-grid,
  .programs-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-card--featured {
    transform: none;
  }

  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-section,
  .contact-panel,
  .testimonial-grid,
  .cards-grid,
  .feature-grid,
  .audience-grid,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .site-branding {
    flex-direction: column;
    align-items: flex-start;
  }

  .agenda-item {
    grid-template-columns: 90px 1fr;
  }

  .agenda-item .button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .newsletter-form {
    border-radius: 24px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section {
    padding: 2rem 1.3rem;
  }

  .button,
  .hero-actions a {
    width: 100%;
  }

  /* Hamburger visible on mobile */
  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    flex-wrap: nowrap;
  }

  .header-top {
    justify-content: space-between;
    margin-bottom: 0;
  }

  /* Mobile menu becomes a slide-down panel */
  .site-navigation {
    position: fixed;
    inset: 0;
    margin: 0;
    padding: 6rem 2rem 2rem;
    min-height: 235px;
    max-height: 100vh;
    background: rgba(255, 247, 251, 0.96);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    z-index: 100;
    overflow-y: auto;
  }

  body.menu-open .site-navigation {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
  }

  .feminine-menu {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }

  .menu-item a,
  .site-navigation a {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(214, 51, 132, 0.12);
  }

  .menu-item a::after,
  .site-navigation a::after {
    display: none;
  }
}
