* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1f22;
  --muted: #5c616b;
  --accent: #c05b3a;
  --sand: #f3efe9;
  --slate: #2a2f36;
  --linen: #fff8f1;
  --mist: #e7ecef;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: 100%;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: var(--linen);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid #d2d2d2;
  border-radius: 20px;
  background: #ffffff;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  padding: 30px 6% 40px;
  background: var(--sand);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > .text,
.split > .media {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  border: 1px solid var(--ink);
  font-size: 0.95rem;
  background: var(--ink);
  color: #ffffff;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.section {
  padding: 54px 6%;
}

.section.alt {
  background: var(--mist);
}

.section.deep {
  background: var(--slate);
  color: #f7f7f7;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.section h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.section p {
  color: var(--muted);
}

.section.deep p {
  color: #d7dbe0;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  padding: 18px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e1e3e6;
  display: flex;
  gap: 18px;
  align-items: center;
}

.service-item .thumb {
  flex: 0 0 130px;
  background: #efe7de;
  border-radius: 14px;
  overflow: hidden;
}

.service-item .info {
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.image-frame {
  background: #e0d8cf;
  border-radius: 24px;
  overflow: hidden;
}

.image-frame.tall {
  min-height: 360px;
}

.bullet {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e4e6ea;
}

.form-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid #dadde2;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #cfd3d8;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-box button {
  cursor: pointer;
}

.split-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 38px 6%;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 6;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 16px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-size: 0.8rem;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--ink);
}

.page-hero {
  padding: 40px 6%;
  background: var(--mist);
}

.page-hero h1 {
  font-size: 2.2rem;
}

.contact-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  padding: 18px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e1e4e8;
}

.reference-list a {
  color: inherit;
  text-decoration: underline;
}

.notice {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 840px) {
  .topbar {
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}
