* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #2f6fed;
  --accent-dark: #1f4ca3;
  --surface: #f6f4f1;
  --paper: #ffffff;
  --sand: #efe7dc;
  --slate: #1f2a3a;
  --radius: 18px;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 28px 6vw 96px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.nav a:focus,
.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.ad-label {
  background: var(--slate);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.hero-main {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 10px 28px 0;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-image {
  flex: 1 1 320px;
  background: #d7e3f6;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 22px;
  max-width: 420px;
  margin-left: auto;
  margin-top: -60px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:focus,
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-dark {
  background: var(--slate);
  color: #fff;
}

.offset-section {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.offset-block {
  flex: 1 1 280px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--sand);
}

.offset-block.alt {
  background: #e6eefc;
}

.image-frame {
  flex: 1 1 320px;
  background: #e2e0de;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
}

.bg-ivory {
  background: #e8e6e1;
}

.bg-mist {
  background: #e2edf2;
}

.bg-lilac {
  background: #e9e3f1;
}

.bg-sky {
  background: #e5ecff;
}

.layered {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  right: 12%;
  top: -18px;
  width: 120px;
  height: 120px;
  background: #d5e5ff;
  border-radius: 28px;
  z-index: 0;
}

.layered > * {
  position: relative;
  z-index: 1;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card img {
  border-radius: 14px;
  height: 170px;
}

.service-card button {
  margin-top: auto;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.form-intro {
  flex: 1 1 280px;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
  font-size: 0.95rem;
}

.form-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.form-panel .disabled {
  opacity: 0.6;
  pointer-events: none;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  display: flex;
  justify-content: flex-end;
  margin-top: -40px;
  z-index: 3;
}

.sticky-cta a {
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(47, 111, 237, 0.25);
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-tile {
  flex: 1 1 240px;
  background: #e7ede8;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 180px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid #e5e5e5;
  padding-top: 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: var(--muted);
}

.notice {
  background: #f1f1f1;
  border-radius: 16px;
  padding: 16px;
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  padding: 16px 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.page-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 10px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.two-col > div {
  flex: 1 1 300px;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    margin-left: 0;
  }

  .sticky-cta {
    justify-content: flex-start;
  }
}
