* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f2ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

header {
  padding: 32px 6vw 12px;
}

.top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  max-width: 260px;
  font-size: 0.85rem;
  background: #efe7df;
  padding: 10px 12px;
  border-radius: 10px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav-link {
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}

.nav-link:focus {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

main {
  padding: 10px 6vw 80px;
}

.section {
  margin: 60px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 2rem;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 40px;
  color: #fdf9f5;
  background-color: #a79b90;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 40px;
  color: #fdf9f5;
  background-color: #9c9186;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 12px 24px 0;
}

.hero-visual {
  flex: 0.9;
  position: relative;
  min-height: 360px;
  background: #dcd2c8;
  border-radius: 20px;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #f6f2ee;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #efe7df;
  border: 1px solid #1a1a1a;
  font-size: 0.95rem;
  cursor: pointer;
}

.inline-link {
  border-bottom: 1px solid #1a1a1a;
}

.offset-block {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.offset-card {
  flex: 1;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.offset-media {
  flex: 0.7;
  align-self: flex-start;
  margin-top: 40px;
  background: #d9cfc6;
  border-radius: 16px;
  overflow: hidden;
}

.offset-media img {
  width: 100%;
  height: 100%;
}

.split-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.floating-panel {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: #fdf9f5;
  border-radius: 18px;
  border: 1px solid #dccfc3;
}

.floating-panel img {
  width: 220px;
  height: 160px;
  border-radius: 14px;
  background: #d8cdc3;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0d6cd;
}

.service-item img {
  width: 120px;
  height: 90px;
  border-radius: 10px;
  background: #d8cdc3;
}

.service-meta {
  flex: 1;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.asym-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.asym-grid .card {
  flex: 1;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e1d7cd;
}

.asym-grid .card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: #d8cdc3;
}

.form-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid #e1d7cd;
}

.form-visual {
  flex: 0.7;
  background: #d9cfc6;
  border-radius: 16px;
  overflow: hidden;
}

.form-visual img {
  width: 100%;
  height: 100%;
}

form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0c6bd;
  background: #fdf9f5;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.85rem;
  color: #4f4a45;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1a1a1a;
  color: #f6f2ee;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #e1d7cd;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  background: #efe7df;
  cursor: pointer;
}

footer {
  background: #1a1a1a;
  color: #f6f2ee;
  padding: 40px 6vw;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 180px;
}

.reference-list a {
  color: #f6f2ee;
  border-bottom: 1px solid #f6f2ee;
}

@media (max-width: 900px) {
  .hero,
  .offset-block,
  .asym-grid,
  .form-wrap,
  .floating-panel {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  nav {
    justify-content: flex-start;
  }
}
