@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1f2a2d;
  --muted: #4f5d63;
  --accent: #2b6f6a;
  --accent-soft: #d8ebe7;
  --sand: #f6f2ec;
  --fog: #f1f4f3;
  --night: #0e2a2d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #dfe7e3;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 24px 8vw 8px;
  background: var(--sand);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.82rem;
  background: var(--accent-soft);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 64px 8vw;
}

.section-alt {
  background: var(--fog);
}

.section-dark {
  background: var(--night);
  color: var(--white);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 320px;
}

.hero-image {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: #245c58;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-ghost:hover {
  background: var(--accent-soft);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.image-frame {
  background: #dfe7e3;
  padding: 10px;
  border-radius: 16px;
  overflow: hidden;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 12px;
  height: 180px;
  width: 100%;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.bg-section {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.bg-section img {
  width: 100%;
  height: 340px;
}

.bg-section .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(14, 42, 45, 0.55);
  color: var(--white);
  text-align: center;
}

.testimonial {
  background: var(--white);
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-panel {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd6d1;
  font-family: inherit;
  font-size: 1rem;
  background: #fdfdfc;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

footer {
  background: #0b2023;
  color: #dfe7e3;
  padding: 48px 8vw;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-block {
  flex: 1 1 220px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 100;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.highlight {
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 8px;
}

.subtle {
  color: var(--muted);
}

.center-text {
  text-align: center;
}

.thin {
  font-weight: 300;
}
