* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1f4b99;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  background: #ffffff;
  border-bottom: 1px solid #e6e1d8;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #6e5d4f;
  border: 1px dashed #c7b7a5;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fbf7f2;
}

.section {
  padding: 72px 8%;
}

.section-tight {
  padding: 48px 8%;
}

.hero {
  position: relative;
  background: #fff6ec;
  overflow: hidden;
}

.hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1 1 320px;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hero-image {
  flex: 1 1 360px;
  position: relative;
  padding: 18px;
  border-radius: 28px;
  transform: translateY(12px);
}

.hero-image img {
  width: 100%;
  height: 360px;
  border-radius: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-spacing {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #1f4b99;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(31, 75, 153, 0.2);
}

.btn-secondary {
  background: #f0e4d2;
  color: #402f22;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1f4b99;
  color: #1f4b99;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.offset-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.offset-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(20, 20, 20, 0.08);
  transform: translateY(-28px);
}

.offset-media {
  flex: 1 1 320px;
  padding: 14px;
  border-radius: 26px;
}

.offset-media img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(30, 30, 30, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 180px;
}

.service-card .price {
  font-weight: 700;
  color: #1f4b99;
}

.striped {
  background: #f2ede6;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.metric {
  flex: 1 1 160px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #efe7dc;
}

.story-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.story-row .text {
  flex: 1 1 320px;
}

.story-row .image {
  flex: 1 1 320px;
  padding: 16px;
  border-radius: 22px;
}

.story-row .image img {
  width: 100%;
  height: 280px;
  border-radius: 14px;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(25, 25, 25, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6cbbd;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row .field {
  flex: 1 1 220px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta button {
  padding: 14px 22px;
}

.footer {
  background: #1d1f24;
  color: #f4f2ef;
  padding: 40px 8%;
  margin-top: auto;
}

.footer a {
  color: #f4d6a8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.legal-note {
  font-size: 0.9rem;
  color: #cfc6bb;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  background: #f4eee4;
  padding: 60px 8% 40px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.two-column .panel {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.notice-box {
  border-left: 4px solid #1f4b99;
  background: #f6f8fc;
  padding: 18px;
  border-radius: 12px;
}

.image-banner {
  padding: 16px;
  border-radius: 20px;
}

.image-banner img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
}

.bg-sand {
  background-color: #e9dccb;
}

.bg-clay {
  background-color: #e0d8cc;
}

.bg-warm {
  background-color: #dcd2c3;
}

.bg-ivory {
  background-color: #e9e2d7;
}

.bg-cream {
  background-color: #ddd3c5;
}
