/* One Life Media — site styles (v2, Cinematic Editorial redesign) */

:root {
  --bg: #0b0b0c;
  --bg-alt: #111113;
  --text: #f4f3f0;
  --muted: #a8a7ac;
  --accent: #fb5b0f;
  --border: rgba(255,255,255,0.1);
  --max: 1200px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }
h1, h2 { line-height: 1.1; margin: 0 0 16px; font-family: var(--font-display); letter-spacing: 0.02em; }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  font-weight: 600;
}

/* Header */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 32px;
}
.brand {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.site-nav a {
  color: var(--text);
  margin-left: 32px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--accent); }

/* Hero */
.hero {
  position: relative;
  height: 92vh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.35) 40%, rgba(11,11,12,0.97) 96%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 96px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: clamp(3.2rem, 10vw, 8.5rem);
  margin: 0;
}
.hero .tagline {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: #d8d7d3;
  max-width: 640px;
  margin: 18px 0 0;
}

/* About */
.about {
  padding: 120px 0;
  background: var(--bg-alt);
}
.about-grid {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.about-heading {
  flex: 0 0 320px;
}
.about-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.about-body {
  flex: 1 1 480px;
  max-width: 720px;
  font-size: 1.15rem;
  color: #cfced0;
  margin: 0;
}

/* Divisions */
.division {
  display: flex;
  min-height: 560px;
}
.division-reverse { flex-direction: row-reverse; }
.division-media {
  flex: 1 1 50%;
  overflow: hidden;
}
.division-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}
.division-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
  background: var(--bg);
}
.division:nth-child(even) .division-text { background: var(--bg-alt); }
.division-text h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.division-text p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 460px;
}
.division-text .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
  margin-top: 8px;
}
.division-text .cta:hover { opacity: 0.75; }

@media (max-width: 860px) {
  .division, .division-reverse { flex-direction: column; }
  .division-media img { min-height: 340px; }
  .division-text { padding: 48px 32px; }
  .about-grid { gap: 32px; }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
}
.footer-links a, .footer-social a {
  color: var(--muted);
  margin-right: 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links a:hover, .footer-social a:hover { color: var(--accent); }
.copyright {
  color: #6f6e73;
  font-size: 0.85rem;
  margin: 0;
  width: 100%;
  text-align: center;
  order: 99;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
