* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
[hidden] {
  display: none !important;
}
:root {
  --ink: #1f2a23;
  --moss: #48624e;
  --sage: #e7efe6;
  --sand: #f5f0e8;
  --accent: #c86b2a;
  --accent-dark: #9e4f1f;
  --shadow: rgba(24, 38, 28, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 0;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--sand);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px var(--shadow);
}

.nav-links a {
  font-size: 0.9rem;
}

.hero {
  padding: 48px 6vw 64px;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-card {
  flex: 1 1 320px;
  position: relative;
}

.hero-card img {
  border-radius: 24px;
  box-shadow: 0 30px 60px var(--shadow);
}

.hero-tag {
  position: absolute;
  bottom: 18px;
  left: -18px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: var(--moss);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 56px 6vw;
  position: relative;
}

.section.bg-sage {
  background: var(--sage);
}

.section.bg-sand {
  background: var(--sand);
}

.section.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1459666644539-a9755287d6b0?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split .col {
  flex: 1 1 280px;
}

.offset-box {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 24px 50px var(--shadow);
  transform: translateY(-24px);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--moss);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-row img {
  flex: 1 1 200px;
  border-radius: 18px;
  height: 210px;
  object-fit: cover;
}

.testimonial {
  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 12px 26px var(--shadow);
  margin-bottom: 14px;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd6c8;
  font-family: inherit;
}

.inline-cta {
  margin-top: 16px;
  font-weight: 600;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0f1612;
  color: #e5efe2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--moss);
  color: #fff;
}

.cookie-actions .reject {
  background: #e8e1d8;
  color: var(--ink);
}

.policy-wrap {
  max-width: 860px;
}

.page-hero {
  padding: 56px 6vw 32px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 12px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px var(--shadow);
}

@media (max-width: 840px) {
  .nav-links {
    border-radius: 18px;
  }

  .hero-tag {
    left: 12px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
