*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #5b6773;
  --paper: #f7f2ed;
  --surface: #ffffff;
  --accent: #2a5a5e;
  --accent-2: #b46a2e;
  --accent-3: #1c2f3a;
  --stroke: #e2d8cf;
  --shadow: 0 18px 40px rgba(16, 20, 24, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.asymmetric {
  position: relative;
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 2.5rem;
}

.asymmetric.shift-left {
  margin-left: -5%;
}

.asymmetric.shift-right {
  margin-right: -5%;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero {
  padding: 3rem 0 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 1rem;
}

.hero p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.sun {
  background: var(--accent-2);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--paper);
  border-radius: 22px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card img {
  border-radius: 16px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-3);
}

.quote {
  font-style: italic;
  color: var(--muted);
  border-left: 3px solid var(--accent-2);
  padding-left: 1rem;
}

.form-shell {
  background: var(--accent-3);
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 1rem;
}

.footer {
  padding: 3rem 0 6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.highlight {
  background: #fff1e4;
  padding: 1.5rem;
  border-radius: 18px;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 20;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: min(320px, 90%);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-actions button {
  flex: 1;
}

.legal {
  padding: 3rem 0;
}

.legal h1 {
  margin-bottom: 1rem;
}

.legal h2 {
  margin-top: 2rem;
}

.image-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offset-image {
  transform: translateY(18px);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
