/* ============================================================
   KAI KENNICOTT — Brand Stylesheet
   Palette: Midnight Plum / Deep Amethyst / Old Gold / Blood Rose / Parchment
   Fonts:   Cormorant Garamond (display) · Josefin Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Josefin+Sans:wght@300;400;600&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Variables ── */
:root {
  --plum:      #2D1B3D;
  --plum-deep: #1A0F24;
  --amethyst:  #7B3FA0;
  --gold:      #C49A0E;
  --gold-light:#E8C84A;
  --rose:      #8C2040;
  --parchment: #F5E8C8;
  --parchment-dark: #EAD9A8;

  --font-display: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-body:    'Josefin Sans', 'Gill Sans MT', Calibri, sans-serif;

  --max-width: 960px;
  --nav-height: 72px;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--plum);
  background: var(--parchment);
  line-height: 1.75;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.italic { font-style: italic; }

p {
  margin-bottom: 1.2rem;
  max-width: 68ch;
}
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--plum);
  color: var(--parchment);
}

.section--mid {
  background: var(--plum-deep);
  color: var(--parchment);
}

.section--light {
  background: var(--parchment);
  color: var(--plum);
}

.section--parchment-dark {
  background: var(--parchment-dark);
  color: var(--plum);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(45, 27, 61, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(196, 154, 14, 0.2);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: 0.03em;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  opacity: 1;
  color: var(--gold);
}

.nav__cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--plum);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--parchment);
  transition: transform 0.2s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(123,63,160,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__logo {
  margin-bottom: 32px;
}

.hero__eyebrow {
  margin-bottom: 12px;
}

.hero__name {
  color: var(--parchment);
  margin-bottom: 8px;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--amethyst);
  margin-bottom: 24px;
}

.hero__genres {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.genre-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 0.5px solid rgba(196,154,14,0.4);
  color: var(--gold);
  border-radius: 3px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--plum);
  border: none;
}

.btn--primary:hover {
  background: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--parchment);
  border: 0.5px solid rgba(245,232,200,0.4);
}

.btn--outline:hover {
  border-color: var(--parchment);
}

.btn--rose {
  background: var(--rose);
  color: var(--parchment);
  border: none;
}

.btn--rose:hover {
  background: #a02550;
}

/* ── Stats bar ── */
.stats {
  background: var(--plum-deep);
  padding: 36px 24px;
  border-top: 0.5px solid rgba(196,154,14,0.15);
  border-bottom: 0.5px solid rgba(196,154,14,0.15);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.55;
}

/* ── Publishers strip ── */
.publishers {
  padding: 32px 24px;
  background: var(--parchment-dark);
  text-align: center;
}

.publishers__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
  opacity: 0.45;
  margin-bottom: 14px;
}

.publishers__names {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--plum);
  letter-spacing: 0.04em;
}

.publishers__names span {
  color: var(--amethyst);
  margin: 0 10px;
  font-size: 0.9rem;
  opacity: 0.5;
}

/* ── Divider ornament ── */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0;
}

.ornament__line {
  flex: 1;
  height: 0.5px;
  background: currentColor;
  opacity: 0.2;
}

.ornament__star {
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.8;
}

/* ── About section / bio ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  aspect-ratio: 3/4;
  background: rgba(123,63,160,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(196,154,14,0.2);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo__placeholder {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--parchment);
  opacity: 0.3;
  text-align: center;
  padding: 24px;
}

.bio p {
  color: var(--parchment);
  opacity: 0.85;
}

/* ── Listen / samples ── */
.samples-placeholder {
  border: 0.5px solid rgba(196,154,14,0.25);
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
  background: rgba(123,63,160,0.06);
}

.samples-placeholder__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.3;
}

/* ── Contact form ── */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.6;
}

.form__input,
.form__select,
.form__textarea {
  background: rgba(245,232,200,0.06);
  border: 0.5px solid rgba(245,232,200,0.2);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--parchment);
  transition: border-color 0.2s;
  width: 100%;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--parchment);
  opacity: 0.25;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: rgba(196,154,14,0.5);
}

.form__select option {
  background: var(--plum);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--plum);
  padding: calc(var(--nav-height) + 64px) 24px 64px;
  text-align: center;
}

.page-hero h1 {
  color: var(--parchment);
  margin-bottom: 10px;
}

.page-hero__sub {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--amethyst);
}

/* ── Footer ── */
.footer {
  background: var(--plum-deep);
  padding: 48px 24px 32px;
  border-top: 0.5px solid rgba(196,154,14,0.12);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 6px;
}

.footer__sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.4;
  transition: opacity 0.2s;
}

.footer__links a:hover { opacity: 0.9; }

.footer__copy {
  font-size: 0.68rem;
  color: var(--parchment);
  opacity: 0.25;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(245,232,200,0.08);
  text-align: center;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 4/3; max-height: 320px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .publishers__names { font-size: 1rem; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat__number { font-size: 1.8rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
}
