* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #101826;
  --ink-soft: #233047;
  --mist: #f5f4f0;
  --fog: #ece8e1;
  --accent: #c59b52;
  --accent-dark: #9b7a3a;
  --surface: #ffffff;
  --muted: #6a7282;
  --line: #dad5cd;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img.media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 18px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.brand h1,
.brand h2 {
  font-size: 22px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.ad-label {
  font-size: 12px;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7e8;
}

.hero {
  display: flex;
  min-height: 420px;
  align-items: flex-end;
  border-radius: 28px;
  overflow: hidden;
  margin-top: 28px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 18, 32, 0.92), rgba(12, 18, 32, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 44px;
  max-width: 560px;
  color: #fff;
}

.hero-content h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-actions {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #251a07;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: #fff;
}

.section {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 28px;
  line-height: 1.2;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.col {
  flex: 1 1 280px;
}

.panel {
  background: var(--surface);
  border-radius: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel.highlight {
  background: #fff9f0;
  border-color: #ecd9b7;
}

.image-frame {
  background: #d8d1c6;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}

.magazine {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.magazine .panel {
  flex: 1 1 260px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  align-items: stretch;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-wrap: wrap;
}

.service-card .image-frame {
  flex: 0 0 220px;
  min-height: 160px;
}

.service-card .content {
  flex: 1 1 240px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.callout {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bg-city {
  background: linear-gradient(120deg, rgba(16, 24, 38, 0.9), rgba(16, 24, 38, 0.3)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-work {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.form-card {
  background: var(--surface);
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-links a {
  color: var(--accent-dark);
  font-weight: 600;
}

.inline-links a:hover {
  color: var(--accent);
}

.footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: inherit;
}

.footer a:hover {
  color: var(--accent-dark);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #111827;
  color: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.sticky-cta button {
  border: none;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--fog);
  color: var(--ink);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
}

.cookie-actions button.primary {
  background: var(--accent);
  border-color: var(--accent);
}

.cookie-actions button.primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.cookie-actions button:hover {
  background: #e6dfd4;
}

.page-header {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.simple-section {
  background: var(--surface);
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 900px) {
  .hero-content h2 {
    font-size: 34px;
  }

  .sticky-cta {
    position: static;
    margin: 24px 0 0;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    max-width: none;
  }
}
