/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f6f3;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

a {
  color: #0b5d5d;
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e4e1da;
}

.topbar {
  display: flex;
  flex-direction: column;
  padding: 20px 6vw 12px;
  gap: 10px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ad-label {
  font-size: 12px;
  color: #5b5f5c;
  background: #f1efe9;
  padding: 6px 10px;
  border-radius: 14px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

nav a {
  text-decoration: none;
  color: #1f2a2e;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.cta-btn,
.ghost-btn {
  border: none;
  padding: 12px 18px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 20px;
}

.cta-btn {
  background: #0b5d5d;
  color: #ffffff;
}

.ghost-btn {
  background: #ffffff;
  color: #0b5d5d;
  border: 1px solid #0b5d5d;
}

main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.tight {
  padding: 40px 6vw;
}

.section.dark {
  background: #0f2f2e;
  color: #f7f6f3;
}

.section.light {
  background: #ffffff;
}

.section.soft {
  background: #efece5;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.hero-sub {
  font-size: 18px;
  max-width: 700px;
}

.image-frame {
  background: #d8d4cb;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame.small {
  max-width: 520px;
}

.image-frame.tall img {
  height: 360px;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.columns.two {
  flex-direction: row;
  flex-wrap: wrap;
}

.columns.two > div {
  flex: 1 1 320px;
}

.story-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e4e1da;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e4e1da;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  font-size: 18px;
}

.inline-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.testimonial {
  font-style: italic;
  background: #f7f6f3;
  padding: 18px;
  border-radius: 14px;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e4e1da;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: #4b5453;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #cfcac0;
  font-size: 14px;
  background: #ffffff;
}

footer {
  background: #101716;
  color: #e9e4d8;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.footer-links a {
  color: #e9e4d8;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 23, 22, 0.92);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6vw;
  gap: 16px;
  z-index: 10;
}

.sticky-cta p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 70px;
  background: #ffffff;
  border: 1px solid #cfcac0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.banner-hidden {
  display: none;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-hero h1 {
  margin: 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e4e1da;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e4e1da;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1761311983939-fd320520bbab?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1752832902004-b7df68ff626f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-soft {
  background-image: url("https://images.unsplash.com/photo-1760462788374-fe0d2d4ba4d1?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.overlay {
  background: rgba(15, 47, 46, 0.7);
  color: #ffffff;
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overlay p,
.overlay h2 {
  max-width: 700px;
}

@media (max-width: 900px) {
  .columns.two {
    flex-direction: column;
  }

  .hero-title {
    font-size: 32px;
  }
}
