* {
  box-sizing: border-box;
}

:root {
  --ink: #171717;
  --muted: #5a5a5a;
  --bg: #f6f4f1;
  --surface: #ffffff;
  --accent: #e4572e;
  --accent-2: #0f5d5d;
  --soft: #ece7e1;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: var(--surface);
  border-bottom: 1px solid #e3ded8;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 6vw;
  background-color: #dcd2c6;
  background-image: url("https://images.unsplash.com/photo-1760302318620-261f5e4d1940?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 42px;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--surface);
}

.section-bg-photo {
  background-image: linear-gradient(rgba(17, 17, 17, 0.55), rgba(17, 17, 17, 0.55)), url("https://images.unsplash.com/photo-1511556820780-d912e42b4980?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-bg-photo .note,
.section-bg-photo .tag {
  color: #e6e6e6;
}

.section-bg-photo .highlight {
  background: rgba(255, 255, 255, 0.12);
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ece2d9;
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 180px;
}

.image-frame {
  background-color: #d9d0c6;
  border-radius: 16px;
  overflow: hidden;
}

.tag {
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--muted);
}

.highlight {
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
}

.quote {
  font-style: italic;
  margin: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  font-weight: 600;
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #e9ded4;
}

.price-row strong {
  font-weight: 600;
}

.form-wrap {
  background: var(--surface);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e6ddd4;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d9d0c6;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-status {
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  padding: 40px 6vw;
  background: #111111;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #cfcfcf;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e6ddd4;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #d6ccc3;
  background: #ffffff;
  cursor: pointer;
}

.cookie-btn.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.page-hero {
  padding: 60px 6vw 30px;
  background-color: #e6dfd6;
  background-size: cover;
  background-position: center;
  color: #111111;
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1760302318631-a8d342cd4951?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1752694909919-77e24bb29e4f?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1637666679781-7e535cd26dfa?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1502238074616-a146498d5158?w=1400&q=80");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1678266622946-668ede09af9a?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1779122806859-5a9e02f59e0d?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1761952199689-7bf870229d1e?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1608667508764-33cf0726b13a?w=1400&q=80");
}

.page-hero h1 {
  margin: 0;
  font-size: 34px;
}

.simple-image {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  background: #d7d0c8;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-block {
  flex: 1 1 240px;
  background: var(--surface);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e6ddd4;
}

.note {
  font-size: 14px;
  color: var(--muted);
}
