* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2430;
  --muted: #5c6677;
  --accent: #2c6b5c;
  --accent-dark: #1f4b40;
  --sand: #f2efe9;
  --mist: #eef2f4;
  --clay: #e2d4c2;
  --pebble: #d7dde2;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

a:hover {
  border-bottom-color: var(--accent-dark);
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6%;
  background: var(--sand);
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px dashed var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 70px 6% 60px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.hero-index {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.section-bg-care {
  background-image: url("https://images.unsplash.com/photo-1450778869180-41d0601e046e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-bg-care a {
  color: #ffffff;
}

.section-bg-care .overlay {
  background: rgba(31, 36, 48, 0.6);
  padding: 40px;
  border-radius: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  max-width: 620px;
}

.hero p {
  max-width: 520px;
  margin-top: 16px;
  color: #f3f4f4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.section {
  padding: 60px 6%;
}

.section.muted {
  background: var(--mist);
}

.section.clay {
  background: var(--clay);
}

.section.sand {
  background: var(--sand);
}

.mag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.col {
  flex: 1 1 280px;
}

.col.narrow {
  flex: 1 1 220px;
}

.col.wide {
  flex: 2 1 420px;
}

.image-frame {
  background: var(--pebble);
  padding: 8px;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 32px rgba(31, 36, 48, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 38px rgba(31, 36, 48, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8cfd6;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e1e5ea;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #1f2430;
  color: #f4f4f4;
}

.footer a {
  color: #f4f4f4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #d7dbe0;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(31, 36, 48, 0.18);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.accept {
  background: var(--accent);
  color: #ffffff;
}

.reject {
  background: var(--mist);
  color: var(--ink);
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.legal-block {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notice-box {
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e0e4ea;
}

.mt-small {
  margin-top: 18px;
}
