* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1b16;
  --muted: #5b5249;
  --paper: #f7f2ec;
  --paper-2: #efe7dd;
  --accent: #6b4b3e;
  --accent-2: #b7825c;
  --highlight: #e8cba9;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(31, 27, 22, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  background-color: #e2d4c6;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  padding: 22px 0 10px;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.8rem;
  background: var(--highlight);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 18px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-top: 32px;
  position: relative;
}

.hero-text {
  flex: 1 1 340px;
  background: var(--card);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  margin: 0 0 12px;
  font-size: 2.5rem;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 420px;
  border-radius: 30px;
  background-color: #d9c7b2;
  background-image: url("https://images.unsplash.com/photo-1513364776144-60967b0f800f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-ribbon {
  position: absolute;
  bottom: -30px;
  left: 20px;
  background: var(--paper-2);
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  background: var(--accent-2);
}

.section {
  margin-top: 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-card {
  flex: 1 1 320px;
  background: var(--card);
  padding: 26px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.offset-card.shift {
  margin-top: -40px;
}

.image-frame {
  flex: 1 1 320px;
  border-radius: 26px;
  overflow: hidden;
  background-color: #e2d4c6;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.story-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--paper-2);
  padding: 24px;
  border-radius: 24px;
  align-items: center;
}

.story-strip div {
  flex: 1 1 220px;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--card);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-shell form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4c7bb;
  font-size: 1rem;
  background: #fff;
}

.form-side {
  flex: 1 1 240px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-top: 60px;
  background: var(--highlight);
  padding: 16px 20px;
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
}

.page-hero .hero-copy {
  flex: 1 1 320px;
}

.page-hero .hero-photo {
  flex: 1 1 320px;
  border-radius: 26px;
  overflow: hidden;
  background-color: #d7cabd;
  box-shadow: var(--shadow);
}

.page-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.info-card {
  flex: 1 1 240px;
  background: var(--card);
  padding: 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #d8cbbd;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  color: var(--muted);
}

.footer a:hover {
  color: var(--accent);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 99;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.quote {
  background: #fff7ee;
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-ribbon {
    position: static;
    margin-top: 12px;
  }

  .offset-card.shift {
    margin-top: 0;
  }
}
