* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1c1f;
  --muted: #5a616b;
  --sand: #f2efe9;
  --stone: #e7e3dc;
  --mist: #f7f8fb;
  --forest: #1f3b34;
  --clay: #d4b89e;
  --sun: #f6d58f;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  overflow: hidden;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-label {
  padding: 6px 12px;
  background: var(--sun);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 6vw 30px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero-text p {
  color: var(--muted);
  margin: 0 0 24px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 360px;
  background: var(--stone);
  border-radius: 28px 120px 28px 28px;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.alt {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}

.section {
  padding: 56px 6vw;
  position: relative;
}

.section.soft {
  background: var(--sand);
}

.section.dark {
  background: var(--forest);
  color: white;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.offset-grid.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 320px;
  background: white;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-22px);
}

.offset-card.center {
  transform: translateY(12px);
}

.img-frame {
  flex: 1 1 320px;
  min-height: 280px;
  background: var(--clay);
  border-radius: 18px;
  overflow: hidden;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list span {
  display: block;
  padding: 12px 16px;
  background: white;
  border-radius: 16px;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 220px;
  padding: 20px;
  background: white;
  border-radius: 18px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card .img-frame {
  min-height: 180px;
  border-radius: 0;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.form-wrap {
  background: white;
  border-radius: 26px;
  padding: 28px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d6dc;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  background: var(--sun);
  color: var(--ink);
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.footer {
  padding: 40px 6vw 60px;
  background: #121312;
  color: #e3e3e3;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer a {
  color: #e3e3e3;
}

.muted {
  color: var(--muted);
}

.banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 16px;
  max-width: 320px;
  z-index: 15;
}

.banner-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.bg-trail {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c9d4c4;
}

.bg-summit {
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cbd5e1;
}

.content-slab {
  max-width: 760px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--stone);
  font-weight: 600;
  font-size: 0.85rem;
}

.contact-card {
  background: white;
  border-radius: 22px;
  padding: 24px;
  max-width: 520px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.thanks-box {
  background: white;
  border-radius: 20px;
  padding: 28px;
  max-width: 620px;
  margin: 0 auto;
}
