* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --sand: #f4f0ea;
  --stone: #e6e0d8;
  --clay: #d2c3b3;
  --ocean: #1f4e5f;
  --mint: #cbe4db;
  --sun: #f2d57c;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 0;
}

.nav-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  padding: 48px 6vw 60px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 20px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-text p {
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ocean);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #163c49;
}

.btn-secondary {
  background: transparent;
  color: var(--ocean);
  border: 1px solid var(--ocean);
}

.btn-secondary:hover {
  background: var(--mint);
}

.hero-image {
  flex: 1 1 280px;
  min-height: 360px;
  background-color: var(--clay);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(24px);
}

.offset-panel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  padding: 32px 6vw;
}

.offset-panel.reverse {
  flex-direction: row-reverse;
}

.panel-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.panel-text p {
  color: var(--muted);
}

.panel-image {
  flex: 1 1 260px;
  min-height: 260px;
  background-color: var(--stone);
  border-radius: 24px;
  overflow: hidden;
}

.layered-section {
  background: var(--sand);
  padding: 60px 6vw;
  position: relative;
}

.layered-section::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 8%;
  width: 120px;
  height: 120px;
  background: var(--sun);
  border-radius: 50%;
  z-index: 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.service-card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.service-image {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--clay);
}

.price {
  font-weight: 600;
  color: var(--ocean);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 56px 6vw;
  background: var(--white);
}

.process-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.process-step {
  flex: 1 1 260px;
  background: var(--mint);
  padding: 18px;
  border-radius: 16px;
}

.process-image {
  flex: 1 1 220px;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--stone);
}

.testimonial {
  background: var(--ocean);
  color: var(--white);
  padding: 46px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 240px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.cta-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  background: var(--sun);
}

.form-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  padding: 56px 6vw 80px;
  background: var(--sand);
}

.form-box {
  flex: 1 1 320px;
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-box label {
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8d1c8;
  font-size: 0.95rem;
}

.inline-link {
  color: var(--ocean);
  text-decoration: underline;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal {
  font-size: 0.85rem;
  color: #d1d1d1;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--ocean);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.page-header {
  padding: 40px 6vw 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.content-section {
  padding: 28px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-card {
  background: var(--sand);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.content-card .panel-image {
  min-height: 180px;
}

.address-box {
  background: var(--sand);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.align-right {
  align-self: flex-end;
}

.align-left {
  align-self: flex-start;
}

.image-frame {
  width: 100%;
  height: 100%;
  background-color: var(--clay);
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--sand);
}
