* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1f26;
  --muted: #4b5563;
  --accent: #1f6feb;
  --accent-2: #0f766e;
  --light: #f7f7f2;
  --sand: #efe9e2;
  --stone: #e7ecf2;
  --shadow: rgba(17, 24, 39, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 20px 8vw 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 280px;
  text-align: right;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 8vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 360px;
}

.hero {
  background: var(--light);
}

.hero h1 {
  font-size: clamp(2.2rem, 2.4vw + 1.6rem, 3.6rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: var(--accent-2);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid transparent;
}

.inline-link:hover {
  border-color: var(--accent);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  padding: 14px 16px;
  background: var(--stone);
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--shadow);
}

.panel {
  background: var(--sand);
  padding: 50px 8vw;
}

.panel.alt {
  background: #fff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-2);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.form-block {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 12px 32px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d4d7dc;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px var(--shadow);
}

.image-frame {
  background: #dbe4ee;
  border-radius: 24px;
  overflow: hidden;
}

.bg-mist {
  background-color: #dbe4ee;
}

.bg-cloud {
  background-color: #e6e9ef;
}

.bg-slate {
  background-color: #e2e5eb;
}

.bg-ice {
  background-color: #dde6ef;
}

.bg-pearl {
  background-color: #e2e7ec;
}

.bg-dusk {
  background-color: #1f2937;
}

.bg-sand {
  background-color: #efe9e2;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-studio .overlay {
  background: rgba(15, 23, 42, 0.62);
  color: #fff;
  padding: 60px 8vw;
}

.footer {
  margin-top: auto;
  padding: 40px 8vw;
  background: #101418;
  color: #e5e7eb;
}

.footer a {
  color: #e5e7eb;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.legal-note {
  font-size: 0.85rem;
  color: #cbd5f5;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 auto 30px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 28px var(--shadow);
  padding: 10px 18px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 30px var(--shadow);
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 10;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: var(--stone);
  padding: 24px;
  border-radius: 20px;
}

.section-divider {
  height: 2px;
  background: #e5e7eb;
  margin: 30px 0;
}

.page-title {
  padding: 50px 8vw 20px;
}

.page-title h1 {
  margin-bottom: 6px;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-grid .image-frame {
  flex: 1 1 240px;
  min-height: 180px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .ad-label {
    text-align: left;
  }
  .sticky-cta {
    position: static;
    margin: 20px 8vw;
  }
}
