* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2328;
  background: #f6f4f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.image-frame {
  background: #d5d8db;
  border-radius: 16px;
  overflow: hidden;
}

a {
  color: #1a4d6f;
  text-decoration: none;
}

button,
select,
input,
textarea {
  font-family: inherit;
}

.site-header {
  padding: 24px 6vw 12px;
}

.nav-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d7d2cc;
  padding-bottom: 12px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: #6a4a2f;
  background: #f3e7db;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6vw;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
  padding: 12px 16px 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(26, 30, 36, 0.08);
  margin-top: 20px;
}

.hero-image {
  flex: 1 1 360px;
  min-width: 280px;
  background: #d9d3cc;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 6vw;
  align-items: center;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 260px;
  min-width: 240px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(32, 33, 38, 0.08);
}

.offset-media {
  flex: 1 1 300px;
  min-width: 260px;
  background: #d8e0e6;
  border-radius: 18px;
  overflow: hidden;
}

.offset-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.split-banner {
  margin: 10px 6vw 30px;
  padding: 24px;
  background: #1f2a33;
  color: #f6f4f2;
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.split-banner .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  background: #2f6a8a;
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn.secondary {
  background: #f0d5a9;
  color: #3b2b1e;
}

.btn.ghost {
  background: transparent;
  color: #f6f4f2;
  border: 1px solid #f6f4f2;
}

.services-wrap {
  padding: 30px 6vw;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: stretch;
}

.service-row .service-card {
  flex: 1 1 260px;
  min-width: 240px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(30, 30, 35, 0.08);
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  background: #d1d7db;
}

.price-tag {
  font-weight: 700;
  color: #1a4d6f;
}

.story-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 6vw;
  background: #f0ede8;
}

.story-box {
  flex: 1 1 260px;
  min-width: 220px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 18px;
}

.form-shell {
  margin: 30px 6vw 40px;
  padding: 28px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(34, 33, 39, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
  min-width: 200px;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c8c8;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.site-footer {
  padding: 30px 6vw 50px;
  background: #1f2a33;
  color: #f6f4f2;
}

.site-footer p {
  margin: 6px 0;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.floating-cta .btn {
  box-shadow: 0 10px 24px rgba(30, 30, 35, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 11;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  width: min(320px, 90vw);
  box-shadow: 0 12px 30px rgba(30, 30, 35, 0.2);
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-header {
  padding: 30px 6vw 10px;
}

.content-block {
  padding: 20px 6vw 30px;
}

.contact-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.note {
  font-size: 0.9rem;
  color: #5c6368;
}

.thanks-box {
  padding: 30px 6vw 60px;
}

.reference-list a {
  color: #f7d9ad;
}

@media (max-width: 720px) {
  .floating-cta {
    position: static;
    margin: 16px 6vw 0;
  }

  .cookie-banner {
    position: static;
    margin: 10px 6vw 20px;
  }
}
