* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f0;
  --ink: #1f1d1b;
  --muted: #6c6460;
  --accent: #a35f5f;
  --accent-dark: #7a3f3f;
  --light: #ffffff;
  --panel: #efe7e1;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 28px 6vw 16px 6vw;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero {
  position: relative;
  padding: 80px 6vw 90px 6vw;
  background-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3d2b2b;
  color: var(--light);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 26, 26, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 24px;
  border: none;
  background: var(--accent);
  color: var(--light);
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.btn.secondary {
  background: var(--light);
  color: var(--accent-dark);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 30px 6vw 80px 6vw;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background: var(--panel);
  padding: 12px;
}

.offset-card {
  background: var(--light);
  padding: 26px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(35, 25, 25, 0.08);
  margin-top: -40px;
  width: min(420px, 100%);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 600;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
}

.form-panel {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-box {
  flex: 1 1 320px;
  background: var(--light);
  padding: 26px;
  border-radius: 16px;
}

.form-aside {
  flex: 1 1 260px;
  background: var(--panel);
  padding: 26px;
  border-radius: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7cfc8;
  font-size: 14px;
  background: #fffaf6;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.highlight-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.highlight-strip .tile {
  flex: 1 1 220px;
  background: var(--panel);
  padding: 18px;
  border-radius: 12px;
}

.image-band {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-band .image-box {
  flex: 1 1 220px;
  padding: 10px;
  border-radius: 12px;
}

.image-box {
  background: #e3d7cf;
}

.bg-rose {
  background: #e6d7ce;
}

.bg-sand {
  background: #e2cdc4;
}

.bg-blush {
  background: #ead9d0;
}

.bg-mauve {
  background: #d9c9bf;
}

.bg-clay {
  background: #d8c3ba;
}

.bg-dusk {
  background: #d7c0b7;
}

.legal-block {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.legal-block .side {
  flex: 1 1 260px;
  background: var(--panel);
  padding: 20px;
  border-radius: 12px;
}

.legal-block .content {
  flex: 2 1 340px;
}

footer {
  margin-top: auto;
  background: #1d1716;
  color: #f5f1ee;
  padding: 40px 6vw;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-grid .col {
  flex: 1 1 220px;
}

.footer-grid a {
  color: #f5f1ee;
}

.disclaimer {
  font-size: 12px;
  color: #d8d0cb;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  background: var(--accent-dark);
  color: var(--light);
  border-radius: 999px;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--light);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(25, 20, 20, 0.12);
  max-width: 320px;
  display: none;
  z-index: 6;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  flex: 1 1 auto;
  font-size: 12px;
  padding: 10px 12px;
}

.hero .btn.secondary {
  color: var(--accent-dark);
}

.simple-hero {
  padding: 60px 6vw 40px 6vw;
  background: var(--panel);
}

.simple-hero h1 {
  font-size: 36px;
}

.contact-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: var(--light);
  padding: 18px;
  border-radius: 12px;
}

.service-detail {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid #e4dcd6;
}

.service-detail .media {
  flex: 1 1 220px;
  background: #e2d7d0;
  padding: 8px;
  border-radius: 10px;
}

.service-detail .info {
  flex: 2 1 280px;
}

.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3b2b2b;
  color: #fff;
  padding: 50px 6vw;
}

.bg-texture .panel {
  background: rgba(28, 20, 20, 0.6);
  padding: 24px;
  border-radius: 14px;
  max-width: 560px;
}
