/* ==========================================================================
   OHEMAA EFFE — site stylesheet
   Palette, type and component styles matched to the supplied brand mockups.
   ========================================================================== */

:root {
  --black: #0b0906;
  --black-soft: #151109;
  --panel: #1a140d;
  --panel-line: rgba(201, 162, 39, 0.28);
  --gold: #c9a227;
  --gold-bright: #e7c766;
  --gold-deep: #8a6a16;
  --cream: #f3ece0;
  --white: #ffffff;
  --muted: #cabfae;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-script: 'Alex Brush', cursive;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1180px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  color: var(--gold);
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 0.6em;
}

.script {
  font-family: var(--font-script);
  color: var(--gold-bright);
  font-weight: 400;
}

.rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 18px 0;
  opacity: 0.7;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover, .btn:focus-visible {
  background: var(--gold);
  color: var(--black);
}

.btn-solid {
  background: var(--gold);
  color: var(--black);
}

.btn-solid:hover, .btn-solid:focus-visible {
  background: var(--gold-bright);
  color: var(--black);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 9, 6, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--panel-line);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.logo-crown { width: 22px; height: 22px; fill: var(--gold); }

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--gold-bright);
}

.logo-text em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  margin-left: 4px;
}

.main-nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  margin-right: 30px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:last-child { margin-right: 0; }

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--gold-bright);
  border-color: var(--gold);
}

.header-social {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--panel-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.icon-btn svg { width: 15px; height: 15px; fill: var(--gold-bright); }

.icon-btn:hover, .icon-btn:focus-visible {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold-bright);
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-soft);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--panel-line);
  }
  .main-nav.open { max-height: 420px; }
  .main-nav a { padding: 14px 0; margin-right: 0; width: 100%; text-align: center; border-bottom: 1px solid var(--panel-line); }
  .nav-toggle { display: flex; }
  .header-social { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
  background:
    radial-gradient(ellipse at 78% 15%, rgba(201,162,39,0.18), transparent 55%),
    var(--black);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 24px;
}

.hero-copy .eyebrow { letter-spacing: 0.18em; text-transform: uppercase; }

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.hero-title .script {
  display: block;
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin-top: -0.1em;
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--white);
  margin: 24px 0 8px;
  line-height: 1.4;
}

.hero-tagline .highlight { color: var(--gold-bright); }

.hero-sub {
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: 22px;
}

.hero-desc {
  max-width: 46ch;
  color: var(--muted);
}

.hero-desc strong { color: var(--gold-bright); font-weight: 500; }

.hero-portrait {
  position: relative;
  align-self: end;
}

.hero-portrait img {
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
  filter: saturate(1.03);
}

.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 340px; margin: 0 auto; }
}

/* ---------- Feature grid ---------- */

.feature-grid {
  max-width: var(--max-width);
  margin: 56px auto 0;
  padding: 0 28px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  overflow: hidden;
}

.feature {
  padding: 32px 22px;
  text-align: center;
  border-left: 1px solid var(--panel-line);
}

.feature:first-child { border-left: none; }

.feature svg { width: 30px; height: 30px; fill: var(--gold); margin-bottom: 14px; }

.feature h3 {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: var(--gold-bright);
}

.feature p { color: var(--muted); font-size: 0.92rem; margin: 0; }

@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(3) { border-left: none; }
  .feature { border-bottom: 1px solid var(--panel-line); }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border-left: none; }
}

/* ---------- Generic section ---------- */

.section {
  padding: 76px 0;
  border-top: 1px solid var(--panel-line);
}

.section-head { max-width: 640px; margin-bottom: 40px; }

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */

.card {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  padding: 28px;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

@media (max-width: 780px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Sounds / track list ---------- */

.track-panel {
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
}

.track-featured {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--panel-line);
  flex-wrap: wrap;
}

.track-featured .art {
  width: 84px;
  height: 84px;
  border-radius: 6px;
  background: linear-gradient(160deg, #2a2013, var(--black));
  border: 1px solid var(--panel-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-align: center;
  flex-shrink: 0;
}

.track-featured .meta { flex: 1; min-width: 180px; }
.track-featured .meta .label { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.track-featured .meta h3 { margin: 4px 0 2px; }
.track-featured .meta .by { color: var(--muted); font-size: 0.9rem; }
.track-featured .actions { display: flex; gap: 10px; }

.track-list { list-style: none; margin: 0; padding: 0; }

.track-row {
  display: grid;
  grid-template-columns: 34px 46px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--panel-line);
}

.track-row:last-child { border-bottom: none; }

.track-row .num { color: var(--muted); font-size: 0.85rem; }

.track-row .thumb {
  width: 46px; height: 46px; border-radius: 5px; overflow: hidden;
  background: var(--black-soft); border: 1px solid var(--panel-line);
}
.track-row .thumb img { width: 100%; height: 100%; object-fit: cover; }

.track-row .title { color: var(--white); }
.track-row .title .feat { color: var(--muted); font-size: 0.85rem; }

.track-row .len { color: var(--muted); font-size: 0.85rem; white-space: nowrap; }

@media (max-width: 640px) {
  .track-row { grid-template-columns: 28px 40px 1fr; }
  .track-row .len { display: none; }
}

/* ---------- Video embeds ---------- */

.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

@media (max-width: 780px) { .video-grid { grid-template-columns: 1fr; } }

.video-card {
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--black-soft);
}

.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

.video-card .video-info { padding: 16px 20px; }
.video-card .video-info h3 { font-size: 1.05rem; margin-bottom: 2px; }
.video-card .video-info p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ---------- Events ---------- */

.event-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--panel-line);
}

.event-row:last-child { border-bottom: none; }

.event-date {
  text-align: center;
  border: 1px solid var(--panel-line);
  border-radius: 6px;
  padding: 10px 6px;
}

.event-date .day { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-bright); line-height: 1; }
.event-date .mon { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

.event-info h3 { margin-bottom: 4px; font-size: 1.1rem; }
.event-info p { color: var(--muted); margin: 0; font-size: 0.92rem; }

@media (max-width: 620px) {
  .event-row { grid-template-columns: 70px 1fr; }
  .event-row .btn { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }
}

/* ---------- Store ---------- */

.product-card { text-align: left; }
.product-card .thumb {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: linear-gradient(160deg, #241b10, var(--black));
  border: 1px solid var(--panel-line);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: var(--font-display); font-size: 0.8rem;
}
.product-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.product-card .price { color: var(--gold-bright); margin-bottom: 14px; }

/* ---------- Contact form ---------- */

.form-grid { display: grid; gap: 18px; max-width: 620px; }

.field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--panel-line);
  border-radius: 5px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold);
  outline: none;
}

.contact-info { display: grid; gap: 22px; }
.contact-info .item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-info h3 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-info p { color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--panel-line);
  padding: 56px 0 28px;
  background: var(--black-soft);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-tagline {
  font-family: var(--font-script);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.25;
  max-width: 280px;
}

.footer-grid { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-grid .footer-col { margin-right: 64px; }
.footer-grid .footer-col:last-child { margin-right: 0; }

.footer-col h3 {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.footer-col a, .footer-col span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.footer-col a:hover { color: var(--gold-bright); }

.footer-motto {
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-deep);
  border-top: 1px solid var(--panel-line);
  padding-top: 22px;
  margin: 0;
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  padding: 60px 0 40px;
  background: radial-gradient(ellipse at 75% 0%, rgba(201,162,39,0.16), transparent 55%), var(--black);
  border-bottom: 1px solid var(--panel-line);
}

.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--muted); max-width: 52ch; }

/* ---------- Utility ---------- */

.text-muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
