/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #2d4a8a;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header {
  padding: 24px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b5f52;
  margin-left: 12px;
  max-width: 320px;
}

.hero {
  padding: 40px 0 70px;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .column {
  flex: 1 1 360px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #6b5f52;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 12px 0;
}

.hero-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2d4a8a;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #efc94c;
  color: #1a1a1a;
}

.button.ghost {
  background: transparent;
  border: 1px solid #2d4a8a;
  color: #2d4a8a;
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: #ede7df;
}

.section.dark {
  background: #1f2a3d;
  color: #f3f0eb;
}

.section.dark a {
  color: #f9d77e;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 16px;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #27324a;
  color: #f3f0eb;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.image-frame {
  background: #d8d1c8;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 420px;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 360px;
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 360px;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 360px;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 360px;
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1507209696998-3c532be9b2b5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 300px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.list li {
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 12px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b8;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #161d2b;
  color: #d7d2c9;
  font-size: 0.95rem;
}

.footer .footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #efc94c;
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.note {
  font-size: 0.9rem;
  color: #6b5f52;
}

.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  background: #f3eee7;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.quote {
  font-style: italic;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
