* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1b17;
  --muted: #6c625a;
  --accent: #9a6b3f;
  --accent-2: #21424a;
  --bg: #f6f2ee;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(31, 27, 23, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 42px 6vw 64px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 360px;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: #e6ddd5;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.25), transparent);
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 54px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  background: #e9e1d8;
}

.section-column {
  flex-direction: column;
  align-items: flex-start;
}

.media {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #ede4dc;
  box-shadow: var(--shadow);
}

.copy {
  flex: 1 1 320px;
}

.tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  width: 100%;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
  width: 100%;
  height: 180px;
}

.prices {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-2);
}

.quote {
  font-style: italic;
  background: #fff;
  border-left: 4px solid var(--accent-2);
  padding: 16px 18px;
  border-radius: 8px;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8cfc6;
  font-family: inherit;
  font-size: 1rem;
}

.footer {
  padding: 40px 6vw 70px;
  background: #14110f;
  color: #f7f3ee;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f7f3ee;
  text-decoration: underline;
}

.footer-col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  box-shadow: var(--shadow);
  z-index: 12;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 42px 6vw 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.page-hero .media {
  min-height: 260px;
}

.muted {
  color: var(--muted);
}

.legal {
  padding: 10px 6vw 60px;
  max-width: 920px;
}

.legal h2 {
  margin-top: 32px;
}
