:root {
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --ink: #1f1f1f;
  --muted: #5c5c5c;
  --accent: #1d6f6b;
  --accent-soft: #d8ebe7;
  --border: #e1ddd7;
  --chip: #f0e7dc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 24px 6vw 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-label {
  padding: 6px 12px;
  background: var(--chip);
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  padding: 18px 6vw 40px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.panel {
  background: var(--bg-alt);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.panel.accent {
  background: var(--accent-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  margin: 10px 0 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.light {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--border);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta a {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.two-col > div {
  flex: 1 1 280px;
}

.image-frame {
  background: #d9d4cd;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-row.spaced {
  margin-top: 24px;
}

.card {
  flex: 1 1 220px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--chip);
  font-size: 0.85rem;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.bg-supply {
  background: #26433f
    linear-gradient(120deg, rgba(31, 111, 107, 0.08), rgba(255, 255, 255, 0)),
    url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80") center/cover no-repeat;
  color: #fff;
}

.bg-supply .section-title,
.bg-supply p {
  color: #fff;
}

.bg-supply .panel {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.form-wrap {
  background: var(--bg-alt);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 28px;
}

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 var(--border);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw;
  background: #1b1b1b;
  color: #f2f2f2;
}

.footer a {
  color: #f2f2f2;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 10px;
}

.mini-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.simple-section {
  padding: 28px 6vw;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-item {
  flex: 1 1 260px;
  padding: 18px;
  border-radius: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.service-item .price {
  font-weight: 700;
  color: var(--accent);
}

.legal-box {
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 20px;
}
