* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --ink: #1f1f1f;
  --muted: #5b5b5b;
  --accent: #2a5b6e;
  --accent-2: #9c6b3f;
  --panel: #ffffff;
  --soft: #ece6de;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw;
  background: var(--panel);
  border-bottom: 1px solid #e2ddd6;
}

.header-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #f1ede7;
  padding: 6px 10px;
  border-radius: 16px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding: 4px 0;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 64px 6vw;
  background: #0f1f24;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content,
.hero-side {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 24px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 56px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.soft {
  background: var(--soft);
  box-shadow: none;
}

.media-box {
  flex: 1;
  background: #d9d0c6;
  border-radius: 18px;
  overflow: hidden;
}

.media-box img {
  width: 100%;
  height: 100%;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: #f7f2ec;
}

.service-item strong {
  font-size: 1.05rem;
}

.service-price {
  color: var(--accent-2);
  font-weight: 600;
}

.inline-image {
  width: 100%;
  border-radius: 16px;
  background: #d3ccc3;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 280px;
}

.form-section {
  background: #1f2e33;
  color: #fff;
}

.form-section .panel {
  background: #23353b;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #c8c2b8;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-status {
  font-size: 0.9rem;
  color: #ffe6b3;
  min-height: 20px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background: #fff;
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 36px 6vw;
  background: #141414;
  color: #d8d8d8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #d8d8d8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal-note {
  font-size: 0.85rem;
  color: #b3b3b3;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  color: #1f1f1f;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  border: none;
  border-radius: 20px;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #e7e1d9;
  color: #1f1f1f;
}

.page-title {
  padding: 42px 6vw 0;
  font-size: 2rem;
}

.simple-section {
  padding: 28px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.simple-section ul {
  margin: 0;
  padding-left: 18px;
}

.legal-block {
  background: var(--panel);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.contact-grid .panel {
  flex: 1;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .contact-grid {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
