/* ═══════════════════════════════════════
   RK SNAPSHOTS — SHARED STYLES
   ═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #111111;
  --white: #FFFFFF;
  --accent: #2E3192;
  --grey: #F4F4F4;
  --pad: 48px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  overflow-x: hidden;
}

h1, h2, h3, .anton { font-family: 'Anton', sans-serif; font-weight: 400; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--pad);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 201;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── FOOTER ─── */
footer {
  padding: 28px var(--pad);
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-copy {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
}

.foot-nav {
  display: flex;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
}

.foot-nav a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.foot-nav a:hover { color: var(--accent); }

/* ─── SHARED BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 16px 52px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  border: 1px solid var(--black);
}

.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--accent); border-color: var(--accent); }

.btn-outline { background: transparent; color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ─── SHARED CTA ─── */
.collab {
  padding: 130px var(--pad) 110px;
  text-align: center;
}

.collab h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 10vw, 120px);
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 52px;
}

.collab-links {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.collab-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.collab-links a:hover { color: var(--accent); border-color: var(--accent); }

.collab-sub {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 400;
}

.collab-email a {
  font-size: 15px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.collab-email a:hover { color: var(--black); border-color: var(--black); }

/* ─── FADE ANIMATIONS ─── */
.fu {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fu.d1 { transition-delay: 0.1s; }
.fu.d2 { transition-delay: 0.22s; }
.fu.d3 { transition-delay: 0.34s; }
.fu.visible { opacity: 1; transform: none; }

/* ─── PAGE HERO (about/contact) ─── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 340px;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 60px var(--pad);
  margin-top: 61px;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

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

.page-hero-content h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.92;
  color: var(--white);
  text-transform: uppercase;
}

.page-hero-content p {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  border-left: 2px solid rgba(255,255,255,0.3);
  padding-left: 14px;
}

/* ─── ABOUT EMBED ─── */
.about-embed {
  padding: 100px var(--pad);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #eee;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-photo:hover img { transform: scale(1.03); }

.about-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 20px;
}

.about-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.about-bio {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 20px;
  max-width: 440px;
}

.about-location {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 40px;
}

/* ─── BLOG CARDS ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 var(--pad) 80px;
}

.blog-card {
  display: block;
  border-top: 2px solid var(--black);
  padding-top: 0;
  transition: border-color 0.2s;
  overflow: hidden;
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #111;
  margin-bottom: 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body {
  border-top: 2px solid var(--black);
  padding: 24px 0 0;
  transition: border-color 0.2s;
}

.blog-card:hover .blog-card-body { border-color: var(--accent); }

.blog-card-date {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.blog-card:hover h3 { color: var(--accent); }

.blog-card-excerpt {
  font-size: 13px;
  line-height: 1.85;
  color: #666;
  margin-bottom: 20px;
}

.blog-card-read {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}

.blog-card:hover .blog-card-read { color: var(--accent); border-color: var(--accent); }

/* ═══════════════════════════════════════
   MOBILE — max-width: 768px
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --pad: 20px; }

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 199;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  /* Footer */
  footer { flex-direction: column; text-align: center; }
  .foot-nav { justify-content: center; gap: 20px; }

  /* Collab */
  .collab { padding: 80px var(--pad) 70px; }
  .collab-links { gap: 24px; }

  /* Page hero */
  .page-hero { height: 45vh; min-height: 260px; padding: 40px var(--pad); }

  /* About embed */
  .about-embed { padding: 70px var(--pad); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { aspect-ratio: 4/3; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr; gap: 32px; }
}
