* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f3ee;
  --bg-alt: #10131a;
  --ink: #1c1b19;
  --ink-soft: #4b4a47;
  --accent: #e86f3a;
  --accent-dark: #b5451a;
  --panel: #ffffff;
  --panel-alt: #f0e8dd;
  --border: rgba(28, 27, 25, 0.12);
  --radius: 24px;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.main-header {
  padding: 24px 0;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-media {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(28, 27, 25, 0.08);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-panel h1,
.split-panel h2,
.split-panel h3 {
  line-height: 1.2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.hero-title {
  font-size: 2.3rem;
}

.hero-highlight {
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn.ghost {
  background: #fff;
  color: var(--accent-dark);
  border-color: rgba(232, 111, 58, 0.3);
}

.panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}

.panel.alt {
  background: var(--panel-alt);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  background: rgba(232, 111, 58, 0.12);
  border-radius: 999px;
  font-size: 0.85rem;
}

.note {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
}

.card h4 {
  font-size: 1.1rem;
}

.cards-inline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards-inline .card {
  flex: 1;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 12px;
}

.timeline-badge {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.form-card button {
  width: 100%;
}

.footer {
  background: var(--bg-alt);
  color: #fff;
  padding: 40px 0;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn {
  flex: 1;
}

.banner-bg {
  background: linear-gradient(120deg, rgba(232, 111, 58, 0.1), rgba(16, 19, 26, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.dark-section {
  background: var(--bg-alt);
  color: #fff;
}

.dark-section .note,
.dark-section .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.price-item:last-child {
  border-bottom: none;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  white-space: nowrap;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-style: italic;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.hero-bg {
  background-image: url("assets/hero-drums.svg");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  min-height: 280px;
}

.section-image {
  background-image: url("assets/wave.svg");
  background-size: cover;
  background-position: center;
  min-height: 240px;
  border-radius: var(--radius);
}

.full-banner {
  border-radius: var(--radius);
  overflow: hidden;
  background: url("assets/notes.svg") center / cover;
  padding: 36px;
  color: #fff;
}

@media (min-width: 900px) {
  .nav-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero-title {
    font-size: 3rem;
  }

  .cards-inline {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
  }

  .cookie-actions {
    flex: 0 0 auto;
  }
}
