* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #2b5c73;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 8%;
  background: #faf7f1;
  border-bottom: 1px solid #e6dfd4;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  background: #2b5c73;
  color: #fff;
  padding: 6px 10px;
  border-radius: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 8% 24px;
  position: relative;
}

.hero-copy {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(28, 28, 28, 0.12);
}

.hero-copy h1 {
  margin-top: 0;
  font-size: 2.4rem;
}

.hero-media {
  flex: 1 1 320px;
  align-self: center;
}

.img-frame {
  background: #dcd3c7;
  padding: 6px;
  border-radius: 20px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.section {
  padding: 56px 8%;
}

.section.alt {
  background: #fffaf4;
}

.section-bg {
  background-image: linear-gradient(120deg, rgba(247, 245, 242, 0.92), rgba(247, 245, 242, 0.78)), url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.offset-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(21, 28, 36, 0.1);
  position: relative;
  top: 12px;
}

.offset-card.secondary {
  top: -12px;
  background: #f1ece4;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #2b5c73;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.secondary {
  background: #c77f4b;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(24, 24, 24, 0.12);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2d9cb;
}

.price-item strong {
  font-size: 1.05rem;
}

.price-tag {
  font-weight: 700;
  color: #2b5c73;
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.panel {
  flex: 1 1 300px;
}

.panel.highlight {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(28, 28, 28, 0.12);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #cfc7ba;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-status {
  font-size: 0.9rem;
  color: #2b5c73;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-left: 4px solid #c77f4b;
  background: #ffffff;
  border-radius: 12px;
}

.site-footer {
  margin-top: auto;
  background: #1d2b2f;
  color: #f5f1ea;
  padding: 36px 8%;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-grid a {
  color: #f5f1ea;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 16px 30px rgba(20, 20, 20, 0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 18px 36px rgba(24, 24, 24, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-copy {
  font-size: 0.9rem;
  color: #5a5146;
}

.page-title {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.wide-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(24, 24, 24, 0.12);
}

.wide-callout .button {
  align-self: center;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(24, 24, 24, 0.12);
  max-width: 460px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(24, 24, 24, 0.1);
}

.inline-cta {
  font-weight: 600;
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
}
