/*!
 * ZZZ Fitness Club — About Page Stylesheet
 *
 * Page-template-specific styles for template-about.php.
 * Depends on assets/css/main.css being loaded first.
 *
 * Sections:
 *   1.  Page Hero
 *   2.  Our Story — Image Collage
 *   3.  Mission · Vision · Values
 *   4.  Why ZZZ — Feature Grid
 *   5.  Our Approach — Method Strip
 *   6.  Our Journey — Timeline Milestones
 *   7.  Visit Us — Contact Highlight Block
 *   8.  Founder Quote Block
 *   9.  Section Head Center Utility
 *
 * @package ZZZ_Fitness_Theme
 * @version 1.0.0
 */

/* ============================================================================
   1. PAGE HERO
   Full-bleed background image + brand-tinted overlay.
   ============================================================================ */

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 0 100px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

/* Hero photograph + brand-tinted overlay stack */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg,
      rgba(26, 26, 26, 0.95) 0%,
      rgba(26, 26, 26, 0.78) 38%,
      rgba(26, 26, 26, 0.55) 75%,
      rgba(26, 26, 26, 0.45) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

/* Brand-red + orange glow accents */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(211, 47, 47, 0.20) 0%, transparent 40%),
    radial-gradient(circle at 12% 88%, rgba(245, 124, 0, 0.10) 0%, transparent 45%);
  z-index: -1;
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }

/* Breadcrumb inside the hero */
.page-hero .bc-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.page-hero .bc-list a            { color: var(--muted); transition: color .3s var(--ease); }
.page-hero .bc-list a:hover      { color: var(--accent); }
.page-hero .bc-list .sep         { color: rgba(255,255,255,0.25); }
.page-hero .bc-list .current     { color: var(--text); }

.page-hero .section-title {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  max-width: 900px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.page-hero .section-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  max-width: 660px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
}

/* CTA row */
.page-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 100%;
}
.page-hero-ctas .btn { white-space: nowrap; }

/* Ghost CTA variant for hero */
.btn-ghost {
  background: rgba(0,0,0,0.4);
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(211,47,47,0.12);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.4);
}

/* Tablet */
@media (max-width: 760px) {
  .page-hero-ctas { width: 100%; gap: 12px; }
  .page-hero-ctas .btn { flex: 1 1 0; min-width: 0; justify-content: center; padding: 15px 18px; font-size: 13px; letter-spacing: 0.06em; }
}
/* Phone */
@media (max-width: 600px) {
  .page-hero { padding: 70px 0 60px; }
  .page-hero-ctas { gap: 10px; width: 100%; }
  .page-hero-ctas .btn { flex: 1 1 0; width: 0; min-width: 0; max-width: 100%; padding: 14px 10px; font-size: 12.5px; letter-spacing: 0.04em; gap: 6px; overflow: hidden; text-overflow: ellipsis; }
}
/* Small phone */
@media (max-width: 420px) {
  .page-hero-ctas { flex-direction: column; gap: 12px; }
  .page-hero-ctas .btn { flex: 0 0 auto; width: 100%; padding: 15px 18px; font-size: 13.5px; letter-spacing: 0.06em; }
}


/* ============================================================================
   2. OUR STORY — IMAGE COLLAGE
   ============================================================================ */

.story-collage-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(211,47,47,0.10), transparent 34%),
    radial-gradient(circle at 90% 70%, rgba(245,124,0,0.07), transparent 36%),
    var(--bg);
  overflow: hidden;
}

.story-collage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .story-collage-grid { grid-template-columns: 0.95fr 1.05fr; gap: 80px; }
}

/* Left media collage */
.story-collage-media {
  position: relative;
  min-height: 540px;
}

/* Main (large) image — left column, offset down */
.story-main-img {
  position: absolute;
  left: 0; top: 34px;
  width: 72%; height: 430px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 90px rgba(0,0,0,0.55);
}
.story-main-img::after,
.story-small-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.58));
  pointer-events: none;
}
.story-main-img img,
.story-small-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease), filter .75s var(--ease);
}
.story-collage-media:hover img { transform: scale(1.05); }

/* Small images — right column */
.story-small-img {
  position: absolute;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 70px rgba(0,0,0,0.45);
}
.story-small-1 { right: 0; top: 0; width: 44%; height: 220px; }
.story-small-2 { right: 28px; bottom: 26px; width: 38%; height: 190px; }

/* Rotated year badge */
.story-badge {
  position: absolute;
  top: 16px; left: 34px;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  transform: rotate(-4deg);
  box-shadow: 0 16px 40px rgba(211,47,47,0.35);
  z-index: 4;
}
.story-badge strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}
.story-badge span {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Glassmorphism rating card */
.story-floating-stat {
  position: absolute;
  left: 30px; bottom: 44px;
  z-index: 5;
  background: rgba(42,42,42,0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.38);
}
.story-floating-stat strong { display: block; font-family: 'Anton', sans-serif; color: var(--accent); font-size: 28px; line-height: 1; }
.story-floating-stat span   { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 6px; }

/* Right copy */
.story-collage-copy p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 18px; }

