* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1115;
  --muted: #5b6472;
  --accent: #c9a96a;
  --accent-dark: #a88441;
  --cream: #f6f2eb;
  --slate: #1f2530;
  --panel: #ffffff;
  --shadow: 0 20px 50px rgba(15, 17, 21, 0.12);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfbfb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8vw;
  background: #ffffff;
  border-bottom: 1px solid #e9e4dc;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 70vh;
  background: var(--cream);
}

.hero-content {
  flex: 1 1 420px;
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0;
}

.hero-media {
  flex: 1 1 420px;
  background: #d7d1c7;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.light {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--panel);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 10px;
}

.section {
  padding: 70px 8vw;
}

.section.alt {
  background: #f2f4f7;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-media {
  flex: 1 1 360px;
  background: #d7d1c7;
  border-radius: 18px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--panel);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 14px;
  background: #dad2c7;
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  background: var(--panel);
  padding: 30px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7d1c7;
  font-size: 0.95rem;
  font-family: inherit;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.col {
  flex: 1 1 300px;
}

.footer {
  background: var(--slate);
  color: #f3f3f3;
  padding: 50px 8vw;
  margin-top: auto;
}

.footer a {
  color: #f3f3f3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: 0.9rem;
}

.notice {
  font-size: 0.85rem;
  color: #c7cbd3;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 20px;
  border-radius: 16px;
  max-width: 340px;
  display: none;
  z-index: 4;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.tagline {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
}

.simple-hero {
  padding: 70px 8vw 30px;
  background: #f8f6f2;
}

.simple-hero h1 {
  margin: 0;
}

.bg-sand {
  background-color: #c7c2bb;
}

.bg-stone {
  background-color: #d3cdc4;
}

.bg-dusk {
  background-color: #bfc1c4;
}

.bg-ivory {
  background-color: #dad2c7;
}

.bg-linen {
  background-color: #d2cdc6;
}

.bg-mist {
  background-color: #d6d1c8;
}

.bg-slate {
  background-color: #c8c9cc;
}

.text-block {
  max-width: 860px;
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ad-label {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
