* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1d1a;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 6vw 10px;
  position: relative;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b554b;
  border: 1px solid #bdb3a2;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1ede5;
}

.menu-toggle {
  border: 1px solid #1f1d1a;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.nav-panel {
  position: absolute;
  top: 70px;
  right: 6vw;
  background: #fff;
  border: 1px solid #d1c7b7;
  border-radius: 18px;
  padding: 18px 22px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(41, 33, 18, 0.08);
  z-index: 10;
}

.nav-panel a {
  font-weight: 600;
  color: #2b2620;
}

.nav-panel.is-open {
  display: flex;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 6vw 20px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 560px;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #4d4538;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f1d1a;
  color: #f7f4ef;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #1f1d1a;
  border: 1px solid #1f1d1a;
}

.image-frame {
  background: #dcd2c2;
  border-radius: 22px;
  overflow: hidden;
}

.hero-image {
  flex: 1 1 320px;
  max-width: 520px;
  margin-left: auto;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section h2 {
  font-size: 2.1rem;
  margin: 0;
}

.section p {
  margin: 0;
  color: #4a4337;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 300px;
  max-width: 520px;
}

.offset-media {
  flex: 1 1 280px;
  max-width: 460px;
}

.panel {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(41, 33, 18, 0.08);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-cta {
  color: #8a522c;
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta-wrap {
  display: flex;
  justify-content: flex-start;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  background: #a45f2c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(35, 28, 16, 0.08);
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: #4c463a;
}

.quote-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: #f1ece4;
  border-left: 4px solid #a45f2c;
  padding: 16px 18px;
  border-radius: 18px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: #1f1d1a;
  color: #f7f4ef;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card span {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 46px rgba(34, 28, 18, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc5b5;
  font-size: 1rem;
}

.legal {
  font-size: 0.9rem;
  color: #5d564a;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f1d1a;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7f4ef;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(31, 29, 26, 0.2);
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 60px 6vw 30px;
}

.page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.page-block {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.small-note {
  font-size: 0.85rem;
  color: #5d564a;
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-panel {
    right: auto;
    left: 6vw;
  }
}
