* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6%;
  gap: 16px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: #575757;
  max-width: 260px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 6% 64px;
  align-items: center;
}

.hero-visual {
  flex: 1 1 420px;
  background: #e5e1da;
  padding: 18px;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 420px;
}

.hero-copy {
  flex: 1 1 360px;
  background: #ffffff;
  padding: 32px;
  margin-left: -48px;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.hero-copy h1 {
  margin-top: 0;
  font-size: 36px;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #ffffff;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1b1b1b;
  color: #1b1b1b;
}

.section {
  padding: 56px 6%;
  position: relative;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.offset-card.narrow {
  max-width: 420px;
}

.offset-media {
  flex: 1 1 320px;
  background: #e2ddd2;
  padding: 16px;
}

.offset-media img {
  width: 100%;
  height: 300px;
}

.layered {
  background: #ece7de;
  padding: 60px 6%;
}

.layered .layer-card {
  background: #ffffff;
  padding: 32px;
  margin-top: -40px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
}

.service-item img {
  width: 180px;
  height: 120px;
  background-color: #dcd6cb;
}

.service-details {
  flex: 1 1 220px;
}

.service-price {
  font-weight: 600;
}

.split-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split-blocks .panel {
  flex: 1 1 260px;
  padding: 24px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #c8c8c8;
  font-size: 14px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1b1b1b;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #ffffff;
  color: #1b1b1b;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
}

.footer {
  background: #131313;
  color: #f2f2f2;
  padding: 48px 6%;
}

.footer a {
  color: #f2f2f2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer small {
  color: #bdbdbd;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 16px;
  max-width: 320px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1b1b1b;
}

.notice {
  background: #fff6e8;
  padding: 18px;
  border-radius: 10px;
}

.page-hero {
  padding: 40px 6% 24px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 32px;
}

.content {
  padding: 0 6% 48px;
}

.simple-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.plain-list {
  padding-left: 18px;
}

@media (max-width: 900px) {
  .hero-copy {
    margin-left: 0;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
