:root {
  --ink: #1b1f23;
  --muted: #4a5568;
  --accent: #1b5e7a;
  --accent-2: #7a4e1b;
  --bg: #f7f4ef;
  --surface: #ffffff;
  --soft: #efe8dd;
  --line: #d6cfc5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

header {
  padding: 28px 0 12px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-links a,
.nav-links span {
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-2);
  font-size: 0.85rem;
}

.hero {
  padding: 50px 0 70px;
}

.hero-panel {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 340px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero-visual {
  flex: 1 1 300px;
  min-height: 320px;
  border-radius: 16px;
  background-color: #d9d0c5;
  background-size: cover;
  background-position: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  padding: 6px 12px;
  background: var(--soft);
  border-radius: 999px;
  color: var(--accent-2);
}

.magazine-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.col-wide {
  flex: 2 1 420px;
}

.col-narrow {
  flex: 1 1 240px;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #f0ece5;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-wrap {
  background: #e5e0d9;
  border-radius: 12px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.image-wrap.small img {
  height: 160px;
}

.note {
  border-left: 3px solid var(--accent-2);
  padding-left: 16px;
  color: var(--muted);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.primary-button {
  background: var(--accent);
  color: #fff;
}

.secondary-button {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.95rem;
}

.footer {
  padding: 40px 0 60px;
  background: #1f2328;
  color: #e6e0d8;
}

.footer a {
  color: #f1d9a6;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 16px;
  display: none;
  z-index: 12;
}

.banner.visible {
  display: block;
}

.banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.background-section {
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 40px;
  color: #fff;
  background-color: #4a4f55;
}

.background-section p {
  color: #f1f1f1;
}

.hero-bg-index {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.story-bg {
  background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1400&q=80");
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1507537297725-24a1c029d3ca?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=1400&q=80");
}

.legal-hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
}

.legal-hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

.legal-hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
}

.legal-hero-terms {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1400&q=80");
}

.thanks-hero {
  background-image: url("https://images.unsplash.com/photo-1521790797524-b2497295b8a0?w=1400&q=80");
}

@media (max-width: 768px) {
  .hero-panel {
    flex-direction: column;
  }

  .background-section {
    padding: 28px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
