* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2224;
  --soft-ink: #4c5257;
  --accent: #7c3b5b;
  --accent-2: #2c6f64;
  --cream: #f7f1ec;
  --mist: #f1f3f4;
  --sun: #f4e3d2;
  --shadow: 0 24px 60px rgba(31, 34, 36, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6vw;
  background: #fff;
  border-bottom: 1px solid #ece6e1;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--soft-ink);
  max-width: 340px;
  text-align: right;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:focus,
.nav a:hover {
  border-color: var(--accent);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 72px 6vw 90px;
  background: var(--sun);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.hero-copy {
  flex: 1.1;
  max-width: 520px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--soft-ink);
}

.hero-card {
  flex: 0.9;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  align-self: flex-end;
}

.hero-card h3 {
  margin-bottom: 12px;
}

.hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--soft-ink);
}

.hero-image {
  margin-top: 50px;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.hero-image .image-box {
  flex: 1;
  background: #e9d8cb;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: #fff;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
}

.section {
  padding: 80px 6vw;
}

.offset-block {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.offset-text {
  flex: 1;
  padding: 30px;
  background: var(--cream);
  border-radius: 22px;
  align-self: flex-start;
}

.offset-text h2 {
  margin-bottom: 12px;
}

.offset-visual {
  flex: 1.2;
  margin-top: 40px;
  background: #efe8e1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.floating-card {
  margin-top: -60px;
  margin-left: auto;
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.floating-card h3 {
  margin-bottom: 8px;
}

.service-board {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  background: var(--mist);
  padding: 18px;
  border-radius: 18px;
  align-items: center;
}

.service-card .image-box {
  flex: 0 0 160px;
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  background: #e5dcd5;
}

.service-card .service-info {
  flex: 1;
}

.service-card h4 {
  margin-bottom: 6px;
}

.service-card p {
  color: var(--soft-ink);
  margin-bottom: 8px;
}

.price {
  font-weight: 600;
  color: var(--accent);
  margin-right: 12px;
}

.inline-link {
  color: var(--accent-2);
  text-decoration: underline;
  cursor: pointer;
}

.form-section {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-panel h2 {
  margin-bottom: 12px;
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin: 16px 0 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9d4cf;
  border-radius: 10px;
  font-size: 1rem;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-panel .hint {
  font-size: 0.88rem;
  color: var(--soft-ink);
}

.form-panel .form-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-aside {
  flex: 0.9;
  min-width: 260px;
  padding: 28px;
  background: var(--sun);
  border-radius: 24px;
}

.form-aside ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--soft-ink);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-strip .image-box {
  flex: 1;
  min-width: 200px;
  height: 180px;
  background: #e7d7cc;
  border-radius: 16px;
  overflow: hidden;
}

.section-bg {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.section-bg .bg-media {
  position: absolute;
  inset: 0;
  background: #4b3c3c;
  z-index: 0;
}

.section-bg .bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.section-bg .bg-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--soft-ink);
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 60px;
  background: #faf7f3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--soft-ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer .references a {
  color: var(--accent-2);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 999;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e2d9d2;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 1000;
}

.cookie-banner p {
  font-size: 0.92rem;
  color: var(--soft-ink);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: #fff;
  cursor: pointer;
  color: var(--accent);
  font-weight: 600;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #fff;
}

.contact-panel {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 260px;
  padding: 24px;
  background: var(--mist);
  border-radius: 18px;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--soft-ink);
}

.note {
  font-size: 0.9rem;
  color: var(--soft-ink);
  margin-top: 16px;
}

.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero-inner,
  .offset-block,
  .form-section,
  .contact-panel {
    flex-direction: column;
  }

  .hero-card {
    align-self: stretch;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
