/* ============================================================
   Farbod — onepager
   Theme: dark forest green · gold · purple · black
   Mobile-first.
   ============================================================ */

:root {
  --bg:        #0d1812;
  --bg-alt:    #122019;
  --bg-deep:   #060b08;
  --surface:   #182a21;
  --surface-2: #1f3329;

  --ink:       #ede4c8;
  --ink-soft:  #c4b896;
  --ink-mute:  #8a7e62;

  --gold:        #d4af37;
  --gold-bright: #f0d878;
  --gold-soft:   rgba(212, 175, 55, 0.12);

  --purple:      #9d7bd4;
  --purple-soft: rgba(157, 123, 212, 0.14);

  --line:        #243a2d;
  --line-strong: #2f4a3a;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 28px 64px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 0 0 1px rgba(212, 175, 55, 0.3), 0 16px 40px rgba(212, 175, 55, 0.12);

  --maxw: 1180px;
  --gutter: clamp(16px, 4vw, 32px);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --t-fast: 160ms ease;
  --t-base: 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-bright); }

::selection { background: var(--gold); color: var(--bg-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

em { font-style: italic; color: var(--gold); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 12px 20px;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 24, 18, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(13, 24, 18, 0.92);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-list a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--bg-deep) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-cta:hover {
  background: var(--gold-bright);
  color: var(--bg-deep) !important;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.lang-switch a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
}
.lang-switch a:hover { border-color: var(--gold); color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 10px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px var(--gutter) 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-base);
  }
  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-list li { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-list li:last-child { border-bottom: 0; }
  .nav-cta { display: inline-block; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
}
.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--bg-deep);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-block { width: 100%; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(48px, 9vw, 130px) 0 clamp(64px, 10vw, 140px);
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, var(--purple-soft) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 90%, var(--gold-soft) 0%, transparent 70%),
    var(--bg-deep);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

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

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 18px;
}

.hero h1 { margin-bottom: 0.4em; }
.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.92rem;
  color: var(--ink-mute);
}
.hero-meta span { color: var(--gold); margin-right: 6px; }

.hero-visual { position: relative; }
.hero-visual-inner {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-mute);
  background:
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(212, 175, 55, 0.06) 24px 25px);
}

/* ---------- sections ---------- */

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-deep); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-lede { font-size: 1.05rem; color: var(--ink-soft); }

.section-cta { margin-top: 48px; text-align: center; }

/* ---------- service cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base), background var(--t-base);
}
.card:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-soft);
  font-size: 1.6rem;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}

.card h3 { margin-bottom: 10px; color: var(--ink); }
.card p { font-size: 0.97rem; margin-bottom: 18px; }

.card-link {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--gold);
}
.card-link:hover { color: var(--gold-bright); }

/* ---------- range section (genres + instruments) ---------- */

.range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 760px) {
  .range-grid { grid-template-columns: 1fr; }
}

.range-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.range-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--purple) 100%);
}
.range-block h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.range-block .range-sub {
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin: 0 0 24px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.chip-list li {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: all var(--t-fast);
}
.chip-list li:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}
.chip-list li.chip-purple:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-soft);
}

.range-callout {
  margin-top: clamp(32px, 4vw, 48px);
  padding: 28px clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--purple-soft) 100%);
  border: 1px solid var(--line-strong);
  text-align: center;
}
.range-callout p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--ink);
  font-style: italic;
}
.range-callout strong {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

/* ---------- workshops ---------- */

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.workshop {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.workshop:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: 0 0 0 1px rgba(157, 123, 212, 0.3), 0 16px 40px rgba(157, 123, 212, 0.12);
}

.workshop h3 { color: var(--ink); }

.workshop-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--purple);
  color: var(--bg-deep);
  border-radius: 999px;
  margin-bottom: 18px;
}

.workshop-placeholder {
  background: transparent;
  border-style: dashed;
  border-color: var(--line-strong);
  opacity: 0.6;
}
.workshop-placeholder .workshop-tag { background: var(--ink-mute); }

.workshop-meta {
  list-style: none;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.88rem;
  color: var(--ink-mute);
}

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

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

.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--line);
  position: relative;
  box-shadow: var(--shadow-md);
}

.about-bullets {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.about-bullets li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-soft);
}
.about-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- booking ---------- */

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 860px) { .booking-grid { grid-template-columns: 1fr; } }

.booking-meta {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.booking-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.booking-meta strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}
.booking-meta a { color: var(--ink); }
.booking-meta a:hover { color: var(--gold); }

.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  background: var(--bg-deep);
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg);
}
.field select option { background: var(--bg-deep); color: var(--ink); }

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

.hp { position: absolute; left: -9999px; }

.form-fineprint {
  margin: 14px 0 0;
  font-size: 0.84rem;
  color: var(--ink-mute);
}

/* ---------- footer ---------- */

.site-footer {
  padding: 40px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--ink-mute);
}
.footer-row p { margin: 0; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}
.footer-meta a { color: var(--ink-soft); }
.footer-meta a:hover { color: var(--gold); }

/* ---------- images in slots ---------- */

.hero-photo,
.about-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo { object-position: center right; }
.about-photo > img { object-position: center; }

/* ---------- workshop feature image ---------- */

.workshop-feature {
  margin: 0 0 clamp(40px, 6vw, 64px);
  aspect-ratio: 16 / 8;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
}
.workshop-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.workshop-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 11, 8, 0.4) 100%);
  pointer-events: none;
}

.workshop-caption {
  margin: 16px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.98rem;
  color: var(--ink-soft);
  font-style: italic;
}
.workshop-caption strong {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

/* ---------- social ---------- */

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-list a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  color: var(--ink-soft);
  background: transparent;
  transition: all var(--t-fast);
}
.social-list a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.social-list svg {
  width: 18px;
  height: 18px;
}

.booking-social {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.booking-social-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 14px;
}

/* ---------- footer expanded ---------- */

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 0.92rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- audience strip ---------- */

.audience-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  margin-top: clamp(32px, 5vw, 48px);
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.audience-row .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.audience-row .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.audience-row .pill {
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--ink);
}
