/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #184a45;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2e302c;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.ad-label {
  padding: 6px 10px;
  border: 1px solid #b79a6a;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #7a5a28;
  background: #fff7ea;
}

/* Hero */
.hero {
  color: #fefcf7;
  padding: 96px 0 84px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 24, 22, 0.45);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin: 0;
}

.hero-subtitle {
  font-size: 1.05rem;
  margin: 0;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #f4b35a;
  color: #1d1c1a;
  font-weight: 600;
  cursor: pointer;
}

.button.alt {
  background: #fefcf7;
  color: #1d1c1a;
}

/* Sections */
.section {
  padding: 72px 0;
  position: relative;
}

.section.alt {
  background: #f0ece6;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.section-lead {
  max-width: 680px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
}

.asym-visual {
  flex: 1 1 320px;
  position: relative;
}

.offset-card {
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-18px);
}

.image-frame {
  background-color: #d7d1c7;
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.price {
  font-weight: 700;
  color: #184a45;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6efe8;
  color: #184a45;
  font-size: 0.85rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  background: #ffffff;
  padding: 22px;
  border-left: 4px solid #b79a6a;
}

/* Form */
.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d5d1c8;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Sticky CTA */
.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #1d2e2a;
  color: #fefcf7;
  padding: 18px;
  border-radius: 16px;
  max-width: 240px;
}

.sticky-cta button {
  width: 100%;
}

/* Footer */
footer {
  background: #1d1c1a;
  color: #f7f1e8;
  padding: 40px 0;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}

.footer-grid a {
  color: #f4b35a;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

/* Page specific heroes */
.hero-index {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1493558103817-58b2924bce98?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.visual-strip {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c7d0d1;
  padding: 48px;
  color: #ffffff;
}

/* Utility */
.muted {
  color: #5b5b54;
}

.spacer {
  height: 22px;
}

@media (max-width: 760px) {
  .sticky-cta {
    position: static;
    max-width: 100%;
  }

  .hero {
    padding: 72px 0;
  }
}
