* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f5f2;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #2a5b7a;
  --accent-2: #8f6a3a;
  --surface: #ffffff;
  --line: #e1dfda;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw 8px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
}

.nav-panel {
  display: none;
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
}

.nav-panel.is-open {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 6vw 56px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 360px;
  background: var(--surface);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  top: 18px;
}

.hero-media {
  flex: 1 1 380px;
  border-radius: 18px;
  overflow: hidden;
  background: #d7d2c9;
  min-height: 360px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 48px 6vw;
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.panel-image {
  flex: 1 1 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #d8d1c6;
  min-height: 260px;
}

.band {
  background: #1f2f3a;
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center;
}

.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.bg-band-logistics {
  background-image: url("https://images.unsplash.com/photo-1684695747561-9372850cf165?w=1400&q=80");
}

.band-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.band-content .panel {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.card-image {
  background: #d8d1c6;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 340px;
}

.form-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

select,
input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #101416;
  color: #d3d7d9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  display: block;
  margin-top: 16px;
  color: #a5aaad;
}

.disclaimer {
  margin-top: 18px;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
  max-width: 360px;
  z-index: 60;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}

.page-hero {
  padding: 28px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero .panel {
  position: relative;
  top: -12px;
}

.page-image {
  flex: 1 1 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #d2cbc2;
  min-height: 240px;
}

.plain-section {
  padding: 24px 6vw 48px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
}

.legal-block {
  max-width: 860px;
}

@media (max-width: 860px) {
  .hero-text {
    top: 0;
  }

  .page-hero .panel {
    top: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