/* Stats band */
.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.story-stat {
  padding: 18px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.story-stat:hover { transform: translateY(-5px); border-color: rgba(211,47,47,0.6); background: rgba(211,47,47,0.08); }
.story-stat b     { display: block; font-family: 'Anton', sans-serif; font-size: clamp(28px, 3.4vw, 42px); color: var(--accent); line-height: 1; }
.story-stat span  { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; margin-top: 8px; }

/* Founder quote block */
.story-quote {
  margin-top: 76px;
  padding: 42px 46px;
  background: linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 4px solid var(--accent);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.story-quote::before {
  content: '\201C';
  position: absolute;
  top: -28px; left: 24px;
  font-family: 'Anton', sans-serif;
  font-size: 130px;
  color: var(--accent);
  opacity: 0.16;
  line-height: 1;
}
.story-quote blockquote {
  position: relative; z-index: 2;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 18px;
}
.story-quote-author { position: relative; z-index: 2; color: var(--muted); font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; }
.story-quote-author b { color: var(--text); }

/* ── Mobile collage: grid-area layout so absolute children don't collapse ── */
@media (max-width: 760px) {
  .story-collage-section { padding: 60px 0 !important; }
  .story-collage-grid    { gap: 36px !important; }

  .story-collage-media {
    position: static !important; min-height: auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas: "badge badge" "main  main" "stat  stat" "s1    s2" !important;
    gap: 14px !important;
    align-items: stretch !important;
  }

  .story-main-img,
  .story-small-img {
    position: relative !important; left: auto !important; right: auto !important;
    top: auto !important; bottom: auto !important;
    width: 100% !important; height: auto !important;
    display: block !important; overflow: hidden !important;
  }
  .story-main-img  { grid-area: main !important; aspect-ratio: 16/10 !important; min-height: 220px !important; border-radius: 18px !important; }
  .story-small-img { aspect-ratio: 1/1 !important; min-height: 140px !important; border-radius: 14px !important; }
  .story-small-1   { grid-area: s1 !important; }
  .story-small-2   { grid-area: s2 !important; }
  .story-main-img > img,
  .story-small-img > img { width: 100% !important; height: 100% !important; min-height: inherit !important; object-fit: cover !important; }

  .story-badge {
    position: static !important; grid-area: badge !important;
    transform: none !important; align-self: start !important; justify-self: start !important;
    padding: 10px 16px !important; border-radius: 12px !important; display: inline-block !important;
  }
  .story-badge strong { font-size: 16px !important; }
  .story-badge span   { font-size: 9px !important; margin-top: 4px !important; }

  .story-floating-stat {
    position: static !important; grid-area: stat !important;
    align-self: stretch !important; justify-self: stretch !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    gap: 12px !important; padding: 12px 16px !important; border-radius: 14px !important;
  }
  .story-floating-stat strong { font-size: 22px !important; display: inline-block !important; }
  .story-floating-stat span   { font-size: 10px !important; margin-top: 0 !important; display: inline-block !important; }

  .story-stats { display: grid !important; grid-template-columns: repeat(2,1fr) !important; gap: 10px !important; }
  .story-stat  { padding: 14px 8px !important; }
  .story-quote { margin-top: 40px !important; padding: 32px 22px !important; }
  .story-quote::before { font-size: 90px; top: -20px; left: 16px; }
}
@media (max-width: 460px) {
  .story-collage-section { padding: 48px 0 !important; }
  .story-main-img  { min-height: 180px !important; aspect-ratio: 4/3 !important; border-radius: 14px !important; }
  .story-small-img { min-height: 110px !important; border-radius: 12px !important; }
  .story-badge { padding: 8px 14px !important; }
  .story-badge strong { font-size: 14px !important; }
  .story-floating-stat strong { font-size: 20px !important; }
}


/* ============================================================================
   3. MISSION · VISION · VALUES
   ============================================================================ */

.mvv-section {
  padding: 76px 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(211,47,47,0.075), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(245,124,0,0.045), transparent 34%),
    var(--bg);
  border-top:    1px solid rgba(255,255,255,0.045);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.mvv-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .mvv-head { grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr); gap: 56px; margin-bottom: 34px; }
  .mvv-intro { justify-self: end; }
}
.mvv-head .section-label { margin-bottom: 14px; }
.mvv-head .section-title { font-size: clamp(36px, 5.2vw, 66px); margin-bottom: 0; }
.mvv-intro { color: var(--text-body); font-size: 15.5px; line-height: 1.7; max-width: 560px; margin: 0; }

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 780px) { .mvv-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.mvv-card {
  position: relative;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.048), rgba(255,255,255,0.022));
  border: 1px solid rgba(255,255,255,0.085);
  border-radius: 18px;
  padding: 22px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
