* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1a16;
  --muted: #6d655d;
  --sand: #f3eee8;
  --clay: #d9c8b2;
  --leather: #6e4f3b;
  --stone: #ebe3da;
  --accent: #2f6b6b;
  --cream: #fffaf5;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 14px 24px;
  background: var(--sand);
}

.ad-label {
  font-weight: 600;
  color: var(--leather);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: var(--cream);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 15px;
  align-items: center;
}

.nav a,
.nav button {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sand);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.hero-text {
  flex: 1 1 340px;
  padding: 24px;
  background: var(--stone);
  border-radius: 28px;
  position: relative;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.1;
}

.hero-text p {
  margin: 20px 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-text .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.primary-btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
}

.ghost-btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-image {
  flex: 1 1 320px;
  min-height: 360px;
  border-radius: 32px;
  overflow: hidden;
  background: #c8c0b8;
  position: relative;
}

.floating-tag {
  position: absolute;
  right: 18px;
  top: -20px;
  background: var(--leather);
  color: white;
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 13px;
}

.asymmetric-band {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
  align-items: center;
}

.band-image {
  flex: 1 1 320px;
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
  background: #cdc1b4;
  transform: translateY(18px);
}

.band-text {
  flex: 1 1 360px;
  padding: 30px;
  background: var(--sand);
  border-radius: 26px;
  transform: translateY(-10px);
}

.band-text h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.band-text p {
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.service-card {
  flex: 1 1 260px;
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.card-image {
  height: 180px;
  background: #d2c8be;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.story-slice {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 70px;
}

.story-slice .story-text {
  flex: 1 1 360px;
  background: var(--cream);
  border-left: 3px solid var(--leather);
  padding: 24px 0 24px 24px;
}

.story-slice .story-text h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.story-slice .story-text p {
  color: var(--muted);
}

.story-image {
  flex: 1 1 280px;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: #cbc2b8;
  align-self: center;
  transform: translateX(18px);
}

.process-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.process-card {
  flex: 1 1 220px;
  padding: 22px;
  border-radius: 20px;
  background: var(--stone);
}

.process-card h4 {
  margin-bottom: 10px;
}

.quote-strip {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.quote {
  flex: 1 1 260px;
  padding: 22px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--sand);
}

.quote span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.form-wrap {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-panel {
  flex: 1 1 360px;
  background: var(--sand);
  padding: 28px;
  border-radius: 26px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d9d2c8;
  font: inherit;
  background: white;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.form-aside {
  flex: 1 1 280px;
  padding: 24px;
  border-radius: 24px;
  background: var(--stone);
  align-self: flex-start;
}

.section-divider {
  margin-top: 70px;
  padding: 26px;
  background: var(--leather);
  color: white;
  border-radius: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.footer {
  margin-top: 80px;
  padding: 30px 24px;
  background: var(--sand);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.legal-text {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  background: transparent;
  color: white;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: white;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
}

.cookie-accept {
  background: var(--accent);
  color: white;
}

.cookie-reject {
  background: white;
  color: var(--ink);
}

.simple-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px;
  border-radius: 26px;
  background: var(--stone);
}

.simple-hero h1 {
  font-size: 34px;
}

.content-block {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.content-block h2 {
  color: var(--ink);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  font-size: 16px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 720px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
