@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #f5f2ed;
  --ink: #1e1e1e;
  --muted: #5f5c58;
  --accent: #2f5d62;
  --accent-2: #cf9f6b;
  --panel: #ffffff;
  --line: #ded7cf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #e7ded2;
}

.page {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0 16px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #efe6dc;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 360px;
}

.split .media {
  flex: 1 1 360px;
  min-height: 320px;
  background: #e7ded2;
  border-radius: 18px;
  overflow: hidden;
}

.section {
  padding: 42px 0;
}

.section.panel {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  margin-top: 0;
  font-size: 2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.service-item img {
  width: 160px;
  height: 120px;
  border-radius: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.two-col > div {
  flex: 1 1 220px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.info-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.banner {
  background: #efe6dc;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

footer {
  padding: 32px 0 100px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background: #1f2f2c;
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta .btn {
  border-color: #fff;
  background: #fff;
  color: #1f2f2c;
}

.cookie-banner {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hero-eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.hero-title {
  font-size: 2.6rem;
  margin: 12px 0;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--muted);
}

.accent-panel {
  background: #f0e2d3;
  border-radius: 18px;
  padding: 22px;
}

.small-note {
  font-size: 0.9rem;
  color: var(--muted);
}
