* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1b16;
  --sand: #f4efe8;
  --clay: #c87f5a;
  --sage: #7c8f79;
  --night: #2b2b2f;
  --cream: #fffaf4;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 26px 5vw 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 13px;
  background: var(--night);
  color: var(--cream);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 5vw 60px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.1;
}

.hero-text p {
  max-width: 500px;
}

.hero-visual {
  flex: 1 1 320px;
  background: #e7d3c3;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.primary-btn {
  background: var(--clay);
  color: var(--cream);
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  align-self: flex-start;
}

.secondary-btn {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.section {
  padding: 60px 5vw;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.asym-grid.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 320px;
  padding: 26px;
  background: var(--sand);
  border-radius: 20px;
  position: relative;
}

.offset-card.shift {
  margin-top: -24px;
}

.offset-card h2,
.offset-card h3 {
  margin-bottom: 14px;
}

.image-frame {
  flex: 1 1 320px;
  background: #d9c6b8;
  border-radius: 22px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff3e8;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  background: #e7d3c3;
}

.price {
  font-weight: 700;
  color: var(--sage);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fdf3ea;
  padding: 24px;
  border-radius: 18px;
}

label {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5c6b8;
  font-size: 14px;
  background: #fff;
}

.form-note {
  flex: 1 1 220px;
  background: #eef1ea;
  padding: 20px;
  border-radius: 16px;
}

.cta-inline {
  color: var(--clay);
  text-decoration: underline;
  cursor: pointer;
}

.highlight {
  background: var(--night);
  color: var(--cream);
  padding: 40px 5vw;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.highlight p {
  max-width: 520px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--night);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: var(--clay);
  border: none;
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}

footer {
  padding: 40px 5vw 60px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal {
  font-size: 13px;
  color: #4c4c50;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff8ef;
  border: 1px solid #e0d2c3;
  border-radius: 18px;
  padding: 18px;
  display: none;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--sage);
  color: var(--cream);
}

.cookie-reject {
  background: #d9c6b8;
}

.page-hero {
  padding: 40px 5vw 30px;
}

.page-hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.content-block {
  padding: 20px 5vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-block ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-card {
  background: #fff4ec;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}

.thanks-box {
  padding: 24px;
  border-radius: 18px;
  background: #eef1ea;
  max-width: 520px;
}
