* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1b16;
  --muted: #5c5248;
  --paper: #f5f1ea;
  --sand: #e7ddcf;
  --terracotta: #c78f6a;
  --moss: #6a6f4a;
  --linen: #f9f6f1;
  --shadow: rgba(24, 18, 12, 0.12);
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--linen);
  line-height: 1.6;
}

a {
  color: var(--moss);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px 6vw 96px;
}

header {
  padding: 28px 6vw 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.logo {
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.nav-links a,
.nav-links span {
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  background: var(--sand);
  color: var(--ink);
  border-radius: 18px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  max-width: 560px;
  font-size: 1.2rem;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  padding: 28px;
  box-shadow: 0 18px 40px var(--shadow);
  transform: translateX(12px);
}

.image-card {
  background: var(--sand);
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  padding: 28px;
  box-shadow: 0 14px 30px var(--shadow);
  align-self: flex-start;
}

.offset-block.right {
  align-self: flex-end;
  transform: translateX(-12px);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--paper);
  box-shadow: 0 12px 28px var(--shadow);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
  padding: 20px;
  box-shadow: 0 12px 24px var(--shadow);
}

.service-card .price {
  font-weight: bold;
  color: var(--terracotta);
}

.inline-cta {
  font-weight: bold;
  text-decoration: underline;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--paper);
  padding: 26px;
  box-shadow: 0 16px 32px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: bold;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #c7b8a9;
  background: #fff;
  font-size: 1rem;
}

.cta-btn {
  padding: 12px 18px;
  background: var(--moss);
  color: #fff;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.cta-btn.secondary {
  background: var(--terracotta);
}

.cta-btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--ink);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
  box-shadow: 0 16px 30px var(--shadow);
}

.sticky-cta button {
  background: var(--terracotta);
  border: none;
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
}

footer {
  padding: 48px 6vw;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--paper);
  border: 1px solid #cbbfb2;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
  box-shadow: 0 12px 24px var(--shadow);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.section-image {
  background: var(--sand);
  padding: 12px;
}

.section-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-image {
  background: #d9c9b9;
  padding: 10px;
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.muted {
  color: var(--muted);
}

.wide-title {
  font-size: 2.4rem;
  letter-spacing: 1px;
}

.section-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero-split {
    flex-direction: row;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    width: calc(50% - 9px);
  }
}
