* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background: #f5f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  padding: 24px 6vw 18px;
  background: #f5f7f4;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-name {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #476154;
  background: #e3ede6;
  padding: 6px 10px;
  border-radius: 18px;
  width: fit-content;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1f2a24;
}

.hero {
  min-height: 70vh;
  background-image: url("https://images.unsplash.com/photo-1744973179090-73ec820176e9?w=1400&q=80");
  background-color: #223229;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #f5f7f4;
  display: flex;
  align-items: flex-end;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 21, 18, 0.75), rgba(14, 21, 18, 0.25));
}

.hero-content {
  position: relative;
  padding: 48px 6vw 64px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  margin: 0 0 16px;
  line-height: 1.15;
}

.hero p {
  margin: 0 0 24px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-button {
  background: #f2c86d;
  color: #1f2a24;
  padding: 12px 22px;
  border-radius: 24px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #f6d48a;
}

.ghost-link {
  color: #f5f7f4;
  border-bottom: 1px solid #f5f7f4;
  padding-bottom: 3px;
}

.section {
  padding: 70px 6vw;
  background: #f5f7f4;
}

.section.alt {
  background: #eef1ee;
}

.section.dark {
  background: #1f2a24;
  color: #f5f7f4;
}

.section h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  margin: 0 0 18px;
}

.section p {
  margin: 0 0 16px;
}

.asymmetric-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: stretch;
}

.asymmetric-panel {
  flex: 1 1 320px;
}

.asymmetric-panel.offset {
  margin-top: 40px;
}

.image-frame {
  background: #d4dbd4;
  border-radius: 28px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.image-frame.card {
  height: 180px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  flex: 1 1 230px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 26px rgba(31, 42, 36, 0.08);
}

.service-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: #1f2a24;
}

.service-action {
  margin-top: auto;
}

.service-action button {
  width: 100%;
}

.story-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.story-strip .story-text {
  flex: 1 1 360px;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1760539127272-9eb3f0f0a48b?w=1400&q=80");
  background-color: #203128;
  background-size: cover;
  background-position: center;
  padding: 72px 6vw;
  border-radius: 32px;
  color: #f5f7f4;
}

.background-panel .panel-inner {
  background: rgba(19, 28, 23, 0.7);
  padding: 36px;
  border-radius: 24px;
  max-width: 560px;
}

.inline-highlight {
  background: #f2c86d;
  color: #1f2a24;
  padding: 2px 6px;
  border-radius: 6px;
}

.testimonial {
  border-left: 3px solid #f2c86d;
  padding-left: 16px;
  font-style: italic;
}

.form-wrap {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 12px 26px rgba(31, 42, 36, 0.08);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
}

.form-field select,
.form-field input,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd6cf;
  font-size: 1rem;
  font-family: inherit;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f2a24;
  color: #f5f7f4;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 0.95rem;
  box-shadow: 0 14px 32px rgba(31, 42, 36, 0.25);
  z-index: 10;
}

.sticky-cta:hover {
  background: #2c3d34;
}

.footer {
  background: #121915;
  color: #d7e0d8;
  padding: 52px 6vw 40px;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  color: #1f2a24;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(31, 42, 36, 0.2);
  max-width: 360px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.cookie-accept {
  background: #1f2a24;
  color: #f5f7f4;
}

.cookie-reject {
  background: #dce4dd;
  color: #1f2a24;
}

.page-header {
  padding: 30px 6vw 10px;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.simple-content {
  padding: 40px 6vw 70px;
  max-width: 900px;
}

.simple-content h2 {
  margin-top: 32px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(31, 42, 36, 0.07);
}

.service-row span {
  flex: 1 1 220px;
}

.thanks-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 32px;
  max-width: 720px;
  margin: 30px auto 70px;
  box-shadow: 0 12px 26px rgba(31, 42, 36, 0.08);
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
