:root {
  --ink: #1e1b1f;
  --muted: #5a5461;
  --accent: #d7422c;
  --accent-dark: #b6321f;
  --soft: #f6f1ee;
  --stone: #efe7e1;
  --mint: #e7f0ea;
  --gold: #f2e1b8;
  --shadow: 0 18px 45px rgba(30, 27, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  padding: 24px 6vw 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.primary-btn:hover {
  background: var(--accent-dark);
}

.secondary-btn {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.ghost-btn {
  background: transparent;
  color: var(--ink);
  border: 1px dashed var(--muted);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: #201b22;
  color: #fff;
}

.section.mint {
  background: var(--mint);
}

.section.stone {
  background: var(--stone);
}

.section.gold {
  background: var(--gold);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset .frame {
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 8px 14px;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.gridless-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 0 16px 16px 0;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4ccd3;
  font-size: 0.95rem;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  padding: 40px 6vw 60px;
  background: #18141b;
  color: #f7f2f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f7f2f0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  z-index: 20;
}

.hero-image {
  border-radius: 32px;
  overflow: hidden;
  min-height: 280px;
  background: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?auto=format&fit=crop&w=1200&q=80") center/cover;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
}

.hero-image p {
  margin: 0;
  max-width: 320px;
  background: rgba(26, 22, 28, 0.72);
  padding: 12px 14px;
  border-radius: 14px;
}

.gallery-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-strip img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 80px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--stone);
}

.page-hero .meta {
  max-width: 620px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .offset {
    flex-direction: row;
    align-items: center;
  }

  .offset .frame {
    margin-left: -60px;
  }

  .card-row {
    flex-direction: row;
  }

  .form-row {
    flex-direction: row;
  }

  .gallery-strip {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
