/* Base */
:root {
  --ink: #1f2326;
  --muted: #5b6670;
  --cream: #f6f1ea;
  --sand: #efe6da;
  --accent: #1b6f5a;
  --accent-soft: #d7efe7;
  --rose: #f7d9d5;
  --sun: #f5c36a;
  --stone: #dad3c7;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23, 28, 32, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #faf8f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 6vw 8px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.asym-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 6vw;
}

.asym-section.split {
  flex-direction: column;
}

.panel {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.panel.soft {
  background: var(--cream);
  box-shadow: none;
}

.panel.tint {
  background: var(--accent-soft);
}

.hero {
  background: linear-gradient(120deg, var(--cream), #fff);
  position: relative;
  overflow: hidden;
}

.bg-texture {
  background-image: linear-gradient(135deg, rgba(215, 239, 231, 0.6), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1450778869180-41d0601e046e?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: var(--sun);
  opacity: 0.3;
  border-radius: 50%;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.btn.alt {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px dashed var(--accent);
}

.offset-card {
  margin-left: 8vw;
}

.offset-card.reverse {
  margin-left: 0;
  margin-right: 8vw;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.image-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.9rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-soft);
  padding: 10px;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.price {
  color: var(--accent);
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: var(--rose);
}

.testimonial span {
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 0.95rem;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta .btn {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: var(--white);
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 600;
}

.pill.primary {
  background: var(--ink);
  color: var(--white);
}

.page-hero {
  padding: 48px 6vw 10px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 2.1rem;
}

.page-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px 6vw 40px;
}

.info-card {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .asym-section.split {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
    padding-right: 40px;
  }

  .hero-media {
    flex: 1;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-grid .panel {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 16px);
  }

  .gallery-row {
    flex-direction: row;
  }

  .gallery-row .image-frame {
    flex: 1;
  }

  .form-wrap {
    flex-direction: row;
  }

  .form-card {
    flex: 2;
  }

  .sticky-cta {
    flex: 1;
  }

  .page-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .page-grid .info-card {
    flex: 1 1 calc(50% - 18px);
  }
}
