@charset "UTF-8";

/* =========================================================
   [donkwkm_top] — home hero.
   Large right-weighted photo with a soft gradient fade on the
   left edge. Text block + next live live in the black left
   column so they never overlap the visible photo.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap');

/* --- Hero shell --- */
.tk-hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

/* --- Photo: absolute right side, covers right ~72% of viewport.
       Left edge bleeds into pure black via gradient so there's
       no hard border against the text column. --- */
.tk-hero-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72%;
  z-index: 0;
}
.tk-hero-photo-wrap {
  position: absolute;
  inset: 0;
}
.tk-hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 22%;
  opacity: 1;
  filter: none;
}
.tk-hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #000 0%,
    rgba(0,0,0,0.97) 8%,
    rgba(0,0,0,0.75) 18%,
    rgba(0,0,0,0.3) 34%,
    rgba(0,0,0,0.05) 50%,
    transparent 62%
  );
  pointer-events: none;
}

/* --- Text column: left 34% of viewport, vertically centered --- */
.tk-hero-left {
  position: relative;
  z-index: 2;
  width: 34%;
  max-width: 520px;
  min-height: 100vh;
  padding: clamp(120px, 15vh, 170px) clamp(20px, 3vw, 40px) clamp(56px, 9vh, 110px) clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.tk-hero-label {
  font-size: clamp(0.7rem, 0.9vw, 0.84rem);
  letter-spacing: 0.38em;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 22px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.tk-hero-name {
  position: relative;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 0.93;
  margin: 0 0 26px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.tk-hero-name .tk-firstname {
  display: block;
  font-size: 0.24em;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
}
/* DON: brush-stroke middlename sitting inline, just before
   KAWAKAMI on the same line. Inline-block so it flows with the
   text instead of overhanging the h1 box. */
.tk-hero-name .tk-don {
  display: inline-block;
  vertical-align: baseline;
  font-family: 'Rock Salt', 'Caveat Brush', cursive;
  font-size: 0.42em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 14px 0 0;
  padding: 0;
  white-space: nowrap;
  transform: rotate(-6deg) translateY(-4px);
  transform-origin: center;
  text-shadow:
    0 2px 18px rgba(255,255,255,0.22),
    0 0 2px rgba(255,255,255,0.3);
  /* Dry-brush edge roughness via SVG turbulence filter,
     plus a soft drop-shadow for ink depth. */
  filter: url(#tk-brush-filter) drop-shadow(0 1px 0 rgba(0,0,0,0.4));
  text-transform: uppercase;
  pointer-events: none;
}

.tk-hero-desc {
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0 0 32px;
  font-weight: 300;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* --- Next live: stacked inside the left column, small and quiet --- */
.tk-next-live {
  margin: 0 0 32px;
  padding: 0;
  border: none;
  background: transparent;
}
.tk-next-live-label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin: 0 0 6px;
  font-weight: 500;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.tk-next-live-date {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
  letter-spacing: 0.01em;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.tk-next-live-venue {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* --- One CTA, Apple-style chevron link --- */
.tk-hero-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 0;
}
.tk-hero-link {
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  color: #4da3ff;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  border: none;
  padding: 0;
  transition: opacity 0.2s;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.tk-hero-link.primary::after {
  content: ' \203A';
  display: inline-block;
  margin-left: 3px;
  transition: transform 0.2s;
}
.tk-hero-link.primary:hover {
  color: #4da3ff;
  opacity: 0.8;
  border: none;
}
.tk-hero-link.primary:hover::after { transform: translateX(3px); }
.tk-hero-link.secondary { display: none; }

/* --- SNS bottom-right --- */
.tk-sns {
  position: fixed;
  bottom: 28px;
  right: 36px;
  z-index: 50;
  display: flex;
  gap: 20px;
}
.tk-sns a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tk-sns a:hover { color: #fff; }
.tk-sns svg {
  width: 15px;
  height: 15px;
  fill: #ff3b30;
  flex-shrink: 0;
}

/* --- Tablet (under 1100px): widen text column to 42% --- */
@media (max-width: 1100px) {
  .tk-hero-right { width: 68%; }
  .tk-hero-left { width: 42%; }
}

/* --- Mobile: stack. Photo becomes full-bleed background,
       text sits on top of darker overlay at bottom --- */
@media (max-width: 768px) {
  .tk-hero {
    min-height: 100vh;
  }
  .tk-hero-right {
    width: 100%;
    height: 100%;
  }
  .tk-hero-photo-wrap img {
    object-position: center 18%;
  }
  .tk-hero-right::after {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0) 15%,
      rgba(0,0,0,0) 35%,
      rgba(0,0,0,0.6) 65%,
      rgba(0,0,0,0.92) 100%
    );
  }
  .tk-hero-left {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 0 clamp(20px, 6vw, 28px) clamp(70px, 14vh, 120px);
    justify-content: flex-end;
  }
  .tk-hero-label {
    font-size: 0.66rem;
    letter-spacing: 0.34em;
    margin-bottom: 16px;
  }
  .tk-hero-name {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
    line-height: 0.92;
    margin-bottom: 20px;
  }
  .tk-hero-name .tk-firstname {
    font-size: 0.28em;
    margin-bottom: 8px;
  }
  .tk-hero-name .tk-don {
    font-size: 0.38em;
    margin: 0 10px 0 0;
    transform: rotate(-6deg) translateY(-3px);
  }
  .tk-hero-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 460px;
  }
  .tk-next-live { margin-bottom: 22px; }
  .tk-next-live-label { font-size: 0.6rem; }
  .tk-next-live-date { font-size: 0.95rem; }
  .tk-next-live-venue { font-size: 0.82rem; }
  .tk-hero-link { font-size: 0.98rem; }

  .tk-sns {
    bottom: 18px;
    right: 20px;
    gap: 14px;
  }
  .tk-sns a { font-size: 0.64rem; }
  .tk-sns svg { width: 13px; height: 13px; }
}
