* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1c1c;
  --muted: #5d5d5d;
  --cream: #f7f3ee;
  --sand: #efe7dd;
  --forest: #2a3d33;
  --sage: #7a8f7b;
  --accent: #c87f4a;
  --accent-dark: #a9673a;
  --line: #e4ded7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
}

.hero {
  background-color: #dde4e0;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 26, 24, 0.55);
}

.hero-content {
  position: relative;
  padding: 110px 0 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #e9e2d6;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
  color: #f1ebe2;
}

.primary-btn,
.secondary-btn {
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.primary-btn {
  background: var(--accent);
  color: #ffffff;
}

.primary-btn:hover {
  background: var(--accent-dark);
}

.secondary-btn {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--cream);
}

.section.deep {
  background: var(--forest);
  color: #f7f3ee;
}

.section.deep .muted {
  color: #d7d0c8;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .image-frame {
  flex: 1 1 320px;
  background: #dfe5e1;
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

.note {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  margin: 24px 0;
  color: var(--muted);
}

.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  background: var(--sand);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.card-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image-frame {
  background: #e5e1db;
  padding: 8px;
  border-radius: 14px;
}

.card .image-frame img {
  height: 180px;
  border-radius: 10px;
}

.quote {
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 18px;
  color: var(--muted);
  background: #ffffff;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.pricing-item:last-child {
  border-bottom: none;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row .field {
  flex: 1 1 200px;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.sticky-cta button {
  border: none;
  background: var(--forest);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.sticky-cta button:hover {
  background: #1e2c25;
}

.footer {
  background: #151a18;
  color: #e5dfd5;
  padding: 50px 0 70px;
}

.footer a {
  color: #e5dfd5;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 340px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--forest);
  color: #ffffff;
}

.cookie-reject {
  background: var(--sand);
}

.page-hero {
  background: var(--sand);
  padding: 70px 0;
}

.page-hero h1 {
  margin: 0 0 8px;
}

.list {
  padding-left: 18px;
  color: var(--muted);
}

.contact-box {
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
}

.background-panel {
  background-color: #e2e6e2;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-panel .container {
  padding: 70px 0;
}

.muted {
  color: var(--muted);
}

@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
