* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2430;
  --muted: #5d6a7a;
  --accent: #e06a5f;
  --accent-dark: #b84c43;
  --sand: #f6f1ed;
  --mist: #eef2f6;
  --shadow: rgba(31, 36, 48, 0.08);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background-color: #ffffff;
  line-height: 1.6;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

header {
  padding: 32px 0 12px;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--sand);
  border-radius: 18px;
}

.hero-media {
  flex: 1 1 380px;
  background-color: #c9c5c0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  z-index: 2;
  background: var(--ink);
  color: #ffffff;
  padding: 18px 24px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 50px var(--shadow);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-asym {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.section-asym.reverse {
  flex-direction: row-reverse;
}

.section-card {
  background: var(--mist);
  padding: 26px;
  border-radius: 20px;
  flex: 1 1 320px;
  box-shadow: 0 12px 36px var(--shadow);
}

.image-wrap {
  background-color: #dcd7d0;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 320px;
  min-height: 260px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
  border: 1px solid #f0d8d3;
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid #edf1f5;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px var(--shadow);
}

.service-card img {
  border-radius: 14px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote {
  flex: 1 1 260px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #fff7f5;
  border-radius: 12px;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 38px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dce2;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: var(--ink);
  color: #f5f5f5;
  padding: 32px 0;
}

.footer .page-wrap {
  gap: 20px;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #e3e6ea;
  border-radius: 16px;
  padding: 16px;
  width: min(360px, 88vw);
  box-shadow: 0 18px 40px var(--shadow);
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.notice {
  background: #fff3e5;
  border-radius: 16px;
  padding: 18px;
}

.policy-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f9fafc;
  padding: 22px;
  border-radius: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eef1f4;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.1;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.muted {
  color: var(--muted);
}
