* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a33;
  --muted: #5b6b77;
  --accent: #1c6b7d;
  --accent-2: #e6a843;
  --bg: #f6f4f1;
  --panel: #ffffff;
  --shadow: rgba(31, 42, 51, 0.08);
  --line: rgba(31, 42, 51, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 28px 6vw 18px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.nav-left,
.nav-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--ink);
}

.nav-link:hover,
.btn:hover,
.pill-link:hover {
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  background: #fff;
  transition: transform 0.2s ease;
}

.section {
  padding: 48px 6vw;
}

.section-tight {
  padding: 32px 6vw;
}

.panel {
  background: var(--panel);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 40px var(--shadow);
}

.asym-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.asym-left {
  flex: 1 1 320px;
  min-width: 280px;
}

.asym-right {
  flex: 1 1 360px;
  min-width: 300px;
}

.offset-up {
  margin-top: -28px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-image {
  flex: 1 1 360px;
}

.img-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #e8edf0;
  padding: 8px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 18px;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 28px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.background-panel .panel {
  background: rgba(31, 42, 51, 0.78);
  color: #fff;
}

.inline-image {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.inline-image .copy {
  flex: 1 1 260px;
}

.inline-image .visual {
  flex: 1 1 260px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 12px 14px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row > div {
  flex: 1 1 220px;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.footer {
  padding: 32px 6vw 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-col {
  flex: 1 1 200px;
}

.footer a {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 24px var(--shadow);
  max-width: 360px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.wide {
  width: 100%;
}

.mt-16 {
  margin-top: 16px;
}

.page-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

@media (max-width: 860px) {
  .sticky-cta {
    right: 10px;
    left: 10px;
    bottom: 10px;
    justify-content: space-between;
  }
}
