* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2329;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #6a4f2d;
  background: #efe3d2;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
  padding: 40px 0 24px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.2;
}

.hero-image {
  flex: 0.9;
  background-color: #dfe4ea;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1e2329;
  color: #fff;
  font-weight: 600;
  border: none;
}

.button.outline {
  background: transparent;
  color: #1e2329;
  border: 1px solid #1e2329;
}

.section {
  padding: 32px 0;
}

.section.alt {
  background: #efece8;
  border-radius: 24px;
  padding: 32px;
}

.columns {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 260px;
}

.image-frame {
  background-color: #d9dde4;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f8efe1;
  padding: 20px;
  border-radius: 18px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f5d4d;
}

.testimonial {
  padding: 18px;
  border-left: 3px solid #1e2329;
  background: #fff6ea;
  border-radius: 12px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.form-shell label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7ccd4;
  font-size: 15px;
}

.form-shell button {
  cursor: pointer;
}

.footer {
  padding: 32px 0 40px;
  font-size: 14px;
  color: #444c55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  background: #1e2329;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  background: #f5f0e9;
  padding: 18px;
  border-radius: 14px;
}

.two-tone {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.two-tone .panel {
  flex: 1;
  min-width: 260px;
  padding: 20px;
  border-radius: 18px;
}

.panel.light {
  background: #ffffff;
}

.panel.dark {
  background: #1e2329;
  color: #fff;
}

.meta-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wide-image {
  height: 280px;
}

.center {
  text-align: center;
}

.spacer {
  height: 16px;
}
