/* ============================================================
   ATLAS GUIDE — SOLO WOMAN EXPLORER
   solo-woman.css
   Requires: global.css + header-footer.css loaded first
   ============================================================ */

/* ============================================================
   LOCAL TOKEN BRIDGE
   Warm rose/terracotta palette — intentionally feminine but
   still grounded in the Atlas Guide colour system.
   ============================================================ */
:root {
  --primary:      var(--ag-green-800);
  --primary-dark: var(--ag-green-900);
  --primary-light:var(--ag-green-600);

  --text:         var(--ag-ink);
  --text-mid:     var(--ag-ink-mid);
  --text-light:   var(--ag-ink-light);

  --bg:           var(--ag-warm-white);
  --bg-warm:      var(--ag-parchment);
  --bg-dark:      var(--ag-night);
  --bg-card:      var(--ag-white);

  /* Safety semantics — kept raw */
  --safe:   #28A745;
  --mixed:  #6C757D;
  --medium: #FFC107;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container         { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.container--narrow { max-width: 780px;  margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ============================================================
   SECTION PRIMITIVES
   ============================================================ */
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
}
.sec-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--ag-gold-500); border-radius: 2px; }
.sec-title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; line-height: 1.1; color: var(--text); margin-bottom: 16px; letter-spacing: -.02em; }
.sec-title em { font-style: italic; color: var(--ag-terra-500); }
.sec-desc  { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; line-height: 1.75; }

/* Shared buttons */
.btn         { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: var(--radius-full); font-family: var(--font-body); font-size: .88rem; font-weight: 700; cursor: pointer; border: none; transition: all .3s var(--ease-out); white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 24px rgba(26,58,43,.20); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--primary); border: 2px solid rgba(26,58,43,.25); }
.btn-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

/* Scroll reveal */
.rv     { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.rv.vis { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO — full-bleed dark with image + stats
   ============================================================ */
.swe-hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: flex-end; overflow: hidden;
  background: var(--bg-dark);
}
.swe-hero-bg { position: absolute; inset: 0; z-index: 1; }
.swe-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; animation: swe-ken 18s ease-in-out infinite alternate; }
@keyframes swe-ken {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.09) translate(-.5%, -.5%); }
}
.swe-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg,
    rgba(12,10,9,.20)  0%,
    rgba(12,10,9,.35)  45%,
    rgba(12,10,9,.90)  100%
  );
}
.swe-hero-content { position: relative; z-index: 3; width: 100%; padding: 0 0 80px; }

/* Eyebrow in hero context */
.swe-hero .sec-eyebrow {
  color: var(--ag-gold-500);
  animation: swe-up .7s var(--ease-out) .05s both;
}
.swe-hero .sec-eyebrow::before { background: var(--ag-gold-500); }

@keyframes swe-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.swe-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 400;
  line-height: 1.05; color: #fff; letter-spacing: -.03em;
  margin-bottom: 20px; max-width: 800px;
  animation: swe-up .8s var(--ease-out) .10s both;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.swe-hero-h1 em { font-style: italic; color: var(--ag-gold-500); }

