* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --bg-ink: #1b1b1b;
  --accent: #5b4b3b;
  --accent-soft: #d7c9b8;
  --ink-soft: #4a4a4a;
  --card: #ffffff;
  --line: #e6e0d7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--bg-ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  overflow-x: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 16px;
  gap: 24px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--line);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 340px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 20px 6vw 60px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  left: 4vw;
  top: 10px;
  width: 60%;
  height: 75%;
  background: url("https://images.unsplash.com/photo-1772475385289-17fbb414ed74?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwyOHx8QW1lbmFqYXJlJTIwaW50ZXJpb2FyJUM0JTgzJTIwY2FyZSUyMHB1bmUlMjBjYXNhJTIwcGUlMjBwcmltdWwlMjBsb2MufHJvfDB8MHx8fDE3ODI5MjY0MDF8MA&ixlib=rb-4.1.0&q=80&w=1080") center/cover no-repeat;
  border-radius: 32px;
  opacity: 0.16;
}

.hero-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  margin: 0 0 16px;
}

.hero-subtitle {
  margin: 0 0 24px;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background: #46382c;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.asym-visual {
  flex: 1;
  position: relative;
  z-index: 1;
}

.image-frame {
  background: var(--accent-soft);
  border-radius: 24px;
  overflow: hidden;
}

.frame-lg {
  height: 420px;
}

.frame-md {
  height: 360px;
}

.frame-sm {
  height: 160px;
}

.spaced-top {
  margin-top: 18px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-card {
  background: var(--card);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  position: absolute;
  right: -20px;
  bottom: -30px;
  max-width: 260px;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: #f0ece6;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.split-row {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1;
  min-width: 280px;
}

.story-card {
  background: var(--card);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}

.service-card {
  flex: 1;
  min-width: 260px;
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.inline-link {
  text-decoration: underline;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-badge {
  background: var(--accent);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial {
  background: var(--card);
  border-radius: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: var(--card);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--line);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 24px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f1a15;
  color: #f8f4ee;
}

.footer a {
  color: inherit;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d8cfc2;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.legal-wrap {
  max-width: 840px;
}

.contact-card {
  background: var(--card);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--line);
}

.meta-image {
  height: 320px;
}

.section-bg {
  background: url("https://images.unsplash.com/photo-1560185007-c5ca9d2c014d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwyMXx8QW1lbmFqYXJlJTIwaW50ZXJpb2FyJUM0JTgzJTIwY2FyZSUyMHB1bmUlMjBjYXNhJTIwcGUlMjBwcmltdWwlMjBsb2MufHJvfDB8MHx8fDE3ODI5MjY0MDF8MA&ixlib=rb-4.1.0&q=80&w=1080") center/cover no-repeat;
  color: #fff;
  position: relative;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.5);
}

.section-bg .section-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .offset-card {
    position: static;
    margin-top: 16px;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}
