* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  color: #1f1b16;
  background-color: #f7f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.site-header {
  padding: 28px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 14px;
  max-width: 360px;
  color: #5b4e43;
}

.ad-label {
  font-size: 13px;
  color: #6b5e53;
  border: 1px solid #c9b8a9;
  padding: 6px 10px;
  border-radius: 16px;
  background: #f2e8dd;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.site-nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.hero {
  padding: 90px 6vw 120px;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background-image: url("https://images.unsplash.com/photo-1558540319-35836c870b28?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3a2b22;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 27, 22, 0.2) 0%, rgba(31, 27, 22, 0.65) 100%);
}

.hero-content {
  position: relative;
  max-width: 640px;
  color: #fef6ee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.1;
}

.hero p {
  margin: 0;
  font-size: 18px;
  color: #f6eadf;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 28px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn {
  background: #f37c3d;
  color: #1f1b16;
  border: 1px solid #f37c3d;
}

.btn-outline {
  border: 1px solid #f4b18f;
  color: #fef6ee;
  background: transparent;
}

.btn:active,
.btn-outline:active {
  transform: scale(0.98);
}

.inline-link {
  text-decoration: underline;
}

.section {
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background-color: #efe6db;
}

.section.dark {
  background-image: url("https://images.unsplash.com/photo-1709230367358-c70f09f70c32?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a211d;
  color: #fef6ee;
  position: relative;
}

.section.dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 20, 16, 0.6);
}

.section.dark .section-inner {
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: #a4714c;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  padding: 22px;
  border-radius: 20px;
  background: #fff7ee;
  border: 1px solid #e3d2c1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card.dark {
  background: #2c221c;
  color: #fef6ee;
  border-color: #4a3a31;
}

.card h3,
.card h4 {
  margin: 0;
}

.img-box {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #e6dbcf;
  display: flex;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery .img-box {
  flex: 1 1 260px;
  min-height: 220px;
}

.quote {
  border-left: 3px solid #f37c3d;
  padding-left: 16px;
  font-style: italic;
  color: #4d4036;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: #fffaf3;
  border-radius: 18px;
  border: 1px solid #e6d5c7;
}

.pricing-item span {
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff7ee;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid #e3d2c1;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9b8a9;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 12px 18px;
  background: #f37c3d;
  color: #1f1b16;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.2);
  z-index: 10;
}

.footer {
  padding: 50px 6vw 70px;
  background: #1f1b16;
  color: #fef6ee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-note {
  font-size: 13px;
  color: #d9c9bc;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fffaf3;
  border: 1px solid #e3d2c1;
  border-radius: 18px;
  padding: 16px 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner .btn-outline {
  color: #1f1b16;
  border-color: #d8c4b5;
}

.cookie-banner.is-visible {
  display: flex;
}

.page-title {
  font-size: 36px;
  margin: 0;
}

.simple-hero {
  padding: 70px 6vw 40px;
  background: #efe6db;
}

.simple-hero.about-hero {
  background-image: url("https://images.unsplash.com/photo-1530062845289-9109b2c9c868?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fef6ee;
  position: relative;
}

.simple-hero.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 22, 0.65);
}

.simple-hero.about-hero .section-inner {
  position: relative;
}

.simple-hero.services-hero {
  background-image: url("https://images.unsplash.com/photo-1627947063935-55577ec3c2e1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fef6ee;
  position: relative;
}

.simple-hero.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 20, 16, 0.62);
}

.simple-hero.services-hero .section-inner {
  position: relative;
}

.simple-hero.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1504564321107-4aa3efddb5bd?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fef6ee;
  position: relative;
}

.simple-hero.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 20, 16, 0.6);
}

.simple-hero.contact-hero .section-inner {
  position: relative;
}

.final-cta {
  background-image: url("https://images.unsplash.com/photo-1526213174737-acd9757c6bf3?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a211d;
  color: #fef6ee;
  position: relative;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 20, 16, 0.65);
}

.final-cta .section-inner {
  position: relative;
}

.simple-hero p {
  max-width: 680px;
  color: #5b4e43;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff7ee;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e3d2c1;
}

.note {
  font-size: 14px;
  color: #6b5e53;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
