* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2328;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  overflow-x: hidden;
}

.topbar {
  background: #0e1116;
  color: #f3f4f6;
  padding: 14px 28px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom-color: #f3f4f6;
}

.ad-label {
  font-size: 12px;
  max-width: 320px;
  text-align: right;
  opacity: 0.9;
}

.hero {
  position: relative;
  padding: 90px 24px 80px;
  background-image: url("https://images.unsplash.com/photo-1617776919745-3b30ac157d3d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f7f2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 17, 0.55);
}

.hero-content {
  position: relative;
  max-width: 680px;
  margin-left: 12%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  max-width: 580px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f4b45e;
  color: #2a1f10;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #1f2328;
  color: #f6f4f1;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #f6f4f1;
  color: #f6f4f1;
}

.btn:hover {
  filter: brightness(1.05);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
}

.section {
  padding: 80px 24px;
}

.section.narrow {
  padding: 70px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.asym-row {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(15, 20, 30, 0.12);
  margin-left: 50px;
}

.offset-card.alt {
  margin-left: 0;
  margin-right: 50px;
}

.img-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: #d9d2c6;
  min-height: 260px;
}

.img-wrap.tall {
  min-height: 360px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(15, 20, 30, 0.1);
}

.service-card .price {
  font-weight: 700;
  font-size: 18px;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-select button {
  background: #e7e1d8;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.service-select button.active {
  background: #1f2328;
  color: #f6f4f1;
}

.form-wrap {
  background: #0f141c;
  color: #f4f1ea;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
}

.note {
  font-size: 14px;
  opacity: 0.8;
}

.strip {
  background-color: #eae3d9;
  background-image: linear-gradient(rgba(234, 227, 217, 0.88), rgba(234, 227, 217, 0.88)),
    url("https://images.unsplash.com/photo-1712681355846-f81302e7886f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.strip::before {
  content: "";
  position: absolute;
  left: 8%;
  top: -30px;
  width: 120px;
  height: 120px;
  background: #f4b45e;
  border-radius: 28px;
  transform: rotate(12deg);
}

.split-callout {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split-callout .badge {
  background: #1f2328;
  color: #f6f4f1;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.link-inline {
  color: #1a4d7a;
  font-weight: 600;
}

.page-footer {
  background: #10131a;
  color: #d8dce3;
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-bottom-color: #d8dce3;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #1f2328;
  color: #f6f4f1;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #f4b45e;
  color: #2a1f10;
}

.cookie-actions .reject {
  background: #353c46;
  color: #f6f4f1;
}

.simple-header {
  padding: 60px 24px 30px;
  background: #f1ede6;
}

.simple-header h1 {
  font-size: 34px;
}

.content-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-panel {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15, 20, 30, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 20, 30, 0.08);
}

.service-row .price {
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-content {
    margin-left: 0;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .asym-row {
    flex-direction: column;
  }

  .offset-card,
  .offset-card.alt {
    margin: 0;
  }

  .split-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
