/* ============================================================
   SHAMMI STUDIOS — Design System
   Premium dark vocal recording studio — Hamilton, NZ
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0A0A0A;
  --black-soft: #111111;
  --card:       #141414;
  --card-alt:   #1C1C1C;
  --gold:       #C9A04A;
  --gold-dim:   rgba(201,160,74,0.3);
  --gold-glow:  rgba(201,160,74,0.12);
  --white:      #F5F5F0;
  --grey:       #6B6B6B;
  --grey-light: #9A9A9A;
  --border:     rgba(255,255,255,0.07);
  --font-main:  'Inter', sans-serif;
  --font-alt:   'Space Grotesk', sans-serif;
  --max-w:      1160px;
  --nav-h:      72px;
  --radius:     4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section--sm { padding: 64px 0; }

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.gold { color: var(--gold); }

.rule {
  width: 40px; height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: #d4aa55;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,160,74,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding-left: 0;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.btn-ghost:hover { gap: 12px; }
.btn-ghost::after { content: '→'; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-alt);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-light);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }

.nav__cta { margin-left: 12px; }

/* hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-alt);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn { font-size: 16px; padding: 16px 48px; margin-top: 16px; }

.nav__mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  color: var(--grey);
  cursor: pointer;
}

/* mobile sticky bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 998;
}
.mobile-bar .btn { width: 100%; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,160,74,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201,160,74,0.04) 0%, transparent 60%);
}

/* animated grain */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero__pre {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero__title {
  font-family: var(--font-alt);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero__sub {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--grey-light);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}

.hero__body {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero__note {
  font-size: 12px;
  color: var(--grey);
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s ease forwards;
}

/* ── Proof Bar ────────────────────────────────────────────── */
.proof-bar {
  background: var(--card-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.proof-bar__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.proof-bar__item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.proof-bar__item::after {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.proof-bar__item:last-child::after { display: none; }

/* ── Section Headings ─────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .rule { margin: 0 auto 24px; }

.section-title {
  font-family: var(--font-alt);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-light);
  max-width: 560px;
}
.section-header--center .section-body { margin: 0 auto; }

/* ── Service Cards ────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.card:hover::before { height: 100%; }
.card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}

.card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.card__title {
  font-family: var(--font-alt);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.card__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-light);
  margin-bottom: 24px;
}
.card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.card__price {
  font-family: var(--font-alt);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}
.card__duration {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.05em;
}

/* ── How It Works ─────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 48px; }

.step { position: relative; }
.step__num {
  font-family: var(--font-alt);
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: rgba(201,160,74,0.07);
  position: absolute;
  top: -20px; left: -10px;
  pointer-events: none;
  user-select: none;
}
.step__content { position: relative; z-index: 1; padding-top: 24px; }
.step__icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.step__title {
  font-family: var(--font-alt);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step__body { font-size: 15px; line-height: 1.7; color: var(--grey-light); }

/* ── About Split ──────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split__img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--card);
  border: 1px solid var(--border);
}
.about-split__img-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey);
  background: linear-gradient(135deg, var(--card) 0%, var(--card-alt) 100%);
}
.about-split__img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(201,160,74,0.08), transparent);
}
.about-split__text p { font-size: 16px; line-height: 1.8; color: var(--grey-light); margin-bottom: 20px; }

/* ── Gear Strip ───────────────────────────────────────────── */
.gear-strip { background: var(--black-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gear-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.gear-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.gear-item:last-child { border-right: none; }
.gear-item__icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}
.gear-item__name {
  font-family: var(--font-alt);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.gear-item__desc { font-size: 13px; color: var(--grey); line-height: 1.5; }

/* ── Pricing Table ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.pricing-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: var(--gold-dim);
  background: linear-gradient(135deg, var(--card) 0%, rgba(201,160,74,0.04) 100%);
  position: relative;
}
.pricing-card--featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 16px;
  border-radius: 0 0 4px 4px;
}
.pricing-card__name {
  font-family: var(--font-alt);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing-card__duration { font-size: 13px; color: var(--grey); margin-bottom: 24px; }
.pricing-card__price {
  font-family: var(--font-alt);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price sup { font-size: 24px; vertical-align: top; margin-top: 8px; }
.pricing-card__billed { font-size: 12px; color: var(--grey); margin-bottom: 28px; }
.pricing-card__features { border-top: 1px solid var(--border); padding-top: 24px; margin-bottom: 28px; }
.pricing-card__features li {
  font-size: 14px;
  color: var(--grey-light);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-alt);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer p { font-size: 15px; line-height: 1.8; color: var(--grey-light); }

/* ── Reviews ──────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--grey-light); margin-bottom: 20px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 600; color: var(--white); }
.review-type { font-size: 12px; color: var(--grey); }

/* ── CTA Block ────────────────────────────────────────────── */
.cta-block {
  background: linear-gradient(180deg, var(--black) 0%, #0D0B07 100%);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 120px 0;
}
.cta-block__title {
  font-family: var(--font-alt);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-block__sub { font-size: 18px; color: var(--grey-light); margin-bottom: 40px; }
.cta-block__note { font-size: 13px; color: var(--grey); margin-top: 20px; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #0D0D0D;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: var(--font-alt);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__brand-desc { font-size: 14px; color: var(--grey); line-height: 1.6; margin-bottom: 20px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--grey);
  font-size: 14px;
  transition: var(--transition);
}
.footer__social a:hover { border-color: var(--gold-dim); color: var(--gold); }
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 14px;
  color: var(--grey-light);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-left { font-size: 13px; color: var(--grey); }
.footer__bottom-right { font-size: 12px; color: var(--grey); font-style: italic; }

/* ── Page Header (inner pages) ────────────────────────────── */
.page-header {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
  background: var(--black-soft);
}
.page-header__title {
  font-family: var(--font-alt);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.page-header__sub { font-size: 18px; color: var(--grey-light); max-width: 560px; }

/* ── Table ────────────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--card-alt);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 16px 20px;
  color: var(--grey-light);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.data-table tr:hover td { background: rgba(255,255,255,0.015); }
.data-table td:first-child { color: var(--white); font-weight: 500; }

/* ── Prose (policies, legal) ──────────────────────────────── */
.prose { max-width: 720px; }
.prose h2 {
  font-family: var(--font-alt);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 48px 0 16px;
}
.prose h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin: 32px 0 10px;
}
.prose p { font-size: 15px; line-height: 1.8; color: var(--grey-light); margin-bottom: 16px; }
.prose ul { margin: 12px 0 20px 20px; }
.prose ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-light);
  margin-bottom: 6px;
  list-style: disc;
}
.prose a { color: var(--gold); text-decoration: underline; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .gear-grid { grid-template-columns: 1fr 1fr; }
  .gear-item:nth-child(2) { border-right: none; }
  .gear-item:nth-child(3) { border-right: 1px solid var(--border); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .mobile-bar { display: block; }
  body { padding-bottom: 72px; }
  .gear-grid { grid-template-columns: 1fr 1fr; }
  .gear-item { padding: 28px 16px; }
  .gear-item:nth-child(2n) { border-right: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .steps { gap: 40px; }
  .proof-bar__item { font-size: 10px; padding: 0 20px; gap: 20px; }
}
