:root {
  --bg: #f6f3ee;
  --ink: #1d1d1b;
  --accent: #1a6d5f;
  --accent-2: #c29d62;
  --muted: #6d6a66;
  --paper: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 10px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--accent-2);
  color: #2b1f0f;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  background-color: #2b2f2e;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  margin: 20px auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 88px 8% 78px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.outline {
  background: transparent;
  border-color: #fff;
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--paper);
}

.section.sheer {
  background: #fdf8f1;
}

.section.backdrop-ride {
  background-color: #1d2422;
  background-image: linear-gradient(rgba(15, 18, 20, 0.7), rgba(15, 18, 20, 0.7)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fdf8f1;
}

.section-header {
  margin-bottom: 24px;
  max-width: 720px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px -30px var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .button {
  align-self: flex-start;
}

.img-frame {
  background: #dcd4c7;
}

.inline-image {
  border-radius: 18px;
  overflow: hidden;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--muted);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 280px;
  background: #fff;
  border-left: 4px solid var(--accent-2);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px -20px var(--shadow);
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 260px;
  background: var(--paper);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ece4d5;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 24px 50px -35px var(--shadow);
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ddd2c2;
  font-size: 1rem;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-message {
  font-size: 0.95rem;
  color: #9b2c2c;
}

.site-footer {
  padding: 40px 0 60px;
  background: #181816;
  color: #f5f2eb;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #f5f2eb;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: min(360px, 90%);
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px -20px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

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

.cookie-actions .button {
  flex: 1 1 auto;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px -20px var(--shadow);
  cursor: pointer;
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero .section-title {
  max-width: 760px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 720px) {
  .hero-content {
    padding: 72px 8% 64px;
  }

  .sticky-cta {
    position: static;
    width: 100%;
    margin: 0 auto 20px;
  }
}
