* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1b18;
  --muted: #5c554f;
  --sand: #f2eee9;
  --clay: #b7825f;
  --wood: #7a4e32;
  --forest: #2f3a2d;
  --stone: #e0d7cf;
  --accent: #d9a15b;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #faf8f5;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--stone);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
  text-align: center;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

nav a:hover,
nav a:focus {
  border-color: var(--wood);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 6vw 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 540px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-image {
  flex: 1 1 360px;
  position: relative;
  min-height: 320px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.floating-card {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
  width: 220px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--wood);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover,
.btn:focus {
  background: var(--forest);
}

.link-inline {
  color: var(--wood);
  text-decoration: underline;
  font-weight: 600;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 280px;
}

.callouts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.callout {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.callout strong {
  display: block;
  margin-bottom: 8px;
}

.image-frame {
  background-color: var(--stone);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.asymmetric-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-row .offset-text {
  flex: 1 1 260px;
}

.offset-row .offset-image {
  flex: 1 1 280px;
  margin-top: -30px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--stone);
}

.price-card h3 {
  margin-bottom: 8px;
}

.price {
  font-weight: 700;
  color: var(--forest);
  margin: 10px 0;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px;
  border: 1px solid var(--stone);
  border-radius: 10px;
  font-size: 0.95rem;
}

.form-panel button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: var(--accent);
  border: none;
  color: #1f1a16;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #c98b3f;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 30px;
  background: #1f1a16;
  color: #f4efe8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f4efe8;
  text-decoration: underline;
}

.footer .legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  z-index: 30;
  display: none;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--forest);
  color: #fff;
}

.cookie-reject {
  background: var(--stone);
  color: var(--ink);
}

.notice {
  background: var(--stone);
  padding: 16px;
  border-radius: 12px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--stone);
}

@media (max-width: 860px) {
  .floating-card {
    position: static;
    width: auto;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
