* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #141414;
  --muted: #5a5f66;
  --bg: #f6f4f1;
  --accent: #c65d3a;
  --accent-soft: #f0d6cc;
  --dark: #0f1114;
  --light: #ffffff;
  --shadow: 0 18px 40px rgba(15, 17, 20, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100vh;
}

header {
  padding: 22px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light);
  border-bottom: 1px solid #e1ddd7;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  background: #0b0d11;
  color: var(--light);
}

.hero-media {
  min-height: 380px;
  background-color: #2d3138;
  background-position: center;
  background-size: cover;
}

.hero-main {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
}

.hero-content {
  padding: 32px 6% 44px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 40px;
  letter-spacing: 0.6px;
}

.hero p {
  max-width: 720px;
  color: #e7e4de;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: var(--light);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  border: 1px solid var(--light);
  padding: 11px 22px;
  border-radius: 999px;
  color: var(--light);
}

.section {
  padding: 54px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-title {
  font-size: 28px;
}

.two-col {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.two-col.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media {
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d4d0cb;
  box-shadow: var(--shadow);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--light);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card img {
  height: 160px;
}

.tag {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  width: fit-content;
}

.accent-block {
  background: var(--accent-soft);
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.pricing {
  background: #101218;
  color: var(--light);
}

.pricing .card {
  background: #1a1e25;
  color: var(--light);
  box-shadow: none;
}

.pricing .tag {
  background: rgba(255, 255, 255, 0.15);
  color: #f4eee9;
}

.form-section {
  background: var(--light);
  border-top: 1px solid #e5e0da;
  border-bottom: 1px solid #e5e0da;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6d1ca;
  font-size: 15px;
  background: #faf9f7;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--dark);
  color: var(--light);
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 4;
}

.sticky-cta a {
  color: var(--light);
  font-weight: 600;
}

footer {
  background: #0f1114;
  color: #d7d2cb;
  padding: 34px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.notice {
  font-size: 12px;
  color: #b6b1aa;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  background: var(--light);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: var(--light);
}

.cookie-reject {
  background: #e9e4de;
  color: var(--ink);
}

.page-hero {
  padding: 48px 6% 28px 6%;
  background: var(--light);
  border-bottom: 1px solid #e5e0da;
}

.page-hero h1 {
  font-size: 34px;
}

.page-content {
  padding: 36px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.section-bg {
  background: #f0ebe6;
}

.image-band {
  min-height: 220px;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  background-color: #c9c4be;
}

.band-drive {
  background-image: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1400&q=80");
}

.band-detail {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
