* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f24;
  --muted: #5b6770;
  --accent: #4b6a56;
  --accent-soft: #dfe8e1;
  --sand: #f3f0ea;
  --mist: #eef2f5;
  --sun: #f6e2c2;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #ffffff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e6eaee;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h1 {
  font-size: 20px;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--sand);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid #eef1f4;
}

.nav a:hover,
.nav a:focus {
  color: var(--accent);
}

.side-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-cta a {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.compact {
  padding: 40px 64px;
}

.section.split {
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.section.dark {
  background: var(--ink);
  color: #f8f8f8;
}

.section.light {
  background: #ffffff;
}

.section.sand {
  background: var(--sand);
}

.section.accent {
  background: var(--accent-soft);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 64px;
  color: #ffffff;
  background: #2a2f34;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 18, 0.55);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h2 {
  font-size: 44px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 18px;
  color: #f5f5f5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--sun);
  color: var(--ink);
}

.btn-secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.media-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 18px;
}

.media-card .card-body {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.grid .media-card {
  flex: 1 1 280px;
  min-width: 240px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
}

.list-item img {
  width: 140px;
  height: 120px;
  border-radius: 12px;
}

.price-tag {
  font-weight: 600;
  color: var(--accent);
}

.form-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #dbe1e6;
  border-radius: 10px;
  font-size: 15px;
}

button {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
}

button:hover,
button:focus {
  background: #3b5746;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 10px;
}

.footer {
  background: #101416;
  color: #cfd6db;
  padding: 32px 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer a {
  color: #cfd6db;
  text-decoration: underline;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.cookie-actions .secondary {
  background: #e8ecef;
  color: var(--ink);
}

.legal-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
}

.note {
  background: var(--sun);
  padding: 16px;
  border-radius: 12px;
  color: #3c2a10;
}

.two-column {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.two-column > div {
  flex: 1;
}

.image-frame {
  background: var(--sand);
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e6eaee;
  }

  .section.split,
  .two-column {
    flex-direction: column;
  }

  .hero {
    min-height: 50vh;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 720px) {
  .section,
  .footer {
    padding: 36px 24px;
  }

  .hero {
    padding: 40px 24px;
  }

  .hero-content h2 {
    font-size: 32px;
  }
}
