* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ee;
  --ink: #1f1f1f;
  --muted: #5b5b5b;
  --accent: #c7642b;
  --accent-dark: #8b3f1a;
  --card: #ffffff;
  --soft: #efe6dd;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 8px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 12px 6vw 80px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.full {
  flex-direction: column;
  align-items: flex-start;
}

.panel {
  flex: 1 1 320px;
}

.panel.narrow {
  flex: 0 1 280px;
}

.panel.wide {
  flex: 1 1 480px;
}

.hero {
  background: var(--soft);
  padding: 36px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  background-color: #d6c7b9;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 20px 0 12px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.story-card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #d8d1c7;
}

.badge {
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  width: fit-content;
}

.split-highlight {
  background: #111;
  color: #fff;
  padding: 28px;
  border-radius: 20px;
}

.split-highlight img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #2f2f2f;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.metric {
  background: var(--card);
  padding: 16px;
  border-radius: 16px;
  flex: 1 1 160px;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #d8d1c7;
}

.pricing {
  background: var(--soft);
  padding: 30px;
  border-radius: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #d6c9bd;
  align-items: center;
}

.price-row:last-child {
  border-bottom: none;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c1b8;
  font-size: 1rem;
}

footer {
  padding: 36px 6vw 50px;
  background: #141414;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal {
  font-size: 0.9rem;
  color: #c7c7c7;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1e1e1e;
  color: #fff;
  padding: 18px;
  border-radius: 14px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #fff;
  color: #111;
}

.simple-hero {
  background: var(--soft);
  padding: 28px;
  border-radius: 18px;
}

.simple-hero h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.image-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: #e3d8cc;
  padding: 12px;
  border-radius: 18px;
}

.image-band img {
  flex: 1 1 240px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #d8d1c7;
}

.note {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.image-panel {
  background: #e3d8cc;
  padding: 12px;
  border-radius: 18px;
}
