* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1e1f21;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 120px;
}

.top-banner {
  background: #141414;
  color: #f7f5f2;
  padding: 10px 24px;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 10px;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-disclosure {
  font-size: 12px;
  color: #5a534a;
  max-width: 240px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0ede7;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 40px 0 20px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 40px;
  line-height: 1.1;
}

.hero-copy p {
  font-size: 18px;
  max-width: 440px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary,
.cta-ghost {
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}

.cta-primary {
  background: #1e1f21;
  color: #f7f5f2;
}

.cta-secondary {
  background: #d6c2a6;
  color: #1e1f21;
}

.cta-ghost {
  background: transparent;
  border: 1px solid #1e1f21;
}

.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #cfc7bc;
  position: relative;
}

.hero-image.offset {
  margin-left: 40px;
}

.tag-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-strip span {
  background: #e8e0d6;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.section {
  padding: 52px 0;
  position: relative;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.split-offset {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split-offset .text {
  flex: 1.2;
}

.split-offset .media {
  flex: 1;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #cfd4d1;
  position: relative;
}

.split-offset .media.raise {
  transform: translateY(-20px);
}

.floating-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.floating-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-card .image-shell {
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #d6d1c8;
}

.story-band {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.story-band .note {
  flex: 0.9;
  background: #1e1f21;
  color: #f7f5f2;
  border-radius: 20px;
  padding: 20px;
  margin-top: 40px;
}

.story-band .details {
  flex: 1.4;
}

.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  gap: 16px;
  align-items: stretch;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.pricing-thumb {
  width: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: #d6d1c8;
  flex-shrink: 0;
}

.pricing-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.pricing-info span {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: #1e1f21;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.testimonial-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 250px;
  background: #efe9e1;
  padding: 16px;
  border-radius: 16px;
}

.form-wrap {
  background: #1f2622;
  color: #f7f5f2;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-copy {
  flex: 1.1;
  min-width: 240px;
}

.form-area {
  flex: 1;
  min-width: 240px;
}

.form-area form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-area label {
  font-size: 14px;
}

.form-area select,
.form-area input {
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
}

.form-area button {
  background: #d6c2a6;
  color: #1e1f21;
  border: none;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #d9d3c8;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-disclaimer {
  font-size: 13px;
  color: #4a4a4a;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #1e1f21;
  color: #f7f5f2;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  z-index: 6;
}

.cookie-banner p {
  font-size: 13px;
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.cookie-accept {
  background: #1e1f21;
  color: #f7f5f2;
}

.cookie-reject {
  background: #e7e0d6;
  color: #1e1f21;
}

.simple-hero {
  padding: 50px 0 30px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.simple-hero h1 {
  font-size: 34px;
}

.simple-hero .image-frame {
  width: 40%;
  min-width: 240px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  background: #cfc7bc;
}

.content-block {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.content-block .panel {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero,
  .split-offset,
  .story-band,
  .simple-hero {
    flex-direction: column;
  }

  .hero-image.offset {
    margin-left: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
