* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #101214;
  --muted: #5d6368;
  --paper: #f7f4ef;
  --stone: #e3dfd7;
  --accent: #b61d2b;
  --accent-dark: #89111d;
  --ocean: #18324b;
  --sun: #f3c15b;
}

body {
  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;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.section {
  padding: 70px 6vw;
  position: relative;
  overflow: hidden;
}

.section--paper {
  background: var(--paper);
}

.section--stone {
  background: var(--stone);
}

.section--dark {
  background: var(--ocean);
  color: #fff;
}

.section--accent {
  background: var(--accent);
  color: #fff;
}

.section--image {
  color: #fff;
  background-size: cover;
  background-position: center;
}

.section--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 16, 0.55);
}

.section--image .content {
  position: relative;
  z-index: 1;
}

.hero-image {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
}

.weave-image {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1600&q=80");
}

.atelier-image {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1600&q=80");
}

.heritage-image {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1400&q=80");
}

.signal-image {
  background-image: url("https://images.unsplash.com/photo-1526481280695-3c687fd643ed?auto=format&fit=crop&w=1600&q=80");
}

.city-image {
  background-image: url("https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?auto=format&fit=crop&w=1600&q=80");
}

.line-image {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1600&q=80");
}

.content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.section--dark .eyebrow,
.section--accent .eyebrow,
.section--image .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.headline {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
}

.section--dark .lead,
.section--accent .lead,
.section--image .lead {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split > * {
  flex: 1 1 280px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(14, 16, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.quote {
  flex: 1 1 240px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  font-style: italic;
  color: inherit;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step {
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sun);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  border-radius: 20px;
  background: #fff;
  padding: 24px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.btn--light {
  background: #fff;
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(12, 16, 22, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(10, 10, 10, 0.15);
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 10px 8px 16px;
  box-shadow: 0 12px 22px rgba(10, 12, 18, 0.16);
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 18px 28px rgba(12, 16, 22, 0.18);
  z-index: 10;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer {
  padding: 50px 6vw;
  background: #0f1114;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer small {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 720px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
