* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2a2e;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 5vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f6f4f1;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #efe7dd;
  color: #5b4a38;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.hero {
  position: relative;
  padding: 72px 5vw 90px;
  color: #fefefe;
  background: #4c5a5f;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1730154838368-c37b1fdebcf6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-primary,
.cta-secondary {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-primary {
  background: #f5c86a;
  color: #2a2a2a;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #fefefe;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.section {
  padding: 70px 5vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #f6f4f1;
}

.section.alt {
  background: #ebe6df;
}

.section.deep {
  background: #1e2a31;
  color: #fefefe;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.section-lead {
  max-width: 720px;
  font-size: 17px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split > div {
  flex: 1 1 260px;
}

.image-frame {
  background: #dcd3c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.story-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(35, 40, 45, 0.08);
}

.note-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  padding: 14px 18px;
  border-radius: 14px;
  background: #f7f2eb;
}

.pill {
  align-self: flex-start;
  background: #efe7dd;
  color: #4a3f32;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 10px 20px rgba(20, 20, 20, 0.08);
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  width: 100%;
  height: 170px;
}

.price {
  font-weight: 700;
  color: #35506a;
}

.quote {
  padding: 18px;
  border-radius: 16px;
  background: #f5efe6;
  font-size: 15px;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.benefit-item {
  flex: 1 1 180px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(32, 30, 25, 0.1);
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6cec3;
  font-size: 15px;
  background: #fbfaf8;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-submit {
  background: #35506a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.secondary-link {
  color: #35506a;
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f2a2e;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta button {
  background: #f5c86a;
  color: #1f2a2e;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 36px 5vw 48px;
  background: #1a242a;
  color: #f5f2ec;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-note {
  font-size: 12px;
  color: #d6cec3;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.15);
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: #35506a;
  color: #fff;
}

.cookie-reject {
  background: #efe7dd;
  color: #3a332a;
}

.plain-page {
  padding: 70px 5vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f6f4f1;
}

.plain-page h1 {
  font-size: clamp(28px, 3vw, 40px);
}

.plain-page p,
.plain-page li {
  max-width: 820px;
}

.plain-page ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
