* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --surface: #ffffff;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --accent: #1f5eff;
  --accent-soft: #e7ecff;
  --sand: #efe8df;
  --sage: #e2efe9;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  position: relative;
}

.site-header {
  padding: 28px 6vw 10px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.main {
  padding: 0 6vw 120px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.image-frame {
  background: var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-button {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cta-button.secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.cta-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill {
  background: var(--sage);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: var(--radius-sm);
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  background: var(--surface);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.form-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  font-size: 0.95rem;
  color: var(--muted);
}

.footer {
  background: #0f1115;
  color: #f2f2f2;
  padding: 60px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: #f2f2f2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d2d2d2;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: var(--accent-soft);
  color: var(--accent);
}

.notice {
  background: var(--sand);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.muted {
  color: var(--muted);
}

.page-head {
  padding: 30px 6vw 0;
}

.page-main {
  padding: 40px 6vw 120px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.legal-block {
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.service-row span {
  flex: 1 1 200px;
}

.service-row .price {
  text-align: right;
}

.inline-note {
  background: var(--accent-soft);
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  color: var(--accent);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--surface);
  padding: 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

@media (max-width: 760px) {
  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }

  .nav-links {
    justify-content: flex-start;
  }
}