.swe-hero-sub {
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.78); line-height: 1.75;
  max-width: 580px; margin-bottom: 40px;
  animation: swe-up .8s var(--ease-out) .15s both;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.swe-hero-stats {
  display: flex; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap;
  animation: swe-up .8s var(--ease-out) .22s both;
}
.swe-stat       { display: flex; flex-direction: column; gap: 4px; }
.swe-stat-num   { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: #fff; line-height: 1; }
.swe-stat-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* ============================================================
   INTRO STRIP — 2-column
   ============================================================ */
.swe-intro { background: var(--bg-card); padding: 96px 0; }
.swe-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.swe-intro-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; line-height: 1.2; color: var(--text); margin-bottom: 24px; }
.swe-intro-text p  { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.swe-intro-text p:last-child { margin-bottom: 0; }

.swe-highlights { background: var(--bg-warm); border-radius: var(--radius-xl); padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.swe-highlight  {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 22px 24px; border: 1px solid var(--border);
  transition: box-shadow .3s ease, transform .3s ease;
}
.swe-highlight:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.swe-highlight h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.swe-highlight p  { font-size: .85rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ============================================================
   CONTINENTS GRID
   ============================================================ */
.swe-continents { background: var(--bg-warm); padding: 96px 0 120px; }
.swe-continents-header { text-align: center; margin-bottom: 72px; }
.swe-continents-header .sec-desc { margin: 0 auto; }

.swe-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.swe-card {
  background: var(--bg-card); border-radius: var(--radius-xl); overflow: hidden;
  border: 1.5px solid var(--border); display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .4s var(--ease-out), box-shadow .4s ease, border-color .3s;
}
.swe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--ag-green-100); }

/* Stagger odd cards down for editorial feel */
.swe-card:nth-child(odd) { margin-top: 28px; }

/* Card image */
.swe-card-img    { position: relative; height: 200px; overflow: hidden; }
.swe-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.88); transition: transform .6s var(--ease-out); }
.swe-card:hover .swe-card-img img { transform: scale(1.06); }
.swe-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(12,10,9,.68) 100%); }

/* Safety badge */
.swe-safety {
  position: absolute; top: 14px; right: 14px;
  padding: 5px 12px; border-radius: var(--radius-full);
  font-size: .68rem; font-weight: 700; color: #fff;
  backdrop-filter: blur(10px);
}
.swe-safety--high   { background: rgba(40,167,69,.85); }
.swe-safety--medium { background: rgba(255,193,7,.85); color: #1a1008; }
.swe-safety--mixed  { background: rgba(108,117,125,.85); }

/* Card body */
.swe-card-body    { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.swe-card-name    { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
.swe-card-tagline { font-size: .9rem; color: var(--text-mid); line-height: 1.6; flex: 1; margin-bottom: 20px; }

.swe-card-meta    { display: flex; gap: 20px; margin-bottom: 20px; font-size: .82rem; color: var(--text-light); font-weight: 600; }
.swe-card-meta span { display: flex; align-items: center; gap: 5px; }

.swe-card-link    { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 800; color: var(--primary); transition: gap .25s var(--ease-out); }
.swe-card:hover .swe-card-link { gap: 10px; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.swe-features { background: var(--bg-card); padding: 96px 0; }
.swe-features-header { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.swe-features-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--text); margin-bottom: 16px; }
.swe-features-header p  { font-size: 1rem; color: var(--text-mid); line-height: 1.75; }

.swe-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }

.swe-feature-card {
  background: var(--bg-warm); border-radius: var(--radius-lg);
  padding: 36px 32px; border: 1.5px solid var(--border);
  transition: border-color .3s, transform .3s ease, box-shadow .3s;
}
.swe-feature-card:hover { border-color: var(--ag-green-100); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.swe-feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--ag-green-800), var(--ag-green-600));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; margin-bottom: 20px;
}
.swe-feature-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--text); margin-bottom: 12px; }
.swe-feature-desc  { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   CTA BAND
   ============================================================ */
.swe-cta {
  background: linear-gradient(135deg, var(--ag-green-800) 0%, var(--ag-green-900) 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.swe-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.swe-cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.swe-cta h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: #fff; margin-bottom: 16px; letter-spacing: -.02em; }
.swe-cta p  { font-size: 1.05rem; color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 40px; }
.swe-cta .btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--primary);
  padding: 18px 40px; border-radius: var(--radius-xl);
  font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: all .3s var(--ease-out);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}
.swe-cta .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.22); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .swe-intro-grid   { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .swe-hero         { min-height: 80vh; }
  .swe-hero-content { padding: 0 0 60px; }
  .swe-grid         { grid-template-columns: 1fr; gap: 20px; }
  .swe-card:nth-child(odd) { margin-top: 0; }
  .swe-features-grid { grid-template-columns: 1fr; }
  .swe-intro        { padding: 64px 0; }
  .swe-continents   { padding: 64px 0 80px; }
}
@media (max-width: 480px) {
  .swe-hero-stats { gap: 24px; }
  .swe-cta        { padding: 72px 0; }
}