* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1f;
  --muted: #5b5e67;
  --brand: #2b6cb0;
  --accent: #d97706;
  --bg: #f6f5f2;
  --panel: #ffffff;
  --soft: #eef2f6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.wrapper {
  width: min(1160px, 92%);
  margin: 0 auto;
}

header {
  background: var(--panel);
  border-bottom: 1px solid #e2e2e2;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.2rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

nav a {
  font-weight: 600;
}

.hero {
  background: var(--panel);
  padding: 48px 0 36px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.gap-sm {
  gap: 14px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media-box {
  background: #dfe7ef;
  padding: 12px;
  border-radius: 16px;
}

.media-box img {
  width: 100%;
  border-radius: 12px;
}

.hero h1 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--brand);
  color: #fff;
  background: var(--brand);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.btn.accent {
  background: var(--accent);
  border-color: var(--accent);
}

.btn:hover,
.btn:focus {
  opacity: 0.9;
  text-decoration: none;
}

.section {
  padding: 52px 0;
}

.section.alt {
  background: var(--soft);
}

.section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-top: 0;
}

.pill {
  display: inline-flex;
  background: #1b1b1f;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.service-block {
  background: var(--panel);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(21, 21, 21, 0.08);
}

.mt-16 {
  margin-top: 16px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.quote {
  border-left: 4px solid var(--brand);
  padding-left: 18px;
  color: var(--muted);
}

.form-card {
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(21, 21, 21, 0.08);
}

.form-card label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0d4da;
  margin-top: 6px;
  font-family: inherit;
}

.form-card button {
  margin-top: 16px;
  width: 100%;
}

.footer {
  background: #111218;
  color: #e3e3e3;
  padding: 40px 0;
}

.footer a {
  color: #e3e3e3;
}

.footer .split {
  align-items: flex-start;
}

.small {
  font-size: 0.9rem;
  color: #b8b8c0;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta a {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hero-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: #fff2e6;
  color: #8a4b0f;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 12px;
}

.full-bleed {
  background: #151722;
  color: #fff;
}

.full-bleed .btn.secondary {
  color: #fff;
  border-color: #fff;
}

.image-backdrop {
  background: #d7dee6;
  border-radius: 18px;
  padding: 18px;
}

.image-backdrop img {
  border-radius: 14px;
  width: 100%;
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-studio .service-block,
.bg-studio .image-backdrop,
.bg-studio .pill {
  background-color: rgba(17, 18, 24, 0.9);
  color: #fff;
}

.bg-studio .quote {
  color: #e3e3e3;
  border-left-color: #fff;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.legal-list li {
  margin: 0;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.simple-grid > div {
  flex: 1 1 240px;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  nav ul {
    justify-content: flex-start;
  }
}
