:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --accent: #7b3ff2;
  --accent-soft: #efe7ff;
  --sand: #f7f2ea;
  --fog: #f1f4f8;
  --line: #ded7ce;
  --shadow: 0 18px 40px rgba(25, 25, 25, 0.12);
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.72;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  padding: 30px 6vw 80px;
  background: linear-gradient(110deg, var(--sand), #fff 60%);
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  margin-top: 40px;
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 560px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 2px solid transparent;
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.hero-visual {
  flex: 1 1 280px;
  margin-top: 30px;
  margin-left: -40px;
  transform: rotate(-2deg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section {
  padding: 80px 6vw;
  position: relative;
}

.section.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.section.asym.reverse {
  flex-direction: row-reverse;
}

.section.asym .text-block {
  flex: 1 1 320px;
  max-width: 560px;
}

.section.asym .text-block h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.section.asym .text-block p {
  color: var(--muted);
}

.section.asym .visual-block {
  flex: 1 1 280px;
  align-self: center;
  margin-top: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offset-panel {
  background: var(--accent-soft);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-left: -40px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 12px 26px rgba(30, 30, 30, 0.08);
}

.card img {
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.stat {
  flex: 1 1 160px;
  background: var(--fog);
  border-radius: var(--radius-md);
  padding: 18px;
}

.stat strong {
  font-size: 1.4rem;
  display: block;
}

.quote {
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin: 0;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery img {
  flex: 1 1 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.cta-panel {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.cta-panel a {
  background: #fff;
  color: var(--ink);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.form-section {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 50px 6vw 70px;
  background: #0f0f0f;
  color: #f7f7f7;
}

.footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer a {
  color: #f7f7f7;
  opacity: 0.75;
}

.footer a:hover {
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 16px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookie-banner.is-hidden {
  display: none;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 45;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.split-band {
  background: var(--fog);
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.bg-loft {
  background-image: url("https://images.unsplash.com/photo-1452860606245-08befc0ff44b?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.bg-canvas {
  background-image: url("https://images.unsplash.com/photo-1513364776144-60967b0f800f?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.bg-paper {
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.header-subtle {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-visual {
    margin-left: 0;
  }

  .offset-panel {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .nav-split {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    padding-bottom: 50px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
