* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #111116;
  --muted: #5e5f6a;
  --accent: #f05d23;
  --accent-dark: #c64617;
  --paper: #f7f5f2;
  --soft: #ebe6e1;
  --deep: #1c1d25;
}

body {
  font-family: "Arial", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e3e0dc;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.section-dark {
  background: var(--deep);
  color: #f2f2f4;
}

.section-soft {
  background: var(--soft);
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split-left,
.split-right {
  flex: 1 1 320px;
}

.hero {
  padding: 96px 6vw 88px;
  color: #ffffff;
  background-color: #1b1b24;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 16, 21, 0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-end;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 560px;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: #e6e6ea;
}

.hero-actions {
  margin-top: 20px;
}

.hero-card {
  flex: 0 1 320px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 24px;
  backdrop-filter: blur(6px);
}

.hero-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button-outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.offset {
  transform: translateX(24px);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #ffffff;
  border: 1px solid #e2ded9;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 240px;
  min-width: 240px;
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 160px;
}

.card h4 {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.image-frame {
  background: #d8d3ce;
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 14px;
  width: 100%;
  height: 320px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.timeline-tag {
  min-width: 88px;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e0dbd6;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfcac5;
  font-size: 14px;
}

.footer {
  background: #0f1016;
  color: #f2f2f6;
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.reference-list {
  font-size: 13px;
  color: #c8c8d2;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #ded9d4;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.sticky-cta button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.sticky-cta .hide-btn {
  background: transparent;
  border: 1px solid #d2cdc7;
  color: var(--ink);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #e0dbd6;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #efeae5;
  color: var(--ink);
}

.legal-hero {
  padding: 64px 6vw 32px;
  background: #ffffff;
}

.legal-content {
  padding: 32px 6vw 72px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-content h2 {
  font-size: 20px;
  margin-top: 16px;
}

.legal-content p {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #ded9d4;
  font-size: 13px;
}

.bg-surface {
  background-size: cover;
  background-position: center;
  background-color: #252533;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.bg-stage {
  background-image: url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80");
}

.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1518976024611-28bf4c850b25?w=1400&q=80");
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 34px;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
