/* ============================================
   SIMCHA YOETZET - Global Stylesheet
   עיצוב: עדין, נשי, ורוד / קרם / לבן
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Assistant:wght@300;400;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --pink-deep:    #c9748a;
  --pink-mid:     #e8a0b0;
  --pink-light:   #f5cdd6;
  --pink-pale:    #fdf0f3;
  --cream:        #faf6f0;
  --cream-dark:   #f0e8de;
  --white:        #ffffff;
  --text-dark:    #3a2a2e;
  --text-mid:     #6b4c54;
  --text-light:   #9c7a83;
  --gold:         #c9a96e;
  --shadow-soft:  0 4px 24px rgba(201, 116, 138, 0.12);
  --shadow-card:  0 8px 40px rgba(201, 116, 138, 0.15);
  --radius:       16px;
  --radius-sm:    8px;
  --font-display: 'Assistant', sans-serif;
  --font-body:    'Assistant', sans-serif;
  --transition:   0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
}

a {
  color: var(--pink-deep);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--pink-mid); }

/* --- Layout Helpers --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--pink-pale);
}

/* --- Decorative Divider --- */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to left, var(--pink-deep), var(--pink-light));
  margin: 16px auto 32px;
  border-radius: 2px;
}

.divider-right {
  margin-right: 0;
  margin-left: auto;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--pink-light);
  transition: box-shadow var(--transition);
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--pink-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 52px !important;
  width: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
}

.logo span {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--pink-deep);
  transition: width var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover { color: var(--pink-deep); }

.nav-cta {
  background: var(--pink-deep);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--pink-mid) !important;
  transform: translateY(-1px);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--pink-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--white) 0%, var(--pink-pale) 50%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 176, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-deep);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero h1 em {
  font-style: italic;
  color: var(--pink-deep);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-cities {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.city-tag {
  background: var(--white);
  border: 1px solid var(--pink-light);
  color: var(--text-mid);
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.city-tag::before {
  content: '📍';
  font-size: 0.8rem;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--pink-deep);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 116, 138, 0.35);
}

.btn-primary:hover {
  background: #b8637a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 116, 138, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--pink-deep);
  border: 1.5px solid var(--pink-mid);
}

.btn-secondary:hover {
  background: var(--pink-pale);
  border-color: var(--pink-deep);
  transform: translateY(-2px);
  color: var(--pink-deep);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  color: var(--white);
}

.btn-whatsapp svg,
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   WHAT IS YOETZET SECTION
   ============================================ */
.what-is {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--pink-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.what-is-text h2 {
  margin-bottom: 20px;
}

.what-is-text p {
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-mid);
}

.feature-list li::before {
  content: '✦';
  color: var(--pink-deep);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.what-is-card {
  background: linear-gradient(145deg, var(--pink-pale), var(--cream));
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--pink-light);
  position: relative;
  overflow: hidden;
}

.what-is-card::before {
  content: '❝';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--pink-light);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

.what-is-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.what-is-card cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-light);
  font-family: var(--font-body);
}

/* ============================================
   TOPICS / SERVICES SECTION
   ============================================ */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.topic-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.topic-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to left, var(--pink-deep), var(--pink-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.topic-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
  border-color: var(--pink-light);
}

.topic-card:hover::after {
  transform: scaleX(1);
}

.topic-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.topic-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: normal;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.topic-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   WHY WOMAN SECTION
   ============================================ */
.why-woman {
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--white) 100%);
}

.why-woman-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-point-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-point-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-point-text p {
  font-size: 0.93rem;
  color: var(--text-light);
}

.why-visual {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--pink-light);
}

.why-visual .big-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--pink-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.why-visual p {
  font-size: 1rem;
  color: var(--text-mid);
}

/* ============================================
   AREA SECTION
   ============================================ */
