* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #14212b;
  --muted: #5b6770;
  --cream: #f5f2ee;
  --sand: #e7dfd4;
  --sea: #2f5f74;
  --accent: #d39c5b;
  --light: #ffffff;
  --shadow: 0 20px 50px rgba(20, 33, 43, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 28px 0 18px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 70px;
  color: var(--light);
  background: linear-gradient(120deg, rgba(20, 33, 43, 0.86), rgba(20, 33, 43, 0.35));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content {
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--ink);
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--light);
}

.section {
  padding: 80px 0;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.photo-card {
  background: var(--sand);
  padding: 14px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.photo-card img {
  border-radius: 18px;
}

.offset-block {
  background: var(--light);
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: translateY(16px);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--light);
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card .price {
  font-weight: 700;
  color: var(--sea);
}

.service-card img {
  border-radius: 18px;
  height: 180px;
}

.service-card .btn {
  align-self: flex-start;
}

.tone-section {
  position: relative;
  color: var(--light);
  padding: 90px 0;
  background: rgba(20, 33, 43, 0.9);
}

.tone-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.testimonial {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.testimonial .quote {
  font-size: 1.1rem;
}

.form-shell {
  background: var(--light);
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--sand);
  font-size: 1rem;
  background: #fffdfb;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--sea);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.footer {
  background: #131e26;
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--light);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: var(--ink);
}

.cookie-reject {
  background: var(--sand);
  color: var(--ink);
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
}

.page-card {
  background: var(--light);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.page-photo {
  background: var(--sand);
  padding: 12px;
  border-radius: 22px;
}

.page-photo img {
  border-radius: 16px;
  height: 260px;
}

.legal {
  padding: 60px 0 90px;
}

.legal p {
  margin-bottom: 16px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero {
    padding: 60px 0;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
