* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1f24;
  background: #f6f5f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 7vw;
  background: #f6f5f3;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
  background: #f0e7dc;
  color: #4b3726;
}

.hero {
  position: relative;
  padding: 80px 7vw 120px;
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #c8c2bb;
  color: #fdfcfb;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 29, 0.62);
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.hero h1 {
  font-size: 44px;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 18px;
  margin: 0 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  background: #f4c86f;
  color: #1f1e1a;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #fdfcfb;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 70px 7vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.split-media {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  background-color: #d7d2cb;
  padding: 16px;
}

.split-media img {
  width: 100%;
  max-width: 480px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

.offset-section {
  padding: 80px 7vw 60px;
  background: #ffffff;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 220px;
  background: #f6f1ea;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #cbbfb3;
}

.service-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card-content span {
  font-weight: 600;
}

.highlight-band {
  padding: 80px 7vw;
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #9aa2a6;
  color: #fdfcfb;
  position: relative;
}

.highlight-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 20, 23, 0.7);
}

.highlight-band-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.highlight-item {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 16px;
}

.pricing-section {
  padding: 70px 7vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: #fff;
  border-radius: 16px;
  gap: 16px;
}

.pricing-row span {
  font-weight: 600;
}

.form-section {
  padding: 80px 7vw;
  background: #f2efe9;
  position: relative;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
  font-size: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d4d1cc;
  font-size: 14px;
  font-family: inherit;
}

.inline-cta {
  color: #7a4b0a;
  text-decoration: underline;
}

.footer {
  padding: 40px 7vw;
  background: #1c1c20;
  color: #d9d6d1;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-note {
  margin-top: 20px;
  font-size: 13px;
}

.image-inline {
  width: 100%;
  max-width: 520px;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  background-color: #c9c2b9;
}

.story-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
}

.story-layout img {
  align-self: flex-end;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 22px;
  background: #1e1f24;
  color: #fdfcfb;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  background: #1f1e1a;
  color: #fdfcfb;
}

.cookie-actions .reject {
  background: #c9c2b9;
  color: #1f1e1a;
}

.hero-mini {
  padding: 70px 7vw;
  background-size: cover;
  background-position: center;
  background-color: #bbb4ad;
  color: #fdfcfb;
  position: relative;
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.hero-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 24, 27, 0.6);
}

.hero-mini-content {
  position: relative;
  max-width: 640px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 60px 7vw;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.legal {
  padding: 60px 7vw 80px;
  max-width: 860px;
}

.legal h2 {
  margin-top: 32px;
}

.muted {
  color: #6f6b65;
}

.image-card {
  background-color: #c8c2bb;
  padding: 12px;
  border-radius: 18px;
  display: inline-flex;
}

.image-card img {
  width: 100%;
  max-width: 520px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.thanks-wrapper {
  padding: 90px 7vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.services-grid .service-card {
  flex: 1 1 260px;
}
