/* === Eterna Femme — Our Approach Page === */
/* Owns: /our-approach styles. Does NOT own shared nav/footer/hero — those live in main.css. */

/* === Hero === */
.approach-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 5vw, 60px) var(--section-padding);
  position: relative;
  overflow: hidden;
}

.approach-hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(139, 94, 107, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.approach-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
}

.approach-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
}

.approach-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.approach-headline em {
  font-style: italic;
  color: var(--color-accent);
}

.approach-subhead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1.2rem;
  max-width: 540px;
}

.approach-subhead strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.approach-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2.4rem;
}

/* Stats aside */
.approach-hero-aside {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.approach-hero-stat {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--color-border);
}

.approach-hero-stat:last-child { border-bottom: none; }

.approach-stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--color-accent);
  line-height: 1;
}

.approach-stat-label {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 960px) {
  .approach-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .approach-hero-aside { flex-direction: row; border-radius: 4px; }
  .approach-hero-stat { flex: 1; }
  .approach-hero { padding-top: 100px; }
}

@media (max-width: 600px) {
  .approach-hero-aside { flex-direction: column; }
  .approach-hero-stat { border-bottom: 1px solid var(--color-border); }
  .approach-hero-stat:last-child { border-bottom: none; }
}

/* === The Gap === */
.approach-gap { background: var(--color-bg); }

.approach-gap-inner { max-width: var(--max-width); margin: 0 auto; }

.approach-gap-header {
  text-align: center;
  margin-bottom: 64px;
}

.approach-gap-header h2 { margin-bottom: 1.2rem; }

.approach-gap-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

/* 3 changes */
.approach-gap-changes {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}

.approach-gap-change {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 40px;
  border-bottom: 1px solid var(--color-border);
}

.approach-gap-change:last-child { border-bottom: none; }

.approach-gap-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.approach-gap-icon svg { width: 100%; height: 100%; }

.approach-gap-change h3 {
  font-size: 1.05rem;
  color: var(--color-text-primary);
  margin-bottom: 0.6rem;
}

.approach-gap-change p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Wrong-list */
.approach-gap-wrong {
  background: rgba(92, 58, 68, 0.05);
  border: 1px solid rgba(92, 58, 68, 0.12);
  border-radius: 4px;
  padding: 40px;
}

.approach-gap-wrong-title {
  font-size: 1rem;
  color: var(--color-text-primary);
  margin-bottom: 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.approach-gap-wrong-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.approach-gap-wrong-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.approach-gap-wrong-icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.approach-gap-wrong-icon svg { width: 100%; height: 100%; }

.approach-gap-wrong-item strong {
  font-size: 0.88rem;
  color: var(--color-text-primary);
  font-weight: 600;
}

.approach-gap-wrong-item p {
  font-size: 0.85rem;
  line-height: 1.65;
}

@media (max-width: 800px) {
  .approach-gap-changes { gap: 0; }
  .approach-gap-change { flex-direction: column; gap: 12px; padding: 28px 24px; }
  .approach-gap-wrong { padding: 28px 24px; }
  .approach-gap-wrong-list { grid-template-columns: 1fr; }
}

/* === How We Work === */
.approach-how { background: var(--color-surface); }

.approach-how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.approach-how-header {
  text-align: center;
  margin-bottom: 64px;
}

.approach-how-header h2 { margin-bottom: 1rem; }

.approach-how-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.approach-how-lead em {
  color: var(--color-text-primary);
  font-style: italic;
}

/* Steps */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.approach-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.approach-step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: 4px;
}

.approach-step-content h3 {
  font-size: 1.1rem;
  color: var(--color-text-primary);
  margin-bottom: 0.6rem;
}

.approach-step-content p {
  font-size: 0.9rem;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .approach-steps { grid-template-columns: 1fr; gap: 40px; }
}

/* === Protocol Cards === */
.approach-protocols { background: var(--color-bg); }

.approach-protocols-inner { max-width: var(--max-width); margin: 0 auto; }
.approach-protocols-inner h2 { margin-bottom: 40px; }

.approach-protocols-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.approach-protocol-card {
  display: flex;
  gap: 16px;
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-surface);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.approach-protocol-card:hover {
  box-shadow: 0 6px 24px rgba(90,60,50,0.08);
  border-color: var(--color-accent-light);
}

.approach-protocol-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-accent-light);
  line-height: 1;
  flex-shrink: 0;
}

.approach-protocol-card h3 {
  font-size: 1rem;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.approach-protocol-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 1.2rem;
}

.approach-protocol-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

@media (max-width: 800px) {
  .approach-protocols-grid { grid-template-columns: 1fr; }
}

/* === Founder Note === */
.approach-founder { background: var(--color-surface); }

.approach-founder-inner {
  max-width: 720px;
  margin: 0 auto;
}

.approach-founder-card {
  text-align: center;
}

.approach-founder-card .divider-ornament {
  display: flex;
  justify-content: center;
  margin: 1.2rem 0;
  color: var(--color-accent);
}

.approach-founder-quote {
  margin: 0 0 2rem;
  padding: 0;
  border: none;
}

.approach-founder-quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
  margin-bottom: 1.4rem;
  font-style: italic;
}

.approach-founder-quote p:last-child { margin-bottom: 0; }

.approach-founder-sig {
  font-size: 0.85rem;
  color: var(--color-text-primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 2rem;
  font-style: normal;
}

/* === CTA === */
.approach-cta {
  background: var(--color-accent-dark);
  color: #fff;
}

.approach-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.approach-cta .section-label { color: var(--color-accent-light); }
.approach-cta h2 { color: #fff; margin-bottom: 1.2rem; }

.approach-cta p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.approach-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.approach-cta .btn-primary {
  background: #fff;
  color: var(--color-accent-dark);
}
.approach-cta .btn-primary:hover {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
}

.approach-cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

/* === Divider ornament (shared utility) === */
.divider-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--color-accent);
}