* {
  box-sizing: border-box;
}

:root {
  --ink: #1d2533;
  --muted: #5a6578;
  --accent: #b43b45;
  --accent-dark: #8f2a32;
  --bg: #f6f4f1;
  --panel: #ffffff;
  --panel-muted: #eef0f3;
  --line: #d6dbe2;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #121621;
  color: #f5f6f8;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: #cdd6e3;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.sidebar-cta {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 12px;
}

.sidebar-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 36px 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  color: #fff;
  padding: 36px;
  border-radius: 24px;
  background-color: #273042;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 22, 33, 0.82), rgba(18, 22, 33, 0.15));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn.alt {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.section {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 26px;
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(15, 18, 29, 0.06);
}

.section.alt {
  background: var(--panel-muted);
}

.section.dark {
  background: #1f2534;
  color: #f3f4f7;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background: #d9dfe7;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f2e8e8;
  color: #80232b;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.pricing {
  font-weight: 600;
  color: var(--accent-dark);
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 18px;
  background: #f1f1f1;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #111522;
  color: #f5f7fb;
  padding: 16px;
  border-radius: 14px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #f0c6c8;
  color: #1b1b1b;
}

.cookie-actions .reject {
  background: #303851;
  color: #f5f6f8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 26px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  padding: 10px 12px;
  z-index: 9;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-weight: 600;
}

.banner {
  background: #f9efe7;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.banner strong {
  font-size: 18px;
}

.legal-hero {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.legal-hero h1 {
  margin: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.focus-bg {
  background-color: #f4e9e4;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
}

.hero-legal {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1504386106331-3e4e71712b38?w=1400&q=80");
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 24px;
  }
}
