* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1b19;
  --muted: #5a544f;
  --sand: #f4efe9;
  --linen: #fbf7f3;
  --clay: #c9b39b;
  --forest: #2f3b2f;
  --accent: #a46b44;
  --accent-soft: #d8c1ad;
  --shadow: 0 18px 40px rgba(28, 27, 25, 0.14);
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--linen);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 22px 0;
  background: #fff;
  border-bottom: 1px solid rgba(28, 27, 25, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--sand);
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 18px;
  background: var(--accent-soft);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-color: #3d342f;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 27, 25, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 340px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  margin-bottom: 18px;
}

.hero-text p {
  color: #f2e9df;
}

.hero-card {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: translateY(30px);
}

.hero-card ul {
  padding-left: 18px;
  margin: 0;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(28, 27, 25, 0.2);
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(28, 27, 25, 0.2);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--forest);
  color: #fff;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head h2 {
  margin-top: 0;
  font-size: 2rem;
}

.asym-row {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.offset-block {
  flex: 1 1 320px;
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-top: -30px;
}

.image-frame {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--accent-soft);
}

.page-image {
  flex: 1 1 280px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--accent-soft);
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 160px;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 16px;
}

.metric strong {
  display: block;
  font-size: 1.6rem;
}

.story-panel {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.story-panel .panel {
  flex: 1 1 260px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.services-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card-image {
  background: var(--accent-soft);
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card.active {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(28, 27, 25, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: var(--forest);
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.trust-bg {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2e3a2f;
  background-blend-mode: multiply;
}

.page-hero {
  padding: 60px 0 40px;
}

.page-hero .hero-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero .hero-inner h1 {
  margin-top: 0;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer {
  background: #fff;
  padding: 36px 0;
  border-top: 1px solid rgba(28, 27, 25, 0.08);
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}
