/* -------------------------------------------------
   €600 Vinyl Pressing Special
   Replace YOUR-EMAIL@example.com in index.html
   before uploading the website.
-------------------------------------------------- */

:root {
  --background: #f5f4ef;
  --surface: #ffffff;
  --text: #101010;
  --muted: #656565;
  --line: #deddd6;
  --dark: #101010;
  --accent: #e8ff3d;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 244, 239, 0.9);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-button {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  padding: 90px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1,
.section-heading h2,
.faq-intro h2,
.contact-card h2 {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(58px, 8vw, 116px);
}

.hero h1 span {
  background: var(--accent);
  padding: 0 0.08em;
}

.hero-text {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--dark);
  color: #fff;
}

.button-secondary {
  border: 1px solid var(--dark);
}

.offer-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.record {
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      #151515 0,
      #151515 4px,
      #222 5px,
      #222 6px
    );
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.08),
    0 20px 50px rgba(0,0,0,.35);
}

.record-label {
  width: 38%;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
}

.record-label span {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
}

.record-label small {
  font-weight: 800;
  letter-spacing: 0.12em;
}

.offer-price {
  margin-top: 8px;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.offer-card p {
  margin: 14px 0;
  font-size: 17px;
}

.offer-note {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.included-section {
  padding: 100px 0;
  background: var(--surface);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2,
.faq-intro h2,
.contact-card h2 {
  font-size: clamp(42px, 6vw, 76px);
}

.section-heading p,
.faq-intro p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

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

.included-card {
  min-height: 270px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fafafa;
}

.included-card .number {
  margin-bottom: auto;
  color: #8c8c8c;
  font-size: 13px;
  font-weight: 800;
}

.included-card h3 {
  margin: 36px 0 8px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.included-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.not-included {
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 14px;
  background: #efeee9;
  color: var(--muted);
  font-size: 14px;
}

.not-included strong {
  color: var(--text);
}

.faq-section {
  padding: 110px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro p {
  max-width: 430px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 28px 48px 28px 0;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 24px;
  font-size: 28px;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

.answer {
  max-width: 730px;
  padding: 0 48px 28px 0;
  color: var(--muted);
}

.answer p {
  margin: 0;
}

.contact-section {
  padding: 0 0 100px;
}

.contact-card {
  padding: 58px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: #fff;
}

.contact-card p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255,255,255,.68);
}

.button-light {
  flex: 0 0 auto;
  background: var(--accent);
  color: #000;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .faq-intro {
    position: static;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav {
    min-height: 66px;
  }

  .brand {
    font-size: 14px;
  }

  .nav-button {
    padding: 9px 14px;
    font-size: 12px;
  }

  .hero {
    padding: 62px 0 78px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .offer-card {
    padding: 20px;
  }

  .included-section,
  .faq-section {
    padding: 74px 0;
  }

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

  .included-card {
    min-height: 220px;
  }

  .faq-layout {
    gap: 32px;
  }

  summary {
    padding: 23px 38px 23px 0;
    font-size: 17px;
  }

  summary::after {
    top: 18px;
  }

  .answer {
    padding-right: 12px;
  }

  .contact-section {
    padding-bottom: 70px;
  }

  .contact-card {
    padding: 34px 24px;
  }

  .button-light {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }
}

.button-download { background: var(--accent); color: #000; border: 1px solid #000; }
@media (max-width: 600px) { .hero-actions .button { width: 100%; } }