/* Red left-edge accent stripe */
.mvv-card::before {
  content: '';
  position: absolute; inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-hover));
  opacity: .9;
}
/* Corner glow on hover */
.mvv-card::after {
  content: '';
  position: absolute; right: -54px; top: -54px;
  width: 126px; height: 126px;
  border-radius: 50%;
  background: rgba(211,47,47,0.10);
  filter: blur(8px);
  opacity: 0;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mvv-card:hover { transform: translateY(-4px); border-color: rgba(211,47,47,0.48); background: linear-gradient(180deg, rgba(211,47,47,0.085), rgba(255,255,255,0.026)); box-shadow: 0 18px 46px rgba(0,0,0,0.32); }
.mvv-card:hover::after { opacity: 1; transform: scale(1.08); }

.mvv-card-top {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-bottom: 16px;
}
.mvv-card-top span { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }

.mvv-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(211,47,47,0.12); border: 1px solid rgba(211,47,47,0.22); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.mvv-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.mvv-card h3 { position: relative; z-index: 1; font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(20px, 2vw, 26px); line-height: 1.08; letter-spacing: -0.025em; color: var(--text); margin: 0 0 10px; }
.mvv-card p  { position: relative; z-index: 1; color: var(--text-body); font-size: 14px; line-height: 1.65; margin: 0; }

/* Values pill list */
.mvv-values { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 14px 0 0; }
.mvv-values li {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.075);
  color: rgba(255,255,255,0.82);
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; line-height: 1;
}
.mvv-values li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px rgba(211,47,47,0.8); }

@media (max-width: 600px) { .mvv-section { padding: 58px 0; } .mvv-card { padding: 20px; } .mvv-card-top { margin-bottom: 14px; } }


/* ============================================================================
   4. WHY ZZZ — FEATURE GRID
   ============================================================================ */

.why-section { padding: 90px 0; background: var(--bg-2); }

.why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
@media (min-width: 700px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
  display: flex; flex-direction: column; gap: 16px;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--color-brand-orange); }

.why-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-2); color: var(--color-brand-orange); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-ic svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.why-card h3 { font-family: 'Archivo', sans-serif; font-size: 20px; font-weight: 800; color: var(--text); line-height: 1.25; }
.why-card p  { color: var(--text-body); font-size: 14.5px; line-height: 1.65; }


/* ============================================================================
   5. OUR APPROACH — METHOD STRIP (5 numbered steps)
   ============================================================================ */

.approach-section { padding: 90px 0; background: var(--bg-2); }

.approach-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px; margin-top: 48px;
  counter-reset: ap;
}
@media (min-width: 700px)  { .approach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .approach-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; } }

.ap-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
  counter-increment: ap;
}
.ap-step:hover { transform: translateY(-4px); border-color: var(--accent); }
/* Auto-numbered step marker */
.ap-step::before {
  content: counter(ap, decimal-leading-zero);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--color-brand-orange);
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: 14px;
}
.ap-step h4 { font-family: 'Archivo', sans-serif; font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.02em; }
.ap-step p  { color: var(--text-body); font-size: 14px; line-height: 1.6; }


/* ============================================================================
   6. OUR JOURNEY — COMPACT TIMELINE MILESTONES
   ============================================================================ */

.timeline-section {
  padding: 78px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(211,47,47,0.08), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(245,124,0,0.055), transparent 34%),
    var(--bg);
  border-top:    1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.journey-head {
  display: grid; grid-template-columns: 1fr;
  gap: 18px; align-items: end;
  margin-bottom: 36px;
}
.journey-head .section-label { margin-bottom: 16px; }
.journey-head .section-title { margin-bottom: 0; max-width: 760px; font-size: clamp(38px, 5.4vw, 70px); }
.journey-intro { color: var(--text-body); font-size: 15.5px; line-height: 1.7; max-width: 480px; }

@media (min-width: 920px) {
  .journey-head { grid-template-columns: 1fr 0.62fr; gap: 46px; margin-bottom: 42px; }
  .journey-intro { justify-self: end; }
}

