* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1d1d;
  background: #f5f2ee;
  line-height: 1.6;
}

a {
  color: #1b3c59;
  text-decoration: none;
}

a:focus {
  outline: 2px solid #1b3c59;
  outline-offset: 2px;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 22px 0;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #1b3c59;
  color: #f5f2ee;
}

.hero {
  background: #0e1a26;
  color: #f5f2ee;
  padding: 80px 0 70px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-image {
  flex: 1 1 320px;
}

.hero-image .image-frame {
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.frame-hero {
  height: 360px;
  border-radius: 24px;
}

.frame-medium {
  height: 260px;
  border-radius: 20px;
}

.frame-card {
  height: 180px;
  border-radius: 18px 18px 0 0;
}

.frame-tall {
  height: 220px;
  border-radius: 20px;
}

.bg-deep {
  background: #243345;
}

.bg-sand {
  background: #b7b1a6;
}

.bg-ink {
  background: #2a3946;
}

.bg-mist {
  background: #c6ced1;
}

.bg-ochre {
  background: #d1c8bc;
}

.bg-cloud {
  background: #d7cfc3;
}

.bg-slate {
  background: #cfd7d9;
}

.bg-cement {
  background: #c8c1b7;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f5f2ee;
  color: #0e1a26;
  font-weight: 600;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f2d07c;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1b2a34;
  color: #f5f2ee;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.asym-card {
  flex: 1 1 300px;
  background: #f5f2ee;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.section.dark .asym-card {
  background: #243345;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card .card-body {
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #1b3c59;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-left: 4px solid #f2d07c;
  background: rgba(255, 255, 255, 0.08);
}

.testimonial + .testimonial {
  margin-top: 16px;
}

.form-panel {
  background: #f5f2ee;
  padding: 28px;
  border-radius: 20px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #b2b2b2;
  font-size: 15px;
  font-family: inherit;
}

button {
  padding: 12px 18px;
  border: none;
  border-radius: 12px;
  background: #1b3c59;
  color: #f5f2ee;
  font-weight: 600;
  cursor: pointer;
}

.floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #f2d07c;
  color: #1b2a34;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.footer {
  background: #0e1a26;
  color: #f5f2ee;
  padding: 50px 0 40px;
}

.footer a {
  color: #f2d07c;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #ccc;
  padding: 16px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  background: #1b3c59;
  color: #f5f2ee;
}

.cookie-actions .reject-btn {
  background: #9b9b9b;
}

.page-hero {
  padding: 60px 0;
  background: #1b2a34;
  color: #f5f2ee;
}

.page-hero .image-frame {
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #243345;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.info-box {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
}

.legal-text {
  max-width: 820px;
}
