* {
  box-sizing: border-box;
}

:root {
  --forest: #1f3d2b;
  --olive: #6b7d4b;
  --sage: #dfe7d9;
  --stone: #f5f2ec;
  --ink: #1b1b1b;
  --sun: #d6a45a;
  --mist: #f7f6f2;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 6vw 12px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  font-size: 0.95rem;
}

.nav-links a {
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 32px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 15%;
  width: 140px;
  height: 140px;
  background: url("assets/pattern-leaf.svg") no-repeat center;
  opacity: 0.5;
}

.hero-copy {
  background: var(--stone);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.button.alt {
  background: var(--sun);
  color: var(--ink);
}

.section {
  padding: 36px 6vw;
}

.section.muted {
  background: var(--sage);
}

.section.dark {
  background: var(--forest);
  color: #fff;
}

.section-title {
  font-size: 1.7rem;
  margin: 0 0 16px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.asym-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.asym-card h3 {
  margin: 0 0 8px;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: italic;
}

.quote span {
  font-style: normal;
  font-weight: 600;
}

.gallery-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery-strip img {
  border-radius: 16px;
}

.sticky-cta {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  position: sticky;
  top: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 4px solid var(--sun);
}

.service-price {
  font-weight: 700;
}

.form-panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
  width: 100%;
  font-family: inherit;
}

.form-panel button {
  border: none;
  cursor: pointer;
}

.footer {
  padding: 28px 6vw 42px;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .button {
  padding: 10px 14px;
}

.page-header {
  padding: 40px 6vw 20px;
  background: var(--stone);
}

.page-header h1 {
  margin: 0;
  font-size: 2rem;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dual-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dual-row .offset {
  margin-left: 6vw;
}

@media (min-width: 840px) {
  .nav-links {
    flex-direction: row;
    gap: 18px;
    text-align: left;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    max-width: 440px;
    margin-top: 40px;
  }

  .asym-row {
    flex-direction: row;
  }

  .gallery-strip {
    flex-direction: row;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 240px;
  }

  .dual-row {
    flex-direction: row;
  }
}
