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

:root {
  --amber: #c8861a;
  --amber-dark: #9e6610;
  --amber-light: #f5d08a;
  --amber-pale: #fdf6e8;
  --brown: #3d2b1a;
  --brown-mid: #6b4c2f;
  --text: #1f1208;
  --text-mid: #4a3520;
  --text-muted: #7a6048;
  --bg: #faf7f2;
  --bg-warm: #f5ede0;
  --bg-dark: #211508;
  --white: #ffffff;
  --border: #ddd0bc;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 2px 16px rgba(61,43,26,0.09);
  --shadow-md: 0 4px 28px rgba(61,43,26,0.13);
  --font: 'Georgia', 'Times New Roman', serif;
  --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--amber-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--amber);
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: normal;
  line-height: 1.25;
  color: var(--brown);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1em;
  color: var(--amber-light);
}

p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-ui);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(200,134,26,0.30);
}

.btn-primary:hover {
  background: var(--amber-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(200,134,26,0.40);
}

.btn-outline {
  background: transparent;
  color: var(--amber-dark);
  border: 2px solid var(--amber);
}

.btn-outline:hover {
  background: var(--amber);
  color: var(--white);
}

.btn-lg {
  padding: 17px 40px;
  font-size: 1.08rem;
  border-radius: 12px;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.logo-name {
  font-family: var(--font);
  font-size: 1.2rem;
  color: var(--brown);
  font-weight: normal;
}

.logo-name span {
  color: var(--amber);
}

.header-cta {
  font-size: 0.92rem;
  padding: 10px 22px;
}

/* ---- HERO ---- */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-image-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 8, 2, 0.78) 0%,
    rgba(15, 8, 2, 0.55) 45%,
    rgba(15, 8, 2, 0.18) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.hero-text {
  max-width: 560px;
  margin-left: calc((100vw - 1080px) / 2);
  margin-left: max(24px, calc((100vw - 1080px) / 2));
}

.hero-badge {
  display: inline-block;
  background: rgba(200,134,26,0.25);
  border: 1px solid rgba(200,134,26,0.5);
  color: var(--amber-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.65;
}

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

/* ---- INTRO / VALUE STRIP ---- */
.intro-strip {
  background: var(--bg-dark);
  padding: 40px 0;
}

.intro-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.intro-item {
  text-align: center;
  padding: 20px 16px;
}

.intro-item-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.intro-item-title {
  font-family: var(--font);
  color: var(--amber-light);
  font-size: 1.05rem;
  margin-bottom: 6px;
  display: block;
}

.intro-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin: 0;
}

/* ---- PROBLEM/HOOK ---- */
.hook-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hook-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hook-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.hook-text .section-tag {
  margin-bottom: 14px;
}

.hook-text h2 {
  margin-bottom: 20px;
}

.hook-list {
  list-style: none;
  margin-top: 20px;
}

.hook-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.96rem;
}

.hook-list li:last-child {
  border-bottom: none;
}

.hook-list .check {
  color: var(--amber);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- SECTION TAGS ---- */
.section-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(200,134,26,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- FORMAT ---- */
.format-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.format-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow var(--transition);
}

.format-step:hover {
  box-shadow: var(--shadow-md);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--amber-pale);
  border: 2px solid var(--amber-light);
  border-radius: 50%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--amber-dark);
  margin-bottom: 16px;
}

.format-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--brown);
}

.format-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- REPERTOIRE ---- */
.repertoire-section {
  background: var(--amber-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.rep-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.rep-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rep-genre {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-dark);
  margin-bottom: 10px;
}

.rep-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--brown);
}

.rep-tracks {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.rep-tracks li {
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rep-tracks li::before {
  content: '♪';
  color: var(--amber);
  font-size: 0.8rem;
}

/* ---- AUDIENCE ---- */
.audience-section {
  background: var(--bg);
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.aud-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--border);
  text-align: center;
}

.aud-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.aud-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

/* ---- LEAD FORM ---- */
.form-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.form-section .section-header h2 {
  color: var(--white);
}

.form-section .section-header p {
  color: rgba(255,255,255,0.65);
}

.form-section .section-tag {
  background: rgba(200,134,26,0.2);
  border: 1px solid rgba(200,134,26,0.4);
}

.lead-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-ui);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,0.10);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--white);
}

.form-consent {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  line-height: 1.5;
}

.form-consent a {
  color: rgba(255,255,255,0.65);
}

.form-consent a:hover {
  color: var(--amber-light);
}

.form-btn {
  width: 100%;
  padding: 16px;
  margin-top: 4px;
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.faq-list {
  list-style: none;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--font);
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.4;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--amber-dark);
}

.faq-toggle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--amber-dark);
  transition: transform var(--transition), border-color var(--transition);
  line-height: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  border-color: var(--amber);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.34s ease, padding 0.22s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 4px 22px;
  font-size: 0.96rem;
  color: var(--text-muted);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo-name {
  color: rgba(255,255,255,0.9);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  line-height: 1.5;
}

/* ---- LEGAL PAGES ---- */
.legal-page {
  padding: 60px 0 80px;
}

.legal-page h1 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.legal-page .legal-date {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--brown);
}

.legal-page p, .legal-page li {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.legal-page ul, .legal-page ol {
  padding-left: 22px;
  margin-bottom: 1em;
}

.legal-page li {
  margin-bottom: 6px;
}

/* ---- SUCCESS PAGE ---- */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.success-inner {
  max-width: 500px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
  color: white;
}

.success-inner h1 {
  margin-bottom: 16px;
}

.success-inner p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brown);
  color: rgba(255,255,255,0.88);
  border-top: 2px solid var(--amber);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-text a {
  color: var(--amber-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-ui);
  transition: background var(--transition);
}

.cookie-btn-accept {
  background: var(--amber);
  color: white;
}

.cookie-btn-accept:hover {
  background: var(--amber-dark);
}

.cookie-btn-decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
}

.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.18);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .intro-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .hook-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hook-image {
    order: -1;
  }

  .hook-image img {
    height: 260px;
  }

  .format-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .repertoire-grid {
    grid-template-columns: 1fr 1fr;
  }

  .audience-cards {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  section {
    padding: 52px 0;
  }

  .hero-image-wrap {
    height: 420px;
  }

  .hero-text {
    margin-left: 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .intro-items {
    grid-template-columns: 1fr;
  }

  .format-steps {
    grid-template-columns: 1fr;
  }

  .repertoire-grid {
    grid-template-columns: 1fr;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
