/* =================================================================
   Global Narrator — website mockup (designer-wireframe replica)
   Monochrome editorial. Match-target for the Wix build + 7/4 demo.
   Aesthetic lineage: ux-jonny (Swiss monochrome) + high-contrast
   serif display logo. Grayscale, dummy content — fidelity to the
   designer's wireframe, NOT a finished colour design.
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --bg:          #ffffff;
  --band:        #d8d7d3;   /* light grey section bands (hero/reviews/footer) */
  --band-soft:   #e2e1dd;   /* awards box, promo box fill */
  --placeholder: #d1d0cc;   /* image / video placeholders */
  --ink:         #1c1c1a;   /* near-black text */
  --muted:       #6f6e6a;   /* secondary text */
  --faint:       #9a9994;   /* labels, captions */
  --line:        #d0cfca;   /* hairline on white */
  --line-strong: #1c1c1a;   /* divider under section labels */
  --line-band:   #bcbbb6;   /* hairline on grey band */
  --black:       #141413;   /* English pill, submit button, GV footer */

  --serif: 'Playfair Display', 'Noto Sans JP', serif;
  --ui:    'Poppins', 'Noto Sans JP', sans-serif;
  --jp:    'Noto Sans JP', sans-serif;

  --maxw: 1080px;
  --narrow: 680px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--jp);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- Section label (Kelly page: serif caps + divider) ---------- */
.label {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 18px;
  text-transform: uppercase;
}
.label--center { text-align: center; }

/* ---------- Top nav ---------- */
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  z-index: 10;
}
.nav__links {
  display: flex;
  gap: 30px;
  list-style: none;
  font-family: var(--ui);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.14em;
}
.nav__links a { color: var(--ink); transition: opacity .2s; }
.nav__links a:hover { opacity: .55; }
.nav__pill {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: #fff;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 999px;
  padding: 7px 16px;
}
.nav__burger {
  display: none;
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}

/* ---------- HERO (grey band shared with nav) ---------- */
.hero {
  background: var(--band);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: row;   /* side-by-side cluster: keeps the hero short so voice samples stay near first view */
  align-items: center;
  justify-content: center;
  gap: 60px;
  text-align: center;
  padding: 34px 0 40px;
}
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ink);
}
.hero .logo { font-size: 76px; }
.logo__rule {
  width: 210px;
  height: 1px;
  background: var(--ink);
  margin: 16px auto 12px;
}
.hero__role {
  font-family: var(--jp);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--ink);
}
.hero__cta {
  margin-top: 26px;
  display: inline-block;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 40px;
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.22em;
  background: transparent;
  transition: background .25s, color .25s;
}
.hero__cta:hover { background: var(--ink); color: var(--band); }
/* photo grouped with the name as one centered unit (kickoff: 真ん中) */
.hero__photo {
  width: 210px;
  height: 240px;
  background: var(--placeholder);
  flex: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero__photo svg { width: 120px; height: auto; opacity: .42; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- generic section spacing ---------- */
section { padding: 84px 0; }
.section--tight { padding: 64px 0; }

/* ---------- catch copy ---------- */
.catch {
  text-align: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.02em;
  padding: 70px 0 24px;
}

/* ---------- VOICE SAMPLE list ---------- */
/* narrower column, centered as a block (wireframe): player sits near the title,
   and the label aligns with the rows so the section doesn't read off-center */
#voice .label { max-width: 780px; margin-left: auto; margin-right: auto; }
.samples { margin: 30px auto 0; max-width: 780px; }
.sample {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}
.sample:first-child { border-top: 1px solid var(--line); }
.sample__no {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  width: 34px;
  flex: none;
}
.sample__title {
  flex: 1;
  font-size: 15px;
  color: var(--ink);
}
.sample .player { width: 300px; flex: none; }

/* ---------- audio player component ---------- */
.player {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
}
.player__btn {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--ink);
}
.player__btn svg { width: 16px; height: 16px; display: block; }
.player__play svg { width: 14px; height: 14px; }
.player__time {
  font-family: var(--ui);
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.player__track {
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  min-width: 40px;
}
.player__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--ink);
  border-radius: 2px;
}
.player__more { color: var(--faint); }

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  margin-top: 34px;
  align-items: start;
}
.about__logo { font-size: 36px; }
.about__sub {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin: 14px 0 18px;
}
.about__rule { width: 150px; height: 1px; background: var(--ink); margin: 12px 0 0; }
.about__bio { font-size: 13.5px; color: var(--ink); line-height: 2.1; }
.about__portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--placeholder);
}
.about__clients {
  font-size: 12px;
  color: var(--muted);
  line-height: 2;
  margin-top: 16px;
}
.awards {
  grid-column: 1 / 2;
  background: var(--band-soft);
  padding: 24px 30px;
  margin-top: 6px;
}
.awards__row {
  display: flex;
  gap: 22px;
  font-size: 12.5px;
  color: var(--ink);
  padding: 5px 0;
}
.awards__year { font-weight: 500; flex: none; }

