* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 6vw;
  background: #f7f4f0;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a544f;
  padding: 6px 10px;
  border: 1px solid #d8d0c8;
  border-radius: 18px;
  background: #f1ebe4;
}

.nav-link {
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
}

.nav-link:hover {
  border-bottom-color: #1a1a1a;
}

.hero {
  display: flex;
  align-items: stretch;
  min-height: 70vh;
  padding: 0;
  background-color: #dcd5cc;
  background-image: url("https://images.unsplash.com/photo-1752694909919-77e24bb29e4f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  display: flex;
  flex: 1;
  background: rgba(247, 244, 240, 0.92);
  padding: 60px 6vw;
}

.hero-content {
  max-width: 560px;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #746c63;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
}

.section {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 70px 6vw;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.narrow {
  padding: 60px 9vw;
}

.section-muted {
  background: #efe9e1;
}

.section-bg {
  background-color: #d6cdbf;
  background-image: url("https://images.unsplash.com/photo-1560769629-975ec94e6a86?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1a1a1a;
}

.section-bg .panel {
  background: rgba(247, 244, 240, 0.9);
  padding: 26px;
  border-radius: 18px;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.centered {
  justify-content: center;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 22px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #f7f4f0;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: #1a1a1a;
}

.btn:hover {
  opacity: 0.88;
}

.inline-link {
  text-decoration: underline;
}

.image-frame {
  flex: 1;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.frame-1 {
  background-color: #d7cfc6;
}

.frame-2 {
  background-color: #d0c7bd;
}

.frame-3 {
  background-color: #cbbfb2;
}

.frame-4 {
  background-color: #e2dad1;
}

.frame-5 {
  background-color: #d9d0c6;
}

.frame-6 {
  background-color: #e8dfd6;
}

.frame-7 {
  background-color: #cfc2b7;
}

.frame-8 {
  background-color: #ded5cb;
}

.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 12px;
}

.card .image-frame {
  min-height: 180px;
}

.price-tag {
  font-weight: 700;
  color: #463e35;
}

.quote {
  border-left: 3px solid #1a1a1a;
  padding-left: 16px;
  font-style: italic;
}

.form-wrap {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c0b6;
  font-size: 1rem;
}

.lead-form button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 22px;
  background: #1a1a1a;
  color: #f7f4f0;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover {
  opacity: 0.9;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #1f1a16;
  color: #f3ede6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 380px;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 16px;
}

.notice {
  font-size: 0.9rem;
  color: #5a544f;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 50px 8vw;
}

.split-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.split-list div {
  flex: 1 1 240px;
  background: #f5efe8;
  border-radius: 14px;
  padding: 14px;
}

@media (max-width: 900px) {
  .section,
  .section.reverse {
    flex-direction: column;
  }

  .hero {
    min-height: 60vh;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
