/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f7f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1f2328;
}

/* Split layout */
.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 54px 0;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-col {
  flex: 1;
}

.split-col p {
  margin-top: 0;
}

.split-highlight {
  background: #f0efe9;
}

.split-contrast {
  background: #0d1b2a;
  color: #f8f7f2;
}

.split-contrast a {
  color: #f8f7f2;
}

.split-soft {
  background: #ffffff;
}

.split-compact {
  padding: 36px 0;
}

/* Cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(31, 35, 40, 0.08);
}

.card img {
  border-radius: 12px;
}

/* Buttons and CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffb703;
  color: #1f2328;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.btn-dark {
  background: #1f2328;
  color: #f7f6f3;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(31, 35, 40, 0.15);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 auto 32px;
}

/* Services */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  padding: 18px;
  border-radius: 14px;
  background: #fef7e6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-price {
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Form */
.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(31, 35, 40, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c5c6c7;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: #4b4f56;
}

/* Footer */
footer {
  margin-top: auto;
  background: #1f2328;
  color: #f7f6f3;
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.9rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(31, 35, 40, 0.18);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* Tables */
.info-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(31, 35, 40, 0.1);
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Responsive */
@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .services-list {
    flex-direction: row;
  }

  .service-item {
    flex: 1;
  }

  .sticky-cta {
    width: min(980px, 90%);
  }
}
