:root {
  --ink: #1d1f21;
  --muted: #5b6168;
  --paper: #f6f4f1;
  --accent: #2b5b5a;
  --accent-soft: #dde8e6;
  --sand: #efe9e2;
  --shadow: rgba(20, 22, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 7%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--accent-soft);
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1776482128074-960564637e76?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 120px 7% 90px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 244, 241, 0.76);
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--accent);
}

.btn:hover,
.btn:focus {
  background: #234a49;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent-soft);
}

.section {
  padding: 80px 7%;
  position: relative;
}

.offset-band {
  background: var(--sand);
}

.offset-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-grid.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 320px;
  min-width: 280px;
}

.image-frame {
  flex: 1 1 320px;
  min-width: 260px;
  background: #d7d0c9;
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.floating-card {
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 20px 50px var(--shadow);
  max-width: 420px;
  margin-top: -50px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 36px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.soft-bg {
  background-image: url("https://images.unsplash.com/photo-1769745241584-be9b8227e126?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f1f1f;
}

.soft-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 244, 241, 0.85);
}

.soft-bg .section-content {
  position: relative;
}

.testimonial {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.testimonial .image-frame img {
  height: 260px;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 50px var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4d6d8;
  font-size: 1rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1b3a39;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #142d2c;
}

footer {
  padding: 50px 7% 70px;
  background: #111514;
  color: #f0f1f2;
}

footer a:hover,
footer a:focus {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.disclaimer {
  margin-top: 24px;
  font-size: 0.92rem;
  color: #c9cccf;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: var(--ink);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 18px 40px var(--shadow);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.page-hero {
  padding: 70px 7% 40px;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.stacked .floating-card {
  margin-top: 0;
}

.notice {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px;
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 36px var(--shadow);
}

.service-detail {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.service-detail .image-frame img {
  height: 240px;
}

.hidden {
  display: none;
}
