* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1f24;
  --muted: #5d6470;
  --line: #d9dde4;
  --soft: #f5f6f8;
  --accent: #2f6fed;
  --accent-dark: #1d4fba;
  --panel: #ffffff;
  --warm: #f1ede7;
  --hero-bg: #eef3ff;
  --midnight: #222836;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 80px;
}

header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.top-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  background: var(--warm);
  color: #6a4c28;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.section-block {
  background: var(--panel);
  padding: 48px 0;
}

.section-contrast {
  background: var(--hero-bg);
  padding: 56px 0;
}

.section-dark {
  background: var(--midnight);
  color: #f5f6f8;
  padding: 56px 0;
}

.section-dark a {
  color: #cfe0ff;
}

.hero {
  background: var(--hero-bg);
  background-image: url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.hero .copy {
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
  border-radius: 16px;
}

.inline-image {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #dfe5ef;
}

.inline-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background: #e0e6f1;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #e7edf9;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

footer {
  background: #11151f;
  color: #e0e6f1;
  padding: 40px 24px 56px;
}

footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 14px;
  color: #c5cedb;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.section-bg-tools {
  background: var(--warm);
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 56px 0;
}

.section-bg-tools .copy {
  background: rgba(255, 255, 255, 0.92);
  padding: 24px;
  border-radius: 18px;
}

.page-title {
  font-size: 36px;
  line-height: 1.2;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.text-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero {
    padding: 60px 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
