* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #101418;
  --slate: #475067;
  --soft: #f4f2ef;
  --sand: #efe9e2;
  --pine: #22333b;
  --accent: #9b6a3d;
  --accent-2: #2f5f74;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Arial", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

header {
  padding: 28px 6vw 12px 6vw;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid rgba(16, 20, 24, 0.1);
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 20, 26, 0.08);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.alt {
  background: transparent;
  color: var(--ink);
}

.btn.light {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(16, 20, 24, 0.2);
}

.btn:hover,
button.btn:hover {
  transform: translateY(-1px);
}

.space-top {
  margin-top: 24px;
}

.section {
  padding: 72px 6vw;
  position: relative;
  overflow: hidden;
}

.section.soft {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section.dark {
  background: var(--pine);
  color: var(--white);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-bottom: 16px;
  display: inline-block;
}

.headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.subhead {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 560px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.offset-block {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 26px 50px rgba(9, 12, 14, 0.12);
  transform: translateY(12px);
}

.overlap-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 30px 60px rgba(11, 15, 18, 0.15);
  margin-top: -60px;
  max-width: 520px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155, 106, 61, 0.12);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(11, 15, 18, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  background: var(--accent-2);
  color: var(--white);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.8rem;
}

.quote {
  font-style: italic;
  color: var(--slate);
}

.form-wrap {
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(10, 12, 14, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(16, 20, 24, 0.2);
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(20, 14, 8, 0.3);
  font-weight: 600;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 48px rgba(12, 12, 12, 0.2);
  max-width: 360px;
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer {
  padding: 48px 6vw 56px 6vw;
  background: var(--pine);
  color: var(--white);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer a {
  color: var(--white);
  opacity: 0.85;
}

.meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-note {
  margin-top: 24px;
}

.hero-image {
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(10, 12, 16, 0.25);
}

.floating-note {
  position: absolute;
  top: 20px;
  right: 10%;
  background: var(--white);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(10, 12, 16, 0.16);
  max-width: 220px;
}

.align-right {
  text-align: right;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-2);
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 24, 0.55);
}

.hero-bg .content {
  position: relative;
  z-index: 1;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 51, 59, 0.7);
}

.section-bg .content {
  position: relative;
  z-index: 1;
}

.page-title {
  padding: 64px 6vw 40px 6vw;
}

.page-title h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.simple-section {
  padding: 48px 6vw;
}

.simple-section .split {
  align-items: flex-start;
}

@media (max-width: 760px) {
  .nav-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-note {
    display: none;
  }

  .overlap-card {
    margin-top: 20px;
  }
}
