* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1f1c;
  --muted: #5c5c57;
  --sand: #f6f2ee;
  --clay: #e6dbd0;
  --sage: #c7d3c4;
  --night: #1e2421;
  --accent: #a3755f;
  --accent-dark: #7a5545;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  gap: 20px;
  background: var(--white);
  border-bottom: 1px solid #efe6de;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: var(--accent-dark);
  background: #f2e6de;
  padding: 4px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--accent);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
}

.hero {
  position: relative;
  padding: 90px 6vw 70px;
  background-color: #f4e9e1;
  background-image: url("https://images.unsplash.com/photo-1744805624890-9931ebb50428?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 680px;
}

.hero h1 {
  font-size: 42px;
  margin: 0;
  line-height: 1.15;
}

.hero p {
  margin: 0;
  font-size: 18px;
  color: #f6f2ee;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--accent-dark);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--white);
}

.section.bg-photo {
  background-color: #f0e5dc;
  background-image: url("https://images.unsplash.com/photo-1764670055753-1a190164b2ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9f4ef;
}

.section.bg-photo .section-title,
.section.bg-photo p,
.section.bg-photo a {
  color: #f9f4ef;
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px 0;
}

.asym-row {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.asym-media {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame {
  background: var(--clay);
  padding: 14px;
  border-radius: 20px;
  transform: translateY(-12px);
}

.image-frame.offset {
  transform: translate(18px, 20px);
}

.media-img {
  width: 420px;
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sage);
  font-size: 13px;
  color: #2e3a33;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(24, 20, 18, 0.08);
}

.card .image-frame {
  padding: 8px;
  border-radius: 18px;
  background: #f2e7df;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 16px;
}

.card-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.card button,
.card a {
  align-self: flex-start;
}

.floating-panel {
  background: var(--night);
  color: var(--white);
  padding: 30px;
  border-radius: 20px;
  max-width: 420px;
  margin-left: auto;
  margin-top: -40px;
}

.floating-panel a {
  color: #f6e7dc;
  text-decoration: underline;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  background: #fdfaf7;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  margin-left: 12px;
}

.quote {
  background: #f4efe9;
  border-radius: 18px;
  padding: 18px;
}

.form-shell {
  background: var(--white);
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(25, 18, 15, 0.1);
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row label {
  font-size: 13px;
  color: var(--muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e4d7ce;
  font-size: 14px;
  font-family: inherit;
  background: #faf8f6;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin: 40px 6vw 80px;
  background: var(--accent-dark);
  color: var(--white);
  border-radius: 18px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer {
  background: #1c1a18;
  color: #f7f2ed;
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 60px 6vw 30px;
  background: var(--clay);
}

.page-hero h1 {
  margin: 0 0 10px 0;
  font-size: 34px;
}

.page-content {
  padding: 30px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 280px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: #fbf7f3;
  padding: 16px;
  border-radius: 14px;
}

.service-item span {
  font-weight: 600;
}
