* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f23;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 16px;
  display: inline-block;
}

header {
  background: #f1ede7;
  border-bottom: 1px solid #e1d9cf;
}

.nav-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: #5f5a55;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

nav a {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  border-bottom: 1px solid #1b1f23;
}

.hero {
  padding: 60px 0;
  background: #efe7dd;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
}

.media-frame {
  background: #d9d2c7;
  border-radius: 18px;
  overflow: hidden;
}

.tone-a {
  background: #c6c0b8;
}

.tone-b {
  background: #cbbfb4;
}

.tone-c {
  background: #d7cfc4;
}

.tone-d {
  background: #cfc6ba;
}

.media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-frame.small {
  border-radius: 12px;
}

.hero h1 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 16px;
}

.hero p {
  font-size: 17px;
  max-width: 480px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1b1f23;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.button:hover {
  background: #343942;
}

.outline-button {
  background: transparent;
  color: #1b1f23;
  border: 1px solid #1b1f23;
}

.outline-button:hover {
  background: #1b1f23;
  color: #ffffff;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #ffffff;
}

.section.photo {
  background-image: url("https://images.unsplash.com/photo-1691403099540-ffbd281da36e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 31, 35, 0.55);
}

.section.photo .page {
  position: relative;
  z-index: 1;
}

.section h2 {
  margin-top: 0;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  min-width: 220px;
  border: 1px solid #efe3d9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-weight: 600;
  color: #2f3a45;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.inline-link {
  border-bottom: 1px solid #1b1f23;
  padding-bottom: 2px;
}

.inline-link:hover {
  border-color: #343942;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  background: #f9f6f2;
  border-left: 4px solid #1b1f23;
  padding: 16px 18px;
  border-radius: 10px;
}

.form-panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e9dfd5;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8d1c7;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
  background: #b07a3b;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover {
  background: #8f622f;
}

footer {
  background: #1b1f23;
  color: #ffffff;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-grid a {
  color: #ffffff;
  border-bottom: 1px solid transparent;
}

.footer-grid a:hover {
  border-color: #ffffff;
}

.disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: #d7d7d7;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #ddd4c8;
  display: none;
  z-index: 30;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #1b1f23;
  background: transparent;
  cursor: pointer;
}

.cookie-actions button:hover {
  background: #1b1f23;
  color: #ffffff;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background: #e3d8cd;
  border-radius: 999px;
  font-size: 12px;
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
