* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2933;
  --muted: #5f6c72;
  --accent: #1f6feb;
  --accent-2: #2e8b57;
  --bg: #f6f3ee;
  --panel: #ffffff;
  --sand: #efe7dd;
  --stone: #dfe7ee;
  --sun: #f3d9b1;
  --shadow: 0 20px 50px rgba(31, 41, 51, 0.12);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1,
.brand h2 {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  color: var(--ink);
}

.ad-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sun);
  font-size: 0.75rem;
  color: var(--ink);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 6vw 60px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80") center/cover no-repeat;
  opacity: 0.2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 580px;
}

.hero h2 {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-card {
  position: relative;
  z-index: 1;
  background: var(--panel);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 380px;
}

.hero-card img {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  background: var(--sand);
}

.asym-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 70px 6vw;
  align-items: center;
}

.asym-section.reverse {
  flex-direction: row-reverse;
  background: var(--sand);
}

.asym-section .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asym-section .media-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-card {
  background: var(--panel);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 260px;
  background: var(--stone);
}

.callout {
  padding: 30px;
  background: var(--panel);
  border-left: 4px solid var(--accent-2);
  box-shadow: var(--shadow);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background: var(--sand);
}

.price {
  font-weight: 600;
  color: var(--accent-2);
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 24px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.form-section {
  background: var(--stone);
  padding: 70px 6vw;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--panel);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4dbe3;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
}

.footer {
  background: #101820;
  color: #e5e7eb;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e5e7eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-text {
  font-size: 0.85rem;
  color: #c5cbd2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--panel);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.hero-image {
  width: 100%;
  height: 240px;
  border-radius: 20px;
  background: var(--sun);
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 0.75rem;
  color: var(--muted);
}

.content-page {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 960px;
}

.split-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--sand);
  padding: 40px;
  border-radius: 24px;
}

.split-banner img {
  flex: 1 1 240px;
  height: 220px;
  border-radius: 18px;
  background: var(--stone);
}

.split-banner .text-block {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-panel {
  padding: 70px 6vw;
  background: var(--panel);
}

.cta-strip {
  background: var(--accent);
  color: #fff;
  padding: 30px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.cta-strip a {
  color: #fff;
}

.quote {
  font-style: italic;
  background: var(--panel);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.two-column > div {
  flex: 1 1 280px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  background: var(--panel);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.table-row span:first-child {
  font-weight: 600;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack img {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  background: var(--sun);
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

@media (max-width: 840px) {
  .hero {
    padding-top: 60px;
  }

  .hero h2 {
    font-size: 2.1rem;
  }

  .topbar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
