/*
Theme Name: Stumari One Page
Theme URI: https://stumari.ge
Author: Stumari
Description: Minimal one-page WordPress theme for the Stumari ensemble.
Version: 1.0.0
Text Domain: stumari-onepage
*/

:root {
  --bg: #0c0c0d;
  --panel: #151517;
  --text: #f4f1ea;
  --muted: #b7b0a4;
  --line: rgba(255,255,255,.12);
  --accent: #d3a85c;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(211,168,92,.08), transparent 28%),
    radial-gradient(circle at 85% 85%, rgba(255,255,255,.04), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(12,12,13,.86);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .22em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
}

.nav a:hover { color: var(--text); }

.hero {
  min-height: 74vh;
  display: grid;
  align-items: center;
  padding: 90px 0 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.045em;
}

.hero-copy {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.05);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #16120b;
}

.button-primary:hover {
  background: #e0ba72;
  border-color: #e0ba72;
}

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

.section-grid {
  display: grid;
  grid-template-columns: minmax(150px, .55fr) minmax(0, 1.45fr);
  gap: 60px;
}

.section-title {
  margin: 0;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.about-text {
  margin: 0;
  max-width: 790px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.7vw, 2.15rem);
  line-height: 1.52;
}

.listen-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  border-radius: 18px;
}

.listen-card h2 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 400;
}

.listen-card p {
  margin: 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item dt {
  color: var(--muted);
}

.contact-item dd {
  margin: 0;
  font-size: 1.08rem;
}

.contact-item a {
  text-decoration: none;
}

.contact-item a:hover { color: var(--accent); }

.site-footer {
  padding: 32px 0 46px;
  color: var(--muted);
  font-size: .9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 760px) {
  .site-shell { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 64px; }
  .nav { gap: 14px; }
  .nav a { font-size: .82rem; }
  .hero { min-height: 68vh; padding: 70px 0 60px; }
  .section { padding: 72px 0; }
  .section-grid { grid-template-columns: 1fr; gap: 24px; }
  .listen-card { grid-template-columns: 1fr; }
  .listen-card .button { width: 100%; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 460px) {
  .nav a:first-child { display: none; }
  h1 { font-size: 4.2rem; }
}