.journey-track {
  position: relative;
  display: grid; grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 680px)  { .journey-track { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1100px) {
  .journey-track { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
  /* Horizontal connecting line on wide screens */
  .journey-track::before {
    content: '';
    position: absolute;
    left: 7%; right: 7%; top: 33px;
    height: 1px;
    background: linear-gradient(90deg,
      rgba(211,47,47,0.05), rgba(211,47,47,0.65),
      rgba(245,124,0,0.55), rgba(255,255,255,0.06));
    z-index: 0;
  }
}

.journey-card {
  position: relative; z-index: 1;
  min-height: 204px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px 18px 19px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease);
}
/* Top gradient bar on hover */
.journey-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--color-brand-orange));
  opacity: 0; transition: opacity .35s var(--ease);
}
/* Corner glow */
.journey-card::after {
  content: ''; position: absolute; width: 100px; height: 100px; right: -58px; bottom: -58px;
  border-radius: 50%; background: rgba(211,47,47,0.12); filter: blur(8px);
  opacity: 0; transition: opacity .35s var(--ease), transform .45s var(--ease);
}
.journey-card:hover { transform: translateY(-5px); border-color: rgba(211,47,47,0.48); background: linear-gradient(180deg, rgba(211,47,47,0.085), rgba(255,255,255,0.026)); box-shadow: 0 18px 42px rgba(0,0,0,0.42); }
.journey-card:hover::before,
.journey-card:hover::after { opacity: 1; }
.journey-card:hover::after  { transform: scale(1.15); }

/* Year pill */
.journey-year {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 74px; height: 34px; padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid rgba(211,47,47,0.42);
  color: var(--accent);
  box-shadow: 0 0 0 5px rgba(211,47,47,0.075);
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.04em; line-height: 1;
}

.journey-card h3 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 16px; line-height: 1.25; letter-spacing: -0.01em; color: var(--text); margin: 0 0 10px; }
.journey-card p  { color: var(--text-body); font-size: 13.5px; line-height: 1.62; margin: 0; }

/* Mobile: horizontal card layout */
@media (max-width: 679px) {
  .timeline-section { padding: 64px 0; }
  .journey-head     { margin-bottom: 28px; }
  .journey-card {
    min-height: auto;
    display: grid; grid-template-columns: 86px 1fr; gap: 15px; align-items: start;
    padding: 18px;
  }
  .journey-year { margin-bottom: 0; }
}


/* ============================================================================
   7. VISIT US — CONTACT HIGHLIGHT BLOCK
   ============================================================================ */

.visit-section { padding: 90px 0; background: var(--bg); }

.visit-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 28px; margin-top: 44px;
}
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: stretch; } }

.visit-cards { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .visit-cards { grid-template-columns: repeat(2, 1fr); } }

.visit-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
  text-decoration: none;
  color: inherit;
}
.visit-card:hover { transform: translateY(-3px); border-color: var(--accent); }

.visit-card .vc-ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: rgba(211,47,47,0.12); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.visit-card .vc-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.visit-card b { display: block; font-family: 'Space Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 6px; font-weight: 400; }
.visit-card span, .visit-card a.vc-val { color: var(--text); font-size: 16px; font-weight: 700; line-height: 1.4; word-break: break-word; }
.visit-card a.vc-val { transition: color .3s var(--ease); }
.visit-card a.vc-val:hover { color: var(--accent); }
.visit-card small { display: block; color: var(--text-body); font-size: 13px; font-weight: 400; margin-top: 4px; line-height: 1.5; }

/* Embedded map */
.visit-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 360px; background: var(--surface); }
.visit-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: invert(0.92) hue-rotate(180deg) saturate(0.4); }


/* ============================================================================
   8. FOUNDER QUOTE (standalone block variant — used on older layouts)
   ============================================================================ */

.founder-quote {
  margin-top: 70px;
  padding: 48px 32px;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 4px var(--radius) var(--radius) 4px;
  position: relative;
}
.founder-quote::before {
  content: '\201C';
  position: absolute; top: -10px; left: 22px;
  font-family: 'Anton', serif; font-size: 90px;
  color: var(--accent); line-height: 1; opacity: 0.4;
}
.founder-quote blockquote { font-family: 'Archivo', sans-serif; font-size: clamp(18px, 2vw, 22px); line-height: 1.5; color: var(--text); font-weight: 500; margin: 0 0 18px; padding-left: 22px; }
.founder-quote .fq-attrib { padding-left: 22px; color: var(--text-body); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.founder-quote .fq-attrib b { color: var(--text); font-weight: 800; }


/* ============================================================================
   9. SECTION HEAD CENTER UTILITY
   ============================================================================ */

.section-head.center { text-align: center; }
.section-head.center .section-label { justify-content: center; }
.section-head.center .section-title  { text-align: center; }
.section-head.center p {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

/* ── Global mobile tightening ── */
@media (max-width: 700px) {
  .mvv-section, .why-section, .timeline-section,
  .approach-section, .visit-section { padding: 64px 0; }
  .page-hero  { padding: 80px 0 70px; }
  .founder-quote { padding: 36px 22px; margin-top: 50px; }
}
