* {
  box-sizing: border-box;
}

:root {
  --ink: #111112;
  --muted: #5f5f66;
  --surface: #f5f2ee;
  --surface-2: #efe9e2;
  --accent: #2d5b5b;
  --accent-2: #a26b3d;
  --line: #d9d2c8;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 22px 7vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--surface);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 62vh;
  padding: 80px 7vw;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1567123642359-1df51b05afd0?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.25));
}

.hero-inner {
  position: relative;
  max-width: 540px;
  color: #fff;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  padding: 26px;
  border-radius: 14px;
}

.hero-inner h1 {
  margin: 0 0 10px;
  font-size: 2.4rem;
  line-height: 1.1;
}

.hero-inner p {
  margin: 0 0 18px;
  color: #e8e8e8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  background: var(--accent-2);
  color: #fff;
  border-radius: 999px;
  z-index: 5;
}

.section {
  padding: 70px 7vw;
}

.section.alt {
  background: var(--surface);
}

.section.muted {
  background: var(--surface-2);
}

.section.bg-image {
  background-image: url("https://images.unsplash.com/photo-1483000805330-4eaf0a0d82da?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section.bg-image .offset-card {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-color: transparent;
}

.section h2 {
  margin-top: 0;
  font-size: 2rem;
}

.offset-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.offset-row {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 320px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.offset-card.highlight {
  transform: translateY(-18px);
  background: #1f3333;
  color: #f2f2f2;
  border-color: transparent;
}

.media-frame {
  flex: 1 1 280px;
  background: #d6d0c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-wrap label {
  font-size: 0.95rem;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer {
  padding: 40px 7vw;
  background: #111112;
  color: #e4e4e4;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f0d3b0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  max-width: 360px;
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-title {
  padding: 40px 7vw 20px;
}

.simple-content {
  padding: 0 7vw 60px;
  max-width: 820px;
  line-height: 1.7;
}

.simple-content h2 {
  margin-top: 32px;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 16px;
}

@media (max-width: 880px) {
  .hero {
    padding: 60px 6vw;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
