* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background: #f7f4ef;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: #1f4a66;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-wrap {
  background: #f0ebe2;
  border-bottom: 1px solid #d7d2c8;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #1f4a66;
  color: #fff;
  padding: 6px 10px;
  border-radius: 16px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 28px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 360px;
  background: #d2c6b8;
  border-radius: 26px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 18px;
  background: #1f4a66;
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.btn-secondary {
  background: #e4ded2;
  color: #1f2428;
}

.section {
  padding: 50px 28px;
}

.section.alt {
  background: #efe7db;
}

.section.deep {
  background: #1f4a66;
  color: #f8f4ef;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-frame {
  flex: 1 1 320px;
  min-height: 260px;
  background: #c8c2b9;
  border-radius: 20px;
  overflow: hidden;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
  width: 100%;
  height: 160px;
  background: #d8d0c4;
  border-radius: 14px;
  overflow: hidden;
}

.quote {
  border-left: 4px solid #1f4a66;
  padding-left: 16px;
  font-style: italic;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-size: 14px;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px;
  border: 1px solid #d3cbbf;
  border-radius: 10px;
  font-size: 14px;
  background: #fdfbf8;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  margin-top: auto;
  background: #111b22;
  color: #f2eee8;
  padding: 30px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  font-size: 13px;
}

.footer a {
  color: #f2eee8;
}

.floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 4;
  border-radius: 999px;
  padding: 12px 18px;
  background: #d48b2f;
  color: #1f2428;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  width: min(320px, 90vw);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  z-index: 5;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-flow {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  padding: 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.small-note {
  font-size: 13px;
  color: #5f6b73;
}

@media (max-width: 720px) {
  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}
