*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --ink: #1f2428;
  --muted: #5b6166;
  --accent: #d34b2a;
  --accent-dark: #b63f23;
  --soft: #ffffff;
  --line: #e1d9d1;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.image-frame {
  background: #d9d0c6;
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 80px 0 70px;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1730461749346-d75ee4d30aa1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.6);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-grid {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 320px;
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: 18px;
}

.hero-media .image-frame {
  background: #2d2d2d;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 16px;
  color: #f0f0f0;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #fff;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #ece6df;
  color: var(--ink);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--soft);
}

.section.edge {
  background: #111;
  color: #f5f5f5;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-title span {
  color: var(--muted);
  font-size: 1rem;
}

.split {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.split .panel {
  flex: 1 1 320px;
}

.panel-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.panel-card .image-frame {
  background: #ddd2c7;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.service-card .image-frame {
  border-radius: 12px;
  background: #d9d0c6;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.highlight {
  flex: 1 1 240px;
  padding: 18px;
  border-radius: 14px;
  background: #f2ece6;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

footer {
  padding: 30px 0 50px;
  background: #1a1d20;
  color: #f1f1f1;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid div {
  flex: 1 1 200px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cfd3d7;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 10;
}

.sticky-cta button {
  background: #e6ded7;
  border: none;
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
}

.sticky-cta button:hover,
.sticky-cta button:focus {
  background: #d7cdc4;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #111;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #fff;
  color: #111;
}

.cookie-actions button:hover,
.cookie-actions button:focus {
  opacity: 0.9;
}

@media (max-width: 760px) {
  .hero {
    padding: 60px 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