.area-section {
  background: var(--text-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.area-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 116, 138, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.area-section .section-label { color: var(--pink-light); }
.area-section h2 { color: var(--white); }
.area-section p { color: rgba(255,255,255,0.7); }

.cities-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.city-block {
  text-align: center;
  padding: 32px 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  min-width: 180px;
}

.city-block:hover {
  background: rgba(201, 116, 138, 0.15);
  border-color: var(--pink-mid);
  transform: translateY(-4px);
}

.city-block .city-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.city-block .city-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.area-unique {
  margin-top: 48px;
  text-align: center;
  padding: 28px;
  border: 1px solid rgba(201, 116, 138, 0.4);
  border-radius: var(--radius);
  background: rgba(201, 116, 138, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.area-unique p {
  color: rgba(255,255,255,0.85) !important;
  font-size: 1rem;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--pink-deep) 0%, #a85470 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip .btn-whatsapp {
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--pink-light);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  max-width: 260px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--pink-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

/* ============================================
   ARTICLE / BLOG PAGE STYLES
   ============================================ */
.article-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--white) 0%, var(--pink-pale) 100%);
  text-align: center;
}

.article-hero .article-category {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-deep);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.article-hero h1 {
  max-width: 700px;
  margin: 0 auto 20px;
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.article-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  color: var(--text-dark);
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul {
  padding-right: 20px;
  margin-bottom: 20px;
}

.article-content ul li {
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.7;
}

.article-cta-box {
  background: linear-gradient(135deg, var(--pink-pale), var(--cream));
  border: 1.5px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

.article-cta-box h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: normal;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.article-cta-box p {
  margin-bottom: 24px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 100px;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--pink-pale), var(--cream-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 1px solid var(--pink-light);
  margin-bottom: 24px;
}

.about-logo-img {
  width: 100%;
  max-width: 260px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 24px;
  box-shadow: 0 8px 40px rgba(201, 116, 138, 0.28);
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-mid);
}

.credentials-list li::before {
  content: '✓';
  color: var(--pink-deep);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-soft);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-item-text span {
  font-size: 1rem;
  color: var(--text-dark);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: auto;
    background-color: #ffffff;
    padding: 8px 40px 20px;
    gap: 0;
    z-index: 9999;
    border-top: 1px solid var(--pink-light);
    box-shadow: 0 8px 32px rgba(201, 116, 138, 0.15);
    overflow: visible;
  }
  nav.open a {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 11px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(201, 116, 138, 0.12);
    letter-spacing: 0.02em;
    transition: color var(--transition);
  }
  nav.open a:last-of-type {
    border-bottom: none;
  }
  nav.open a:hover,
  nav.open a.active {
    color: var(--pink-deep);
  }
  nav.open a.nav-cta {
    margin-top: 14px;
    background: var(--pink-deep);
    color: var(--white) !important;
    padding: 12px 40px;
    border-radius: 50px;
    border-bottom: none;
    font-size: 1rem;
    font-weight: 600;
    width: auto;
    box-shadow: 0 4px 16px rgba(201, 116, 138, 0.35);
    letter-spacing: 0.03em;
  }
  nav.open a.nav-cta:hover {
    background: var(--pink-mid);
    color: var(--white) !important;
  }
  .menu-toggle { display: flex; }

  .what-is-grid,
  .why-woman-inner,
  .about-grid,
  .contact-grid,
  .footer-inner { grid-template-columns: 1fr; }

  .about-sidebar { position: static; }
  .footer-inner { gap: 32px; }
  .hero { text-align: center; }
  .hero-cities { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .divider-right { margin-right: auto; }
  .cities-row { gap: 16px; }
  .city-block { padding: 24px 28px; min-width: 140px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .btn { padding: 13px 24px; font-size: 0.95rem; }
  .what-is-card { padding: 28px 24px; }
  .topic-card { padding: 24px 20px; }
}

/* === Article-page additions (May 2026) ============================ */
.article-page-hero {
  background: linear-gradient(180deg, var(--pink-pale) 0%, var(--cream) 100%);
  padding: 110px 0 60px;
  text-align: right;
  border-bottom: 1px solid var(--pink-light);
}
.article-page-hero .container { max-width: 820px; }
.article-page-hero .crumb {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--pink-deep); font-size: 0.92rem; font-weight: 600;
  text-decoration: none; margin-bottom: 20px;
  transition: var(--transition);
}
.article-page-hero .crumb:hover { color: var(--text-dark); }
.article-page-hero .article-cat {
  display: inline-block;
  background: var(--white); color: var(--pink-deep);
  padding: 6px 16px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--pink-light);
  margin-bottom: 16px;
}
.article-page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0 0 14px;
  font-weight: 700;
}
.article-page-hero .article-meta {
  color: var(--text-light); font-size: 0.92rem;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  font-size: 1.08rem;
  line-height: 1.95;
  color: var(--text-mid);
}
.article-body h2 {
  color: var(--text-dark);
  font-size: 1.55rem;
  margin: 48px 0 16px;
  padding-right: 16px;
  border-right: 4px solid var(--pink-deep);
  line-height: 1.4;
}
.article-body h3 {
  color: var(--pink-deep);
  font-size: 1.2rem;
  margin: 32px 0 12px;
  font-weight: 700;
}
.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--text-dark); font-weight: 700; }
.article-body em { color: var(--pink-deep); font-style: normal; font-weight: 600; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-right: 24px; }
.article-body li { margin: 0 0 8px; }
.article-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--pink-pale);
  border-right: 4px solid var(--pink-deep);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-style: italic;
}
.article-body .callout {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}
.article-body .callout strong:first-child {
  display: block; color: var(--pink-deep); font-size: 1.05rem; margin-bottom: 8px;
}
.article-end-cta {
  max-width: 760px; margin: 0 auto 80px; padding: 0 24px;
  text-align: center;
}

