* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1f24;
  --muted: #5b616e;
  --accent: #c45b3a;
  --accent-dark: #9d4429;
  --bg: #f6f3ef;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 32px;
  background: #fff;
  border-bottom: 1px solid #e3e0db;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: #7b4a3a;
  padding: 6px 10px;
  border: 1px solid #e3d6cf;
  border-radius: 999px;
  background: #f9f2ee;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  min-width: 280px;
}

.split .media {
  flex: 1;
  min-width: 280px;
  background: #e9e4dd;
  padding: 12px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.split .media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
}

.hero {
  padding-top: 20px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta-center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #f1e6df;
  color: #6b3426;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-top: 18px;
}

.split-card {
  background: var(--panel);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(30, 30, 30, 0.08);
}

.service-card img {
  width: 140px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  background: #e0dbd3;
}

.service-card h3 {
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: #713621;
}

.panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel.bg-image {
  position: relative;
  overflow: hidden;
  color: #1a1a1a;
}

.panel.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.panel.bg-image.lock-bg::before {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.panel.bg-image.workshop-bg::before {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.panel.bg-image .panel-content {
  position: relative;
  z-index: 1;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid #d8d3ca;
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  background: #1f1f23;
  color: #e5e3de;
  padding: 40px 20px 80px;
}

.footer a {
  color: #f2c7b6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #f6efe9;
  border: 1px solid #e4d9cf;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(30, 30, 30, 0.15);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.sticky-cta .button {
  padding: 8px 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e1ddd5;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.policy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.contact-block {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.divider {
  height: 1px;
  background: #e0ddd8;
  margin: 32px 0;
}

.quiet {
  color: var(--muted);
}

.image-frame {
  background: #e4dfd7;
  padding: 10px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-hero {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.mini-hero img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  background: #dcd6ce;
}

.text-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.text-columns .panel {
  flex: 1;
  min-width: 260px;
}

.thankyou {
  text-align: center;
  padding: 80px 20px;
}

.reference-list {
  font-size: 13px;
  color: #c7bcb1;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
