/* ============================================================
   ABOUT PAGE — Chef, Artyom #95, values, timeline, press
   ============================================================ */

.about-hero {
  background:
    radial-gradient(ellipse 55% 45% at 25% 55%, rgba(92, 26, 42, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 75% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
    var(--bg-deep);
}

/* ============================================================
   CHEF SECTION
   ============================================================ */
.chef-section {
  padding: var(--section-pad) 0;
  position: relative;
}
.chef-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}
.chef-portrait {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background:
    radial-gradient(ellipse 60% 40% at 55% 35%, #5c1a2a 0%, #2a0812 40%, #0d0508 80%),
    #0d0508;
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: sticky;
  top: 100px;
}
.chef-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(240, 200, 140, 0.22) 0%, transparent 28%),
    radial-gradient(ellipse 70% 50% at 50% 45%, rgba(139, 42, 64, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 50% 85%, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}
.chef-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(13, 5, 8, 0.7) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.chef-portrait .portrait-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  color: var(--cream);
}
.chef-portrait .portrait-label .name {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}
.chef-portrait .portrait-label .role {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.chef-bio {
  padding-top: 20px;
}
.chef-bio h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.chef-bio h2 em {
  font-style: italic;
  color: var(--gold);
}
.chef-bio p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.chef-bio p.lead {
  font-size: 18px;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.7;
}
.chef-bio p strong {
  color: var(--cream);
  font-weight: 500;
}
.chef-pullquote {
  margin: 48px 0 8px;
  padding: 36px 0 36px 36px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  color: var(--cream);
}
.chef-pullquote .attribution {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.chef-techniques {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.technique {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.technique .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.technique .value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  line-height: 1.1;
}

/* ============================================================
   HOCKEY SECTION — Artyom Galimov #95
   ============================================================ */
.hockey-section {
  padding: var(--section-pad) 0;
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #0d0508 0%, #140609 50%, #0d0508 100%);
  overflow: hidden;
}
.hockey-section::before {
  content: '95';
  position: absolute;
  right: -6vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(320px, 42vw, 720px);
  font-weight: 700;
  font-style: italic;
  line-height: 0.8;
  color: rgba(212, 175, 55, 0.06);
  letter-spacing: -0.06em;
  pointer-events: none;
  z-index: 0;
  text-shadow: 0 0 80px rgba(212, 175, 55, 0.1);
}
.hockey-inner {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hockey-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  background:
    radial-gradient(ellipse at 35% 50%, rgba(212, 175, 55, 0.2), transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(92, 26, 42, 0.55), transparent 50%),
    linear-gradient(160deg, #1f0d13 0%, #0d0508 85%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  overflow: hidden;
}
.hockey-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.jersey-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  line-height: 0.8;
  color: var(--gold);
  font-size: clamp(160px, 22vw, 300px);
  letter-spacing: -0.04em;
  text-align: center;
  margin: 0;
  text-shadow:
    0 0 40px rgba(212, 175, 55, 0.5),
    0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
}
.jersey-number .hash {
  font-size: 0.4em;
  vertical-align: top;
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  transform: translateY(0.4em);
  margin-right: -0.05em;
  color: var(--cream-muted);
}
.hockey-visual .team-crest {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
}
.hockey-visual .team-crest::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hockey-visual .position-label {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}
.hockey-visual .position-label .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hockey-visual .position-label .label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hockey-visual .position-label .value {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
}

.hockey-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hockey-content h2 em {
  font-style: italic;
  color: var(--gold);
}
.hockey-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.hockey-content p strong {
  color: var(--cream);
  font-weight: 500;
}
.hockey-quote {
  margin-top: 36px;
  padding: 28px 0 28px 32px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--cream);
}
.hockey-quote .attribution {
  display: block;
  margin-top: 18px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   VALUES GRID
   ============================================================ */
.values-section {
  padding: var(--section-pad) 0;
}
.values-inner {
  width: var(--container);
  margin: 0 auto;
}
.values-head {
  text-align: center;
  margin-bottom: 64px;
}
.values-head .section-label {
  justify-content: center;
}
.values-head .section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 40px 32px;
  background: linear-gradient(180deg, rgba(26, 10, 15, 0.6), rgba(13, 5, 8, 0.4));
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.6s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
}
.value-card:hover::before { width: 100%; }
.value-card .value-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.value-card h3 em {
  font-style: italic;
  color: var(--gold);
}
.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section {
  padding: var(--section-pad) 0;
  position: relative;
  background:
    linear-gradient(180deg, transparent 0%, rgba(58, 14, 27, 0.3) 50%, transparent 100%),
    var(--bg-deep);
}
.timeline-inner {
  width: var(--container);
  margin: 0 auto;
}
.timeline-head {
  text-align: center;
  margin-bottom: 80px;
}
.timeline-head .section-label {
  justify-content: center;
}
.timeline-head .section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 80px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 10%, var(--gold) 90%, transparent 100%);
  opacity: 0.4;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding-bottom: 48px;
  align-items: start;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 74px;
  top: 14px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
  z-index: 1;
}
.timeline-item.current::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.5);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  text-align: right;
  padding-right: 8px;
}
.timeline-item.current .timeline-year {
  color: var(--gold-light);
}
.timeline-body {
  padding: 4px 0 0 28px;
}
.timeline-body h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.timeline-body h4 em {
  font-style: italic;
  color: var(--gold);
}
.timeline-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PRESS MENTIONS
   ============================================================ */
.press-section {
  padding: var(--section-pad) 0;
}
.press-inner {
  width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.press-head {
  margin-bottom: 56px;
}
.press-head .section-label {
  justify-content: center;
}
.press-head .section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.press-mentions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.press-card {
  padding: 32px 24px;
  background: rgba(26, 10, 15, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.press-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}
.press-card .logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.press-card .logo em {
  font-style: italic;
  color: var(--gold);
}
.press-card .detail {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}
.press-card .rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--cream);
}
.press-card .rating .stars {
  color: var(--gold);
  letter-spacing: 1px;
}
.press-card .rating .num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
}

/* ============================================================
   CTA BOTTOM
   ============================================================ */
.about-cta {
  padding: var(--section-pad) 0;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(92, 26, 42, 0.3) 0%, transparent 70%),
    var(--bg-deep);
  text-align: center;
}
.about-cta-inner {
  width: var(--container);
  max-width: 720px;
  margin: 0 auto;
}
.about-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-cta h2 em {
  font-style: italic;
  color: var(--gold);
}
.about-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--cream-muted);
  margin-bottom: 40px;
}
.about-cta .btn {
  padding: 20px 44px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .chef-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .chef-portrait {
    position: relative;
    top: 0;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .hockey-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hockey-visual {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .press-mentions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .chef-techniques { grid-template-columns: 1fr; gap: 18px; }
  .chef-pullquote { padding-left: 24px; }
  .values-grid { grid-template-columns: 1fr; }

  .timeline::before { left: 8px; }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 36px;
    padding-bottom: 36px;
  }
  .timeline-item::before {
    left: 1px;
    top: 8px;
  }
  .timeline-year {
    text-align: left;
    padding-right: 0;
    font-size: 30px;
  }
  .timeline-body { padding-left: 0; }

  .hockey-section::before { font-size: 60vw; right: -20vw; }
  .hockey-visual { padding: 28px; }
  .press-mentions { grid-template-columns: 1fr; }
}
