* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #8a2a1c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #f1ece3;
  border-bottom: 1px solid #e3d8c8;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6%;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a3d2b;
  background: #efe2d2;
  padding: 6px 10px;
  border-radius: 16px;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero {
  padding: 48px 6% 32px;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-media {
  flex: 1 1 360px;
  min-width: 280px;
  background: #e7dbc9;
  padding: 12px;
}

.hero-media img {
  width: 100%;
  height: 360px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: #8a2a1c;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-light {
  background: #f1ece3;
  color: #6b3b2b;
  border: 1px solid #d6c4af;
}

.section {
  padding: 44px 6%;
}

.section.alt {
  background: #fff;
}

.section-title {
  margin: 0 0 16px;
  font-size: 2rem;
}

.magazine-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.col {
  flex: 1 1 260px;
  min-width: 240px;
}

.col-wide {
  flex: 2 1 420px;
}

.image-card {
  background: #f0e4d5;
  padding: 12px;
}

.bg-cream {
  background: #e7dbc9;
}

.bg-sand {
  background: #efe2d2;
}

.bg-warm {
  background: #f0e4d5;
}

.image-card img {
  width: 100%;
  height: 260px;
}

.quote {
  background: #efe6db;
  padding: 20px;
  border-left: 4px solid #8a2a1c;
  font-style: italic;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  background: #fff;
  padding: 18px;
  border: 1px solid #eadfce;
}

.inline-cta {
  font-weight: 600;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #eadfce;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #8a2a1c;
}

.form-wrap {
  background: #fff;
  border: 1px solid #eadfce;
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d6c4af;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 24px 6%;
  background: #fff;
  border: 1px solid #eadfce;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

footer {
  background: #1f1f1f;
  color: #fff;
  padding: 32px 6%;
}

footer a {
  color: #f4d4a6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-col {
  flex: 1 1 200px;
}

.banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1f1f1f;
  color: #fff;
  padding: 16px;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 10;
}

.banner-actions {
  display: flex;
  gap: 8px;
}

.banner button {
  padding: 8px 14px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
}

.banner .accept {
  background: #f4d4a6;
  color: #1f1f1f;
}

.banner .reject {
  background: #444;
  color: #fff;
}

.page-hero {
  padding: 36px 6% 0;
  background: #f1ece3;
}

.page-hero img {
  width: 100%;
  height: 280px;
}

.note {
  font-size: 0.95rem;
  color: #5a3d2b;
}

.bg-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #3a2b22;
}

.bg-section .bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-section .bg-overlay {
  position: relative;
  z-index: 1;
  background: rgba(25, 18, 12, 0.6);
  padding: 32px;
}
