* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1c1f;
  --muted: #5c636b;
  --accent: #8b5b3a;
  --accent-dark: #6c4226;
  --sand: #f3ede6;
  --stone: #e2dbd3;
  --mist: #f8f7f4;
  --sage: #c5c0b6;
  --sun: #e4c089;
  --line: #ded7cf;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: var(--sand);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h1,
.brand h2 {
  font-size: 22px;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav a {
  padding: 6px 0;
}

.nav a:hover {
  color: var(--accent);
}

.sidebar .quick-cta {
  margin-top: auto;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(243, 237, 230, 0.8)),
    url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 72px 8vw 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.hero h2 {
  font-size: 40px;
  max-width: 620px;
}

.hero p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  padding: 12px 22px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.section {
  padding: 56px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-size: 28px;
  max-width: 520px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(26, 28, 31, 0.12);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.insight {
  flex: 1 1 220px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insight strong {
  font-size: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.floating-note {
  background: var(--stone);
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(26, 28, 31, 0.08);
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  margin: 0 8vw 24px auto;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(26, 28, 31, 0.2);
}

.footer {
  padding: 32px 8vw 48px;
  background: var(--sand);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 18px 30px rgba(26, 28, 31, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: var(--stone);
  color: var(--ink);
}

.muted {
  color: var(--muted);
}

.section.alt {
  background: #fff;
}

.section.sun {
  background: linear-gradient(120deg, rgba(228, 192, 137, 0.3), rgba(255, 255, 255, 0.9));
}

.section.sand {
  background: var(--sand);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.hero-mini {
  background: var(--sand);
  padding: 48px 8vw;
  border-bottom: 1px solid var(--line);
}

.hero-mini h2 {
  font-size: 32px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .sidebar .quick-cta {
    margin-top: 0;
  }

  .sticky-cta {
    align-self: center;
    margin: 16px auto;
  }
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 32px;
  }

  .section {
    padding: 48px 6vw;
  }

  .hero {
    padding: 56px 6vw 64px;
  }
}
