* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: #fffdf9;
  border-bottom: 1px solid #e6dfd5;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: #6d4c41;
  background: #f5e9dc;
  padding: 6px 10px;
  border-radius: 14px;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 60px 8%;
  align-items: stretch;
  background: #fffdf9;
}

.hero-text,
.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: #d65a31;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  cursor: pointer;
  font-size: 1rem;
}

.btn.secondary {
  background: #2e3a59;
}

.btn.linklike {
  background: transparent;
  color: #2e3a59;
  padding: 0;
  border-radius: 0;
  text-decoration: underline;
}

.section {
  padding: 60px 8%;
}

.section.alt {
  background: #fff;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card-row.spaced {
  margin-top: 28px;
}

.card {
  flex: 1 1 240px;
  background: #fffdf9;
  border: 1px solid #eadfd3;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
  background-color: #d9d3c9;
}

.tag {
  background: #2e3a59;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  align-self: flex-start;
}

.price {
  font-weight: 700;
  color: #d65a31;
}

.media-box {
  background-color: #d9d3c9;
  border-radius: 20px;
  overflow: hidden;
}

.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid #d65a31;
  padding-left: 20px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fffdf9;
  border-radius: 18px;
  border: 1px solid #eadfd3;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #dcd2c7;
  background: #fff;
}

.service-option input {
  margin-top: 4px;
}

form label {
  font-weight: 600;
}

form input,
form select,
form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4c8bc;
  width: 100%;
  font-size: 0.95rem;
}

form button {
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  background: #1e1e1e;
  color: #f5f2ec;
  padding: 30px 8%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #2e3a59;
  color: #fff;
  padding: 12px 18px;
  border-radius: 26px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #d65a31;
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 18px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffdf9;
  border-top: 1px solid #e6dfd5;
  padding: 16px 8%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #2e3a59;
  color: #fff;
}

.cookie-reject {
  background: #d9d3c9;
  color: #1b1b1b;
}

.simple-header {
  padding: 48px 8% 24px;
  background: #fffdf9;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  line-height: 1.7;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #fffdf9;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #eadfd3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note {
  font-size: 0.9rem;
  color: #5d5d5d;
}

.image-tile {
  height: 240px;
}

@media (max-width: 960px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