/* ---------- WORK ---------- */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}
.work__thumb {
  aspect-ratio: 16 / 10;
  background: var(--placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work__thumb svg { width: 54px; height: 54px; opacity: .5; }
.work__cap { font-size: 12.5px; color: var(--ink); margin-top: 12px; }

/* ---------- REVIEWS (grey band) ---------- */
.reviews { background: var(--band); }
.reviews__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
}
.reviews__arrow {
  background: none;
  border: none;
  font-size: 30px;
  color: var(--muted);
  line-height: 1;
}
.reviews__card {
  background: #fff;
  max-width: 460px;
  padding: 40px 46px;
  text-align: center;
}
.reviews__text { font-size: 13px; color: var(--ink); line-height: 2.1; }
.reviews__by {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}

/* ---------- GLOBAL VOICE promo box ---------- */
.gvpromo {
  display: block;
  border: 1px solid var(--faint);
  background: var(--band-soft);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  transition: background .25s;
}
.gvpromo:hover { background: var(--band); }
.gvpromo .label { display: block; margin-bottom: 18px; }
.gvpromo__copy {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.7;
}

/* ---------- CONTACT form ---------- */
.contact__head { text-align: center; }
.contact__intro {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 18px auto 40px;
  line-height: 2;
}
.form { max-width: 560px; margin: 0 auto; }
.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--jp);
  font-size: 13px;
  color: var(--ink);
  padding: 14px 16px;
  margin-bottom: 16px;
  outline: none;
}
.form input::placeholder,
.form textarea::placeholder { color: var(--faint); }
.form input:focus,
.form textarea:focus { border-color: var(--ink); }
.form textarea { min-height: 150px; resize: vertical; }
.form__submit {
  width: 100%;
  background: var(--black);
  color: #fff;
  border: none;
  padding: 16px;
  font-family: var(--jp);
  font-size: 14px;
  letter-spacing: 0.3em;
  transition: opacity .2s;
}
.form__submit:hover { opacity: .85; }
.form .hp { position: absolute; left: -9999px; opacity: 0; }
.form__status { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; }

/* ---------- footer ---------- */
.foot {
  background: var(--band);
  text-align: center;
  padding: 54px 0;
}
.foot .logo { font-size: 30px; }
.foot__sub {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 10px;
}
.foot__copy { font-size: 10px; letter-spacing: 0.2em; color: var(--faint); margin-top: 16px; }
.foot--dark { background: var(--black); }
.foot--dark .logo,
.foot--dark .foot__sub { color: #f2f1ee; }
.foot--dark .foot__copy { color: #8a8985; }

/* =========================================================
   GLOBAL VOICE page
   ========================================================= */
.gv-hero { background: var(--band); }
.gv-hero__inner {
  text-align: center;
  padding: 46px 0 64px;
  position: relative;
}
.gv-hero .logo { font-size: 60px; letter-spacing: 0.06em; }
/* horizontal rule under the logo (same language as the Kelly hero);
   the old 70px vertical drop line read as a stray pipe — removed 7/5 */

.gv-intro {
  text-align: center;
  font-size: 14px;
  color: var(--ink);
  line-height: 2.2;
  padding: 70px 0 10px;
}

.gv-artist-head {
  text-align: center;
  font-family: var(--ui);
  font-weight: 300;
  font-size: 40px;
  letter-spacing: 0.04em;
  margin-bottom: 50px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.artist {
  display: flex;
  flex-direction: column;
}
/* zone alignment across each row — cards emit 6 fixed zones
   (photo/name/badges/demos/bio/links); subgrid sizes each zone to the
   tallest card in the row, so mixed demo/badge counts stay level.
   Browsers without subgrid fall back to the flex column above. */
@supports (grid-template-rows: subgrid) {
  .artist {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
    align-content: start;
    row-gap: 0; /* override the inherited 48px parent row-gap between zones */
  }
}
.artist__badges:empty,
.artist__links:empty { margin: 0; }
.artist__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--placeholder);
}
.artist__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 18px 0 6px;
}
.artist__demo-label {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 10px;
}
.artist .player { width: 100%; }
.artist__photo { overflow: hidden; }
.artist__photo img { width: 100%; height: 100%; object-fit: cover; }
.artist__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
  /* keep chips their natural height when the subgrid track is taller
     (a neighbor's chips wrapped to 2 lines) — no vertical stretching */
  align-items: flex-start;
  align-content: flex-start;
}
.badge {
  font-family: var(--jp);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}
.demo__cap {
  font-family: var(--ui);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--faint);
  margin: 8px 0 4px;
}
.demo__cap:first-of-type { margin-top: 0; }
.artist__bio {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 14px;
}
.artist__links {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.artist__link {
  font-family: var(--ui);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.artist__link:hover { color: var(--ink); border-color: var(--ink); }
.contact--band { background: var(--band); }

.gv-contact-head {
  text-align: center;
  font-family: var(--ui);
  font-weight: 300;
  font-size: 36px;
  letter-spacing: 0.04em;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; gap: 30px; }
  .about__portrait { max-width: 280px; aspect-ratio: 3/4; }
  .awards { grid-column: auto; }
  .artist-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav__links {
    display: none;
    position: absolute;
    top: 58px; left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--band);
    padding: 8px 0 16px;
    z-index: 30;
  }
  .nav__links.open { display: flex; }
  .nav__links li { padding: 10px 0; }
  .nav__burger { display: block; left: 20px; }
  .nav__pill { right: 20px; }

  .hero .logo { font-size: 52px; }
  .hero__inner { flex-direction: column; gap: 22px; padding: 30px 0 34px; }  /* stacked on mobile, photo on top */
  .hero__photo { width: 160px; height: 185px; order: -1; }

  .catch { font-size: 22px; padding: 50px 0 16px; }
  section { padding: 56px 0; }

  .sample { flex-wrap: wrap; gap: 12px 16px; }
  .sample .player { width: 100%; order: 3; }

  .work__grid { grid-template-columns: 1fr; gap: 20px; }
  .reviews__card { padding: 30px 24px; }
  .reviews__stage { gap: 10px; }

  .gv-hero .logo { font-size: 40px; }
  .gv-artist-head, .gv-contact-head { font-size: 30px; }
  .artist-grid { grid-template-columns: 1fr; gap: 40px; max-width: 360px; margin: 0 auto; }
}
