* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f2a2e;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6%;
  background-color: #f2efe9;
  border-bottom: 1px solid #d4d0c8;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.disclosure {
  font-size: 0.85rem;
  max-width: 420px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  padding: 70px 6% 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f3;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 31, 34, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 12px 20px;
  border: none;
  background-color: #e6b36d;
  color: #1f2a2e;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background-color: transparent;
  border: 1px solid #f7f6f3;
  color: #f7f6f3;
}

.section {
  padding: 60px 6%;
}

.section-dark {
  background-color: #1f2a2e;
  color: #f7f6f3;
}

.section-soft {
  background-color: #efeae2;
}

.split-offset {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.split-offset.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
}

.offset-card {
  background-color: #ffffff;
  padding: 28px;
  border: 1px solid #d4d0c8;
  box-shadow: -18px 18px 0 rgba(31, 42, 46, 0.12);
}

.offset-card.dark {
  background-color: #2a3539;
  color: #f7f6f3;
}

.image-frame {
  background-color: #d8d3c9;
  padding: 8px;
}

.image-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border: 1px solid #d4d0c8;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card button {
  align-self: flex-start;
}

.pricing-note {
  font-size: 0.9rem;
  color: #5b676b;
}

.form-shell {
  background-color: #ffffff;
  padding: 30px;
  border: 1px solid #d4d0c8;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 10px;
  border: 1px solid #c7c2ba;
  font-size: 1rem;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.floating-note {
  background-color: #efeae2;
  padding: 18px;
  max-width: 420px;
  margin-left: auto;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #1f2a2e;
  color: #f7f6f3;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background-color: #e6b36d;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

footer {
  margin-top: auto;
  padding: 40px 6%;
  background-color: #1a2326;
  color: #f7f6f3;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-columns div {
  flex: 1 1 200px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border: 1px solid #d4d0c8;
  padding: 16px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 10px;
  cursor: pointer;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 60px 6% 30px;
  background-color: #efeae2;
}

.page-hero h1 {
  font-size: 2rem;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-block {
  background-color: #ffffff;
  border: 1px solid #d4d0c8;
  padding: 24px;
  max-width: 520px;
}

.thanks-panel {
  background-color: #ffffff;
  border: 1px solid #d4d0c8;
  padding: 30px;
  max-width: 620px;
}

.background-band {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f3;
  position: relative;
}

.background-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 46, 0.65);
}

.background-band > * {
  position: relative;
  z-index: 1;
}

.note-card {
  background-color: #efeae2;
  padding: 24px;
  border-left: 4px solid #e6b36d;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.muted {
  color: #5b676b;
}
