* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1c1e;
  --muted: #5a5f66;
  --accent: #2544ff;
  --accent-soft: #eef1ff;
  --sand: #f5f2ee;
  --mist: #f7f9fb;
  --stone: #e6e0d7;
  --shadow: 0 20px 50px rgba(17, 20, 24, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 24px 6vw 10px;
}

.top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e1e4e8;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
}

.main-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.cta-button {
  background: var(--accent);
  color: #ffffff;
}

.ghost-button {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.cta-button:focus,
.ghost-button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page-wrap {
  padding: 0 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-media {
  flex: 1 1 340px;
  position: relative;
  min-height: 320px;
}

.hero-media .image-frame {
  background: var(--stone);
  padding: 18px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.image-frame {
  background: var(--sand);
  border-radius: 20px;
  overflow: hidden;
}

.offset-block {
  position: relative;
  margin-top: 50px;
}

.offset-block .offset-card {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 32px;
  background: var(--mist);
  border-radius: 22px;
}

.offset-block .offset-text {
  flex: 1 1 260px;
}

.offset-block .offset-media {
  flex: 1 1 260px;
}

.layered-band {
  margin: 80px 0;
  padding: 60px 6vw;
  background: var(--sand);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(17, 20, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card img {
  border-radius: 14px;
  height: 180px;
}

.asym-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin: 80px 0;
}

.asym-section.reverse {
  flex-direction: row-reverse;
}

.asym-section .text-panel {
  flex: 1 1 320px;
}

.asym-section .media-panel {
  flex: 1 1 320px;
}

.bg-culture {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 6vw;
  border-radius: 30px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.bg-culture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 22, 0.55);
}

.bg-culture .culture-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 38px rgba(17, 20, 24, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card img {
  border-radius: 14px;
  height: 170px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.form-panel {
  background: var(--mist);
  border-radius: 26px;
  padding: 32px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd6dd;
  font-size: 1rem;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.site-footer {
  padding: 40px 6vw 60px;
  background: #111214;
  color: #f2f3f5;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  margin-top: 16px;
}

.notice {
  font-size: 0.85rem;
  color: #d2d5db;
}

.page-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 20px 0;
}

.content-block {
  margin: 40px 0;
}

@media (max-width: 820px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
