* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1c17;
  --muted: #5c5f55;
  --accent: #1f6b44;
  --accent-dark: #154c31;
  --sand: #f5f2ea;
  --leaf: #d9ead7;
  --sun: #f6f0c2;
  --stone: #e6e4df;
  --shadow: rgba(18, 23, 15, 0.12);
  --radius: 22px;
  font-size: 16px;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #121511;
  color: #f6f4ee;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 107, 68, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(31, 107, 68, 0.34);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--hero {
  background: var(--leaf);
  position: relative;
  overflow: hidden;
}

.section--hero .hero-split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.section--hero .hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section--hero .hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(31, 107, 68, 0.3);
}

.section--insight {
  background: var(--sand);
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.section--insight .insight-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px var(--shadow);
}

.section--insight .insight-panel strong {
  color: var(--ink);
}

.section--story {
  background: #ffffff;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.story-card {
  flex: 1 1 240px;
  background: var(--stone);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section--pricing {
  background: var(--sun);
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 230px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px var(--shadow);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.section--gallery {
  background-image: url("../images/texture-leaf.svg");
  background-size: cover;
  background-position: center;
}

.gallery-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.gallery-row img {
  flex: 1 1 220px;
  min-height: 160px;
  object-fit: cover;
}

.section--form {
  background: #fff;
}

.form-wrap {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.form-panel,
.form-aside {
  flex: 1 1 280px;
  background: var(--stone);
  padding: 24px;
  border-radius: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(60, 70, 52, 0.2);
  font-family: inherit;
}

.section--trust {
  background: var(--leaf);
}

.trust-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1 1 220px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section--cta {
  background: #1b261a;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.section--cta p {
  color: rgba(255, 255, 255, 0.7);
}

footer {
  background: #0f130f;
  color: rgba(255, 255, 255, 0.8);
  padding: 32px 8vw 42px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 26px var(--shadow);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
  padding: 18px;
  width: min(320px, 90vw);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  flex: 1;
}

.page-hero {
  padding: 50px 8vw 30px;
  background: var(--leaf);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-columns {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding: 40px 8vw 60px;
}

.page-panel {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 32px var(--shadow);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: var(--sand);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

.legal {
  padding: 40px 8vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal h2 {
  margin-bottom: 8px;
}

.thanks {
  padding: 80px 8vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sun);
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .section--hero .hero-split,
  .section--insight,
  .section--cta {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
