* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background: #f6f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  background: #18231f;
  color: #f8f5ee;
  padding: 2.5rem 1.75rem;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #b9c3b9;
}

.brand h1 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: #e4ede4;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  background: #f7c76c;
  color: #222;
  padding: 1.1rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sticky-cta .button {
  background: #222;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #f6f5f1;
}

.section {
  padding: 4rem 6vw;
  display: flex;
  gap: 2.5rem;
  flex-direction: column;
}

.section.alt {
  background: #eef1ec;
}

.section.dark {
  background: #1f2a24;
  color: #f8f5ee;
}

.hero {
  position: relative;
  background: #1f2a24;
  color: #f8f5ee;
  padding: 0;
}

.hero-inner {
  display: flex;
  min-height: 70vh;
}

.hero-media {
  flex: 1;
  position: relative;
}

.hero-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-copy {
  flex: 1;
  padding: 5rem 4.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.hero-copy h2 {
  font-size: 2.4rem;
  margin: 0;
}

.hero-copy p {
  font-size: 1.05rem;
  max-width: 440px;
}

.button {
  background: #f7c76c;
  color: #222;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.split {
  display: flex;
  gap: 2.5rem;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: #708075;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 30px rgba(24, 35, 31, 0.08);
}

.card img {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.card .price {
  font-weight: 700;
  color: #1f2a24;
}

.photo-strip {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.photo-strip img {
  flex: 1 1 220px;
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.timeline-item span {
  font-size: 1.5rem;
  font-weight: 700;
  background: #f7c76c;
  color: #222;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.testimonial {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-left: 4px solid #f7c76c;
}

.form-shell {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.form-shell .form-panel {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-shell form {
  background: #fff;
  padding: 1.8rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 30px rgba(24, 35, 31, 0.08);
}

.form-shell label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid #ccd5c9;
  font-size: 0.95rem;
  font-family: inherit;
}

.inline-link {
  color: #1f2a24;
  text-decoration: underline;
}

.footer {
  background: #18231f;
  color: #f8f5ee;
  padding: 3rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer .links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: 0 12px 30px rgba(24, 35, 31, 0.12);
  max-width: 320px;
  display: none;
  z-index: 20;
  gap: 0.8rem;
  flex-direction: column;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.page-title {
  font-size: 2.1rem;
  margin: 0 0 1rem;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.simple-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.policy-section {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sticky-cta {
    position: static;
    width: 100%;
  }

  .hero-inner {
    flex-direction: column;
  }

  .split {
    flex-direction: column;
  }
}
