* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1b1a;
  background: #f5f2ee;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: #f2ede6;
  border-bottom: 1px solid #ddd3c7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 48px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  padding: 4px 10px;
  border: 1px solid #bfb4a6;
  border-radius: 999px;
  background: #fff7ee;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1c1b1a;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-color: #3c2f23;
  background-size: cover;
  background-position: center;
  color: #fffdf8;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 12, 0.55);
}

.hero-content {
  position: relative;
  padding: 96px 48px 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #f7d9a5;
  color: #2d2417;
  font-weight: 600;
  border-radius: 6px;
  width: fit-content;
}

.content {
  padding: 64px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.magazine-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.column-narrow {
  flex: 1 1 220px;
  min-width: 220px;
}

.column-wide {
  flex: 2 1 440px;
  min-width: 280px;
}

.panel {
  background: #fff;
  border: 1px solid #e2d9cd;
  padding: 28px;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.image-block {
  background: #e6ded3;
  padding: 12px;
}

.image-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #e3dbcf;
  display: flex;
  flex-direction: column;
}

.actions-top {
  margin-top: 20px;
}

.service-card .image-block {
  padding: 0;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #6a3a13;
}

.cta-section {
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
  background-color: #3a2d21;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(41, 29, 18, 0.65);
}

.cta-inner {
  position: relative;
  padding: 52px;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-inner a {
  width: fit-content;
}

.form-section {
  background: #fff;
  border: 1px solid #e5dbcf;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #c9bfb1;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 6px;
  background: #2d2417;
  color: #fff;
  font-weight: 600;
}

.btn-secondary {
  background: #f4e2c7;
  color: #2d2417;
}

.note {
  font-size: 0.9rem;
  color: #56473b;
}

.footer {
  margin-top: auto;
  background: #efe8de;
  border-top: 1px solid #dccfc0;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.disclaimer {
  background: #fff4e6;
  padding: 12px;
  border-left: 3px solid #d0a76d;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #6a3a13;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 999;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border: 1px solid #d9c9b7;
  padding: 16px;
  z-index: 1000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.subtle {
  color: #5b4a3a;
}

.page-header {
  padding: 48px;
  background: #f5eee4;
  border-bottom: 1px solid #e0d4c5;
}

.page-header h1 {
  margin: 0 0 8px;
  font-size: 2.2rem;
}

.simple-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-blocks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #e1d5c8;
  padding: 20px;
}

.thankyou {
  padding: 60px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 820px) {
  .nav,
  .content,
  .footer,
  .hero-content,
  .page-header,
  .simple-content,
  .thankyou {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content {
    padding-top: 72px;
  }
}
