*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f2ee;
  --ink: #1c1b1a;
  --muted: #6c6a67;
  --accent: #c24a2b;
  --accent-dark: #8f3520;
  --soft: #efe7df;
  --surface: #ffffff;
  --shadow: rgba(17, 16, 15, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 20px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border-bottom: 1px solid #e6ded5;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.9rem;
}

.ad-label {
  background: var(--ink);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 5vw 30px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--soft);
  color: var(--ink);
}

.image-frame {
  background: #e2d8cf;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex: 1 1 300px;
  min-height: 260px;
  box-shadow: 0 18px 30px var(--shadow);
}

.section {
  padding: 45px 5vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.section.alt {
  background: var(--surface);
}

.section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.section p {
  margin: 0;
  color: var(--muted);
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.quote {
  background: var(--soft);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote span {
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  border-radius: 20px;
  background: var(--surface);
  padding: 20px;
  border: 1px solid #e9dfd6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card strong {
  font-size: 1.3rem;
}

.form-wrap {
  background: var(--surface);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 30px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9d1c9;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  border: none;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 10;
}

.footer {
  padding: 30px 5vw 40px;
  background: #191817;
  color: #e9e4df;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cfc9c4;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 12px 26px var(--shadow);
  padding: 18px;
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.small-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.page-hero {
  padding: 40px 5vw 20px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.contact-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 260px;
  box-shadow: 0 12px 24px var(--shadow);
}

.legal {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 24px var(--shadow);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-item {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  background: var(--soft);
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 760px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero {
    padding-top: 24px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
