* {
  box-sizing: border-box;
}

:root {
  --bg: #f8f5f1;
  --ink: #1f1d1a;
  --muted: #5c5955;
  --accent: #8b5e3c;
  --accent-dark: #6f472b;
  --soft: #efe6db;
  --sand: #e3d6c7;
  --glass: rgba(255, 255, 255, 0.85);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.layout-shell {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.header {
  padding: 28px 0 10px;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 6px;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.nav a {
  padding: 4px 0;
}

.hero {
  position: relative;
  padding: 40px 0 80px;
}

.hero-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-media {
  flex: 1 1 55%;
  min-height: 320px;
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  flex: 1 1 35%;
  background: var(--glass);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
  align-self: center;
  margin-top: -30px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:active {
  transform: translateY(1px);
}

.section {
  padding: 60px 0;
}

.section.soft {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section.bg-linen {
  background-image: linear-gradient(
      rgba(248, 245, 241, 0.9),
      rgba(248, 245, 241, 0.9)
    ),
    url("https://images.unsplash.com/photo-1528458909336-e7a0adfed0a5?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.asym-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  max-width: 420px;
}

.offset-right {
  margin-left: auto;
}

.offset-left {
  margin-right: auto;
}

.media-block {
  flex: 1 1 45%;
  min-height: 260px;
  background: var(--sand);
  border-radius: 16px;
  overflow: hidden;
}

.text-block {
  flex: 1 1 45%;
}

.service-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
}

.form-shell {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

form {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c0b7;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.floating-sticky {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.footer {
  padding: 40px 0 60px;
  background: #1b1917;
  color: #f5f2ee;
}

.footer a {
  color: #f5f2ee;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.legal-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 0 20px;
}

.page-hero .asym-row {
  align-items: flex-end;
}

.simple-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.fine-print {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero-card {
    margin-top: 0;
  }

  .floating-sticky {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