/* Articles index */
.articles-index-hero {
  background: linear-gradient(180deg, var(--pink-pale) 0%, var(--cream) 100%);
  padding: 120px 0 60px;
  text-align: center;
}
.articles-index-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem); margin: 0 0 12px;
  color: var(--text-dark);
}
.articles-index-hero p {
  max-width: 580px; margin: 0 auto;
  color: var(--text-mid); font-size: 1.08rem;
}
.cat-section { padding: 56px 0 8px; }
.cat-section h2 {
  font-size: 1.4rem; color: var(--pink-deep);
  margin: 0 0 24px; padding-right: 16px;
  border-right: 4px solid var(--pink-deep);
}
.article-card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 20px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  display: block; text-decoration: none; color: inherit;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--pink-light);
}
.article-card .meta-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px; font-size: 0.82rem; color: var(--text-light);
}
.article-card .meta-row .cat-pill {
  background: var(--pink-pale); color: var(--pink-deep);
  padding: 3px 12px; border-radius: 999px; font-weight: 600;
}
.article-card h3 {
  font-size: 1.12rem; color: var(--text-dark);
  margin: 0 0 10px; line-height: 1.4;
}
.article-card p {
  font-size: 0.95rem; color: var(--text-mid);
  margin: 0; line-height: 1.6;
}

/* === Homepage "ask" section (replaces old why-woman) === */
.ask-section {
  max-width: 720px;
  margin: 0 auto;
  text-align: right;
}
.ask-lead {
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  color: var(--text-dark);
  line-height: 1.45;
  margin: 0 0 36px;
  text-align: center;
  font-weight: 700;
}
.ask-scenarios {
  display: grid;
  gap: 14px;
  margin-bottom: 44px;
}
.ask-scenario {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-right: 4px solid var(--pink-mid);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: var(--transition);
}
.ask-scenario:hover {
  border-right-color: var(--pink-deep);
  box-shadow: var(--shadow-soft);
  transform: translateX(2px);
}
.ask-scenario p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.65;
}
.ask-divider {
  text-align: center;
  margin: 44px 0 36px;
  position: relative;
}
.ask-divider:before, .ask-divider:after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 100px);
  border-top: 1px solid var(--pink-light);
}
.ask-divider:before { right: 0; }
.ask-divider:after  { left:  0; }
.ask-divider span {
  display: inline-block;
  background: var(--pink-deep);
  color: white;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}
.ask-explanation {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px 34px;
  margin-bottom: 24px;
}
.ask-explanation p {
  color: var(--text-mid);
  line-height: 1.85;
  margin: 0 0 14px;
  font-size: 1.02rem;
}
.ask-explanation p:last-child { margin-bottom: 0; }
.ask-personal {
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--cream) 100%);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 30px 34px;
  position: relative;
}
.ask-personal:before {
  content: "";
  position: absolute;
  right: 28px;
  top: -1px;
  width: 60px;
  height: 4px;
  background: var(--pink-deep);
  border-radius: 0 0 4px 4px;
}
.ask-personal p {
  color: var(--text-dark);
  line-height: 1.85;
  margin: 0;
  font-size: 1.05rem;
}
@media (max-width: 600px) {
  .ask-divider:before, .ask-divider:after { display: none; }
  .ask-explanation, .ask-personal { padding: 22px 20px; }
  .ask-scenario { padding: 16px 18px; }
}
