:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5b6773;
  --sand: #f4f1ec;
  --clay: #e6ddd2;
  --sky: #e9f1f5;
  --accent: #2357c6;
  --accent-soft: #d9e3ff;
  --dark: #0f172a;
  --light: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  background: var(--light);
  border-bottom: 1px solid #e5e7eb;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 1px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 48px 6vw 36px;
  align-items: stretch;
  background: var(--sky);
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.hero-media {
  flex: 0.9;
  min-height: 320px;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.frame-sand {
  background-color: #dbe7ef;
}

.frame-clay {
  background-color: #dcd7cf;
}

.frame-mist {
  background-color: #dae4ed;
}

.frame-cream {
  background-color: #e3ddd6;
}

.frame-steel {
  background-color: #e2e8f0;
}

.frame-dune {
  background-color: #e7e2db;
}

.frame-dawn {
  background-color: #e2dcd5;
}

.frame-stone {
  background-color: #dfe6ee;
}

.frame-oat {
  background-color: #e1dbd3;
}

.frame-fog {
  background-color: #dee3e8;
}

.frame-city {
  background-color: #e0e5ea;
}

.section {
  padding: 48px 6vw;
}

.section-alt {
  background: #f7f4ef;
}

.section-cream {
  background: #f7f2ec;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.section-title h2 {
  margin: 0;
  font-size: 28px;
}

.section-title p {
  color: var(--muted);
  max-width: 420px;
}

.columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 240px;
}

.card {
  background: var(--light);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 14px;
  height: 180px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--clay);
  font-size: 12px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.button.secondary {
  background: var(--dark);
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.split-panel {
  background: var(--dark);
  color: var(--light);
  border-radius: 20px;
  padding: 28px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.pricing-item:last-child {
  border-bottom: none;
}

.form-shell {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--light);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}

.form-shell label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d2d6dc;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-pill {
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 10px 14px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.service-pill.active {
  background: var(--accent);
  color: var(--light);
}

.inline-cta {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
}

.sticky-cta button {
  box-shadow: var(--shadow);
}

.footer {
  background: var(--dark);
  color: var(--light);
  padding: 48px 6vw;
}

.footer a {
  color: var(--light);
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-block {
  flex: 1;
  min-width: 200px;
}

.notice {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: var(--light);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  z-index: 6;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 40px 6vw 24px;
  background: var(--clay);
}

.page-hero h1 {
  margin: 0 0 12px;
}

.media-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.media-strip .image-frame {
  flex: 1;
  min-width: 220px;
  height: 180px;
}

.contact-card {
  background: var(--light);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.mt-18 {
  margin-top: 18px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-28 {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
