@charset "UTF-8";
.flow > * + * {
  margin-top: var(--space-3);
}

.flow--tight > * + * {
  margin-top: var(--space-2);
}

.flow--loose > * + * {
  margin-top: var(--space-5);
}

main {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  z-index: 1;
}
main > * {
  grid-column: 2;
}

ul,
ol {
  padding-left: var(--space-3);
  margin: 0;
  max-width: var(--measure);
}

/* base list items */
li {
  margin-bottom: var(--space-2);
  padding-left: var(--space-1);
  line-height: var(--line-body);
  color: var(--text);
}

/* default marker */
li::marker {
  color: var(--headlines);
}

ul,
li {
  list-style-position: outside;
}

.headline {
  font-size: var(--text-lg);
}

.headline::marker {
  content: "" !important;
}

li:not(.headline) {
  margin-left: 1.5rem;
}
li:not(.headline)::marker {
  content: "▶" !important;
  color: hsl(235, 30%, 66%);
  font-size: var(--text-sm);
  display: inline-block;
}

.transition p {
  font-size: 1.25rem;
  max-width: 48ch;
  color: #666;
}

.article {
  padding: var(--space-45);
}

.article--wide {
  max-width: var(--measure-wide);
}

.article--narrow {
  max-width: 70ch;
}

.article--full {
  grid-column: 1/-1;
}

.article--offset {
  transform: translateX(-10ch);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  gap: var(--space-4);
  background: var(--surface-light);
}
@media (width <= 860px) {
  .cards {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }
}

/* base card */
.card {
  width: 100%;
  padding-inline: var(--space-4);
  padding-block: var(--space-2);
  gap: var(--space-1);
}

.card--narrow {
  width: 60%;
  margin-inline: 0 40%;
}
@media (width <= 860px) {
  .card--narrow {
    width: 100%;
    margin-inline: 0 0;
  }
}
.card--narrow > h2 {
  font-size: var(--text-xl);
}

.card--medium {
  width: 80%;
  margin-inline: 0 20%;
}
@media (width <= 860px) {
  .card--medium {
    width: 100%;
    margin-inline: 0 0;
  }
}

.card--accent {
  background: var(--surface-mid);
}
.card--accent h3, .card--accent p, .card--accent li, .card--accent li::marker {
  color: #fff;
}

.card--media {
  padding: 0;
}

.card--span {
  grid-column: span 2;
}

.card p {
  margin-bottom: var(--space-3);
}

.card .price {
  font-size: var(--text-xl);
}

.card__title {
  display: grid;
  gap: var(--space-2);
}

.card__title h2 {
  margin: 0;
  font-size: var(--text-2xl);
}

.card--accent {
  background-color: var(--surface-mid);
}

.card--span {
  grid-column: span 2;
}

/* PRINCIPLE (page-specific content block) */
.principle {
  padding-block: var(--space-6);
  color: var(--surface-light);
}

.principle h2 {
  max-width: var(--measure-wide);
  font-size: var(--text-2xl);
  line-height: var(--line-tight);
  color: var(--surface-light);
}

.principle p {
  max-width: var(--measure);
  font-size: var(--text-lg);
  line-height: var(--line-body);
}

.ctas {
  margin-top: var(--space-4);
}

.ctas {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: var(--space-3);
}

.ctas .cta1 {
  padding-inline: var(--space-3);
  padding-block: var(--space-2);
  background-color: var(--surface-cta);
  color: var(--headlines);
}

.ctas .cta2 {
  color: var(--text);
  padding-inline: var(--space-3);
  padding-block: var(--space-2);
}

.section--dark {
  --cta-2-color: #fff;
}

.cta__title {
  font-size: var(--text-lg);
}

.faq-wrap {
  position: relative;
  width: clamp(20rem, 45vw, 80ch);
  border-radius: 0 5px 5px 5px;
  overflow: hidden;
  background-color: var(--surface-light);
  padding: var(--space-4);
}

details {
  margin-block: 0 var(--space-4);
}

details {
  position: relative;
  width: clamp(20rem, 40vw, 70ch);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(238, 236, 236, 0.08);
  background-color: rgb(255, 255, 255);
  transition: box-shadow 200ms ease;
}

details[open] {
  max-height: 20rem;
  transition: box-shadow 200ms ease;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-5);
  padding-block: var(--space-6);
  padding-inline: 120px;
  background: var(--surface-dark);
  color: var(--text);
}
@media (width <= 860px) {
  .footer {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
    padding-inline: 0;
    padding-block: var(--space-3);
    gap: var(--space-2);
    border-top: solid thin var(--bg);
  }
}

.footer__brand {
  grid-column: 1;
}
.footer__brand h2 {
  color: var(--surface-light);
  font-size: var(--text-xl);
}
.footer__brand p {
  color: var(--text-muted);
}

.footer__nav {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer__nav a {
  color: var(--text-light);
}

.footer__info {
  grid-column: 3;
}
.footer__info h3 {
  font-size: var(--text-lg);
  color: var(--bg);
}
.footer__info p {
  color: var(--text-light);
}

@media (width <= 860px) {
  .footer__info, .footer__nav, .footer__brand {
    grid-column: 2;
  }
}
.hero {
  grid-template-columns: 120px minmax(0, 1.25fr) minmax(0, 0.75fr) 120px;
}
@media (width <= 860px) {
  .hero {
    grid-template-columns: 2.5rem 1fr 2.5rem;
  }
}
.hero {
  grid-template-rows: 120px 500px 280px;
}
@media (width <= 860px) {
  .hero {
    grid-template-rows: 120px 300px 320px 280px;
  }
}

.hero__title {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin-inline-start: var(--space-4);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.2rem;
  color: var(--headlines);
}
@media (width <= 860px) {
  .hero__title {
    grid-row: 3;
    align-self: start;
  }
}

.hero__statement {
  grid-column: 3;
  grid-row: 3;
  place-self: start center;
  font-size: var(--text-xl);
  line-height: var(--line-tight);
  color: var(--text);
}
@media (width <= 860px) {
  .hero__statement {
    grid-column: 2;
    align-self: end;
  }
  .hero__statement p {
    padding-left: 3ch;
  }
}

.hero__content {
  grid-column: 2;
  grid-row: 3;
  margin-top: var(--space-3);
  margin-inline-start: var(--space-4);
  max-width: var(--meassure);
  color: var(--text);
}
@media (width <= 860px) {
  .hero__content {
    grid-row: 4;
  }
}
.hero__content p {
  margin-bottom: var(--space-1);
  font-size: var(--text-md);
}

.hero__label--side {
  grid-column: 1;
  grid-row: 2/4;
  place-self: center;
  transform: rotate(-90deg);
  text-wrap: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-xl);
  color: var(--text);
}

.word {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-muted, hsl(0, 0%, 60%));
  opacity: 0;
  transform: translateX(-40px);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 900ms ease, -webkit-text-stroke 400ms ease, color 500ms ease;
  will-change: transform, opacity, color;
}
@media (width <= 860px) {
  .word {
    margin-right: 0.4rem;
  }
}

.hero.is-reveal .word {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--i) * 220ms);
}

.hero.is-fill .word {
  color: var(--headlines);
  -webkit-text-stroke: 0;
  opacity: 1;
  transform: translateX(0);
}

.hero__media {
  position: relative;
  grid-column: 3;
  grid-row: 2;
  transform: translate(-2%, 2%);
  place-self: center;
}
@media (width <= 860px) {
  .hero__media {
    grid-column: 2;
    grid-row: 2;
  }
}
.hero__media img {
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 860px) {
  .hero__media img {
    height: 300px;
  }
}
.hero__media::before {
  position: absolute;
  content: "";
  inset: -1px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0) 52%, rgb(255, 255, 255) 60%, rgb(255, 255, 255));
}

.indicator-column {
  grid-column: -1;
  grid-row: 1/-1; /* instead of span 3 */
  justify-self: end;
  position: sticky;
  top: 60px; /* nav offset only */
  padding-right: 50px;
}

.indicator {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 40vh;
}
@media (width <= 860px) {
  .indicator {
    top: 50vh;
  }
}

.indicator a {
  width: 100px;
  height: 1px;
  background: var(--surface-mid);
  transition: transform 1000ms ease, background 300ms ease;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
}

.indicator a.active {
  transform: translateX(-60px);
  background: var(--text);
}

@media (max-width: 860px) {
  .indicator-column {
    position: fixed;
    right: 16px;
    top: 0;
    height: 100vh;
    width: 30px;
    padding-right: 25px;
    pointer-events: none;
  }
  .indicator a {
    width: 40px;
  }
  .indicator a.active {
    transform: translateX(-20px);
  }
}
.list--dash li::marker {
  content: "- ";
}

.list--arrow li::marker {
  content: "› ";
}

.list--accent li::marker {
  color: var(--surface-mid);
}

.subgrid img {
  box-shadow: var(--shadow-1);
  transform: translate(-20%, 10%);
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  z-index: 99;
  background-color: var(--surface-dark);
}

.nav__links {
  list-style: none;
}
.nav__links .links::marker {
  content: "" !important;
}
@media (width <= 860px) {
  .nav__links {
    gap: var(--space-1) !important;
  }
}

.nav__links .links {
  color: var(--text-light);
  font-size: 0.875rem;
  text-decoration: none;
  padding: var(--space-1) var(--space-2);
  transition: color 200ms ease;
}
@media (width <= 860px) {
  .nav__links .links {
    padding: var(--space-1) var(--space-0);
  }
}

.nav__links a:hover {
  color: var(--surface-light);
}

.nav__links a {
  position: relative;
  color: var(--text-light);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 300ms ease;
}

.nav__links a:hover::after {
  background: var(--surface-light);
}

@media (width <= 860px) {
  .nav__brand img {
    width: 50px;
    height: 23px;
  }
}
#contact-toggle {
  display: none;
  transition: transform 400ms ease;
}

#contact-toggle:checked ~ .panel-wrap {
  transform: translateX(0);
}

#contact-toggle:checked ~ .panel-handle {
  transform: translateX(-35rem);
  transition: transform 400ms ease;
}

#contact-toggle:checked ~ .panel-wrap .outer-panel::before {
  filter: blur(2px) saturate(0.9) contrast(0.95);
}

#contact-toggle:checked ~ .panel-wrap .outer-panel::after {
  opacity: 1;
}

.panel-wrap {
  position: fixed;
  top: 200px;
  right: 0;
  height: -moz-fit-content;
  height: fit-content;
  width: min(35rem, 90vw);
  transform: translateX(100%);
  transition: transform 400ms ease;
  z-index: 100;
  background: transparent; /* important: no visual block here */
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
  display: block;
}

.outer-panel {
  position: relative;
  height: 100%;
  width: 100%;
  padding: var(--space-4);
  background: white;
  padding: 4rem;
  overflow: hidden;
}
.outer-panel::before {
  content: "";
  position: absolute;
  inset: 2.7rem 0 2.7rem 2.7rem;
  background-image: url("/images/assets/contact.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(0px);
  transform: scale(1.05);
  transition: filter 4000ms ease;
  z-index: 0;
}
.outer-panel::after {
  content: "";
  position: absolute;
  inset: 2rem 0 2rem 2rem;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 1;
}

.inner-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.inner-panel h2 {
  font-size: var(--text-xl);
  margin-bottom: 0;
}
.inner-panel p {
  font-size: 1.125rem;
}
.inner-panel * {
  color: #fff;
}

.panel-handle {
  position: fixed;
  width: 3rem;
  height: 6rem;
  display: grid;
  place-content: center;
  right: 0;
  top: 200px;
  transform: translateX(0);
  z-index: 1000;
  cursor: pointer;
  padding: 4rem 0.25rem;
  border-radius: 6px 0 0 6px;
  background: hsla(0, 0%, 100%, 0.9);
  box-shadow: -6px 0 12px rgba(0, 0, 0, 0.2);
}
.panel-handle .handle-text {
  display: inline-block;
  transform: rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
}

.whatsapp-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.whatsApp h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
.whatsApp a {
  font-size: var(--text-lg);
  color: var(--surface-cta);
}
.whatsApp {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.section {
  display: grid;
  grid-column: 2;
  gap: var(--space-4);
}

.section {
  padding-block: var(--space-6);
  padding-inline: var(--space-6);
}

.section--tight {
  padding-block: var(--space-4);
}

.section--normal {
  padding-block: var(--space-6);
}

.section--loose {
  padding-block: var(--space-7);
}

.section--dark {
  background: var(--surface-dark);
  color: var(--text-light);
}

@media (width <= 860px) {
  .section {
    display: grid;
    grid-column: 2;
    gap: var(--space-2);
  }
  .section {
    padding-block: var(--space-3);
    padding-inline: var(--space-2);
  }
  .section--tight {
    padding-block: var(--space-2);
  }
  .section--normal {
    padding-block: var(--space-2);
  }
  .section--loose {
    padding-block: var(--space-3);
  }
}
.section--light {
  background: var(--surface-light);
  color: var(--text);
}

.section--muted {
  background: var(--surface-mid);
}

.section--narrow {
  max-width: var(--measure-narrow);
}

.section--wide {
  max-width: var(--measure-wide);
}

.section--full {
  grid-column: 1/-1;
}

.section ul {
  max-width: var(--measure);
}

.section {
  scroll-margin-top: 120px;
}

.section--hero-dark {
  color: #fff;
  background-color: var(--overlay-dark);
  padding: var(--space-6) var(--space-4);
  margin-inline: var(--space-6);
  display: grid;
  justify-content: center;
}

.section--dark h2, .section--dark h3 {
  color: #fff;
}

body {
  font-family: "Outfit", sans-serif;
  line-height: var(--line-body);
  font-size: clamp(0.875rem, 0.85rem + 0.12vw, 0.9375rem);
  letter-spacing: -0.03em;
  color: var(--text);
}

p, li, figcaption {
  text-wrap: pretty;
  max-width: var(--measure);
}

.subgrid h3 {
  font-size: var(--text-xl);
  font-family: "Outfit";
  font-weight: 700;
  margin-block: 0 var(--space-4);
  color: var(--text);
}

#analysis h2 {
  color: #ddd;
}

#analysis p,
#analysis li {
  color: #fff;
  margin-bottom: 1rem;
}

#analysis .price {
  font-size: 1.5rem;
  font-weight: 700;
}

#analysis .note {
  font-size: 1.2rem;
  color: #ddd;
}

.article p {
  width: clamp(15rem, 50vw, 75ch);
}

.article--narrow p {
  width: clamp(20rem, 40vw, 55ch);
}

h2 {
  font-size: var(--text-lg);
  text-indent: 25px hanging;
}

h3 {
  font-size: var(--text-lg);
}

#problem h2::before, #process h2::before {
  background: #ea80f8;
}

h2::before {
  background: #7aa2ff;
}

#webdesign h2::before {
  background: #6ad1b5;
}

#cases h2::before {
  background: #ffb86b;
}

h2::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  margin-bottom: 0.2em;
  border-radius: 2px;
  transform: translateY(-2px);
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: var(--line-body);
}

img {
  max-width: 100%;
  display: block;
}

p {
  margin: 0 0 var(--space-3);
  max-width: var(--measure);
}

h1, h2, h3, h4 {
  line-height: var(--line-tight);
  text-wrap: balance;
  color: var(--headlines);
}

h2, h3, h4 {
  text-transform: uppercase;
}

html {
  color-scheme: dark light;
  font-family: "Outfit", "Inter", sans-serif;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  background: #fff;
}

@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial");
  ascent-override: 90%;
  size-adjust: 107%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  font: inherit;
}

body {
  margin: 0;
  scroll-behavior: smooth;
}

ul, ol {
  padding: 0;
  margin: 0;
}

button,
input {
  font: inherit;
}

a {
  display: inline-block;
  text-decoration: none;
}

:root {
  /* ─────────────────────────
     SPACING (rhythm system)
  ───────────────────────── */
  --space-0: 0;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 2rem;
  --space-4: 3rem;
  --space-5: 4.5rem;
  --space-6: 6rem;
  --space-7: 9rem;
  --space-30: 30%;
  /* ─────────────────────────
     TYPOGRAPHY SCALE
  ───────────────────────── */
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.8rem;
  --text-2xl: 3rem;
  --text-hero: clamp(4rem, 8vw, 6rem);
  /* ─────────────────────────
     TYPOGRAPHY MEASURES
  ───────────────────────── */
  --measure: 65ch;
  --measure-wide: 85ch;
  --measure-narrow: 45ch;
  --measure-close: 24ch;
  --line-tight: 1.1;
  --line-body: 1.6;
  /* ─────────────────────────
     COLORS
  ───────────────────────── */
  --headlines: hsl(220 45% 16%);
  --text: hsl(0 0% 27%);
  --text-muted: hsl(0 0% 60%);
  --text-light: hsl(0, 1%, 74%);
  --bg: hsl(0 0% 96%);
  --surface-dark: hsl(236 20% 16%);
  --surface-mid: hsl(236 19% 33%);
  --surface-light: #fff;
  --surface-cta: hsl(41, 81%, 64%);
  /* ─────────────────────────
     SHADOWS
  ───────────────────────── */
  --shadow-1: 0 2px 10px rgba(0,0,0,.06);
  /*________________________
  Booking-App
  __________________________*/
}

@media (width <= 860px) {
  :root {
    --text-hero: clamp(2rem, 4vw, 4rem);
  }
}
.analysis__content {
  display: grid;
  gap: 1rem;
}

.analysis__panel {
  position: sticky;
  top: 120px;
  align-self: start;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.cluster--center {
  justify-content: center;
}

.cluster--between {
  justify-content: space-between;
}

.cluster--end {
  justify-content: flex-end;
}

.nav__inner {
  height: 100%;
  align-items: center !important;
  padding-inline: var(--space-4);
}
@media (width <= 860px) {
  .nav__inner {
    padding-inline: var(--space-2);
  }
}

.ctas__space {
  margin-block: var(--space-6);
}

.ctas-column {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.grid {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
}
@media (width <= 860px) {
  .grid {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
  }
}

.grid-position-3 {
  grid-column: 3;
  grid-row: 2;
}

.grid--wide {
  grid-template-columns: 1fr;
}

.grid--full {
  grid-column: 1/-1;
}

.grid--uneven {
  display: grid;
  grid-template-columns: 120px minmax(320px, 1.4fr) minmax(320px, 0.6fr) 120px;
  gap: var(--space-4);
}
@media (width <= 860px) {
  .grid--uneven {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
    gap: var(--space-0);
  }
}

.grid--third {
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: var(--space-4);
}
@media (width <= 860px) {
  .grid--third {
    grid-template-columns: minmax(0, 1fr);
  }
}

.grid__place_3 {
  grid-column: 3;
  grid-row: 3;
  align-self: start;
}
@media (width <= 860px) {
  .grid__place_3 {
    grid-column: 2;
  }
}

.stack {
  display: flex;
  flex-direction: column;
}

.stack > * + * {
  margin-top: var(--space-3);
}

.stack--tight > * + * {
  margin-top: var(--space-2);
}

.stack--loose > * + * {
  margin-top: var(--space-5);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.cluster--center {
  justify-content: center;
  align-items: center;
}

.cluster--between {
  justify-content: space-between;
}

.cluster--end {
  justify-content: flex-end;
}

.cluster--tight {
  gap: var(--space-2);
}

.cluster--loose {
  gap: var(--space-5);
}

.layout-shell {
  display: grid;
  grid-template-columns: minmax(2rem, 120px) minmax(0, 1fr) minmax(2rem, 120px);
}

.layout-shell > * {
  grid-column: 2;
}

.layout-full {
  grid-column: 1/-1;
}

.stack {
  display: flex;
  flex-direction: column;
}

.stack > * + * {
  margin-top: var(--space-3);
}

.stack--tight > * + * {
  margin-top: var(--space-2);
}

.stack--loose > * + * {
  margin-top: var(--space-5);
}

/* switch page here */
#principle {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: -moz-fit-content;
  min-height: fit-content;
  gap: var(--space-4);
  padding-inline: var(--space-0);
  margin-block-end: var(--space-4);
}
@media (width <= 860px) {
  #principle {
    grid-template-columns: minmax(0, 1fr);
  }
}

#principle .article {
  grid-column: 1;
  background: linear-gradient(to bottom, hsl(236, 20%, 16%), hsl(236, 19%, 33%));
  padding: var(--space-4);
  color: var(--text-light);
}

#principle h2 {
  max-width: 24ch;
  font-size: clamp(2vw, 3rem, 3vw);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}

.projekte li {
  color: var(--text-light) !important;
  margin-left: 0.5rem;
}
.projekte li::marker {
  content: "☑";
  color: darkgoldenrod;
}

#problem {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-column: 2/5;
  gap: var(--space-4);
}
@media (width <= 860px) {
  #problem {
    grid-template-columns: minmax(0, 1fr);
    grid-column: 2;
    gap: var(--space-4) 0;
  }
}

#problem article {
  grid-column: 1;
  box-shadow: 5px 5px 5px rgba(106, 105, 177, 0.07);
}
@media (width <= 860px) {
  #problem article {
    grid-column: 2;
  }
}

#problem .wide:nth-of-type(2) {
  transform: translate(0, 20%);
}

#problem img {
  position: sticky;
  top: 3rem;
  align-self: start;
  justify-self: end;
  grid-column: 2;
  grid-row: 1/span 2;
  width: 100%;
  height: 100%;
}
@media (width <= 860px) {
  #problem img {
    grid-row: 2;
    height: auto;
  }
}

#analysis {
  grid-column: 1/-1;
  margin-block: var(--space-4);
  padding: var(--space-3);
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: clamp(4vw, 4rem, 10%);
}

#analysis h2 {
  color: var(--text);
  font-size: var(--text-xl);
  margin-block: var(--space-3) var(--space-1);
}

#analysis p,
#analysis li {
  color: var(--text);
}

#analysis .analyze p {
  margin-bottom: 2rem;
}

#analysis h3 {
  color: var(--text);
  font-size: var(--text-xl);
  margin-block: var(--space-3) var(--space-1);
}

#analysis a {
  color: var(--surface-mid);
  font-size: var(--text-lg);
}
#analysis a::before {
  content: "/";
  color: var(--surface-mid);
  margin-inline: var(--space-2);
}

#analysis .analysis-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
  grid-column: 2;
  grid-row: 1/-1;
}

#analysis .sticky-box {
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--surface-dark);
  backdrop-filter: blur(10px);
}
#analysis .sticky-box h2, #analysis .sticky-box li, #analysis .sticky-box li::marker, #analysis .sticky-box p {
  color: var(--bg);
}

#analysis .sticky-box .price {
  font-size: var(--text-lg);
  font-weight: 700;
}

#analysis .sticky-box .note {
  font-size: var(--text-lg);
}

#analysis .closing {
  max-width: var(--measure-narrow);
  font-size: var(--text-lg);
}

.process__note {
  font-size: var(--text-lg);
  color: var(--bg);
}

#webdesign > * {
  margin-block: 3rem;
}

#webdesign h2 {
  font-size: var(--text-xl);
}

#webdesign .j-center {
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  box-shadow: 10px 10px 10px rgba(16, 14, 136, 0.07);
}

#webdesign .j-center h2 {
  font-size: 2.5rem;
}

.sub-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  margin-block: 6rem;
}
@media (width <= 860px) {
  .sub-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

#webdesign .sub-section .full {
  grid-column: 1/span 2;
}

#webdesign .sub-section-1 {
  margin-block: 6rem;
  padding-block: 3rem 6rem;
  grid-template-columns: repeat(2, 1fr);
  background: linear-gradient(-30deg, hsl(236, 20%, 16%), hsl(236, 19%, 33%));
}

#webdesign .sub-section-1 p,
#webdesign .sub-section-1 li {
  color: #fff;
}

#webdesign .sub-section-1 h2 {
  color: #eee;
}

#webdesign .ctas {
  margin-top: 6rem;
}

#webdesign .sub-section-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: clamp(2vw, 2rem, 10%);
  padding: 3rem 6rem;
}

#webdesign .sub-section-2 > * {
  flex: 1 1 400px;
}

#webdesign .sub-section-2 .column {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  justify-content: space-evenly;
}

#cta2 {
  color: var(--text-light);
}

.sub-section-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: clamp(2vw, 2rem, 10%);
  padding: var(--space-6);
}
@media (width <= 860px) {
  .sub-section-2 {
    padding: var(--space-4);
  }
}
.sub-section-2 > * {
  flex: 1 1 400px;
}
.sub-section-2 .column {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  justify-content: space-evenly;
}

#cases h3 {
  font-size: 2rem;
}

#cases .case {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(4vw, 5rem, 10%);
}

#cases .card {
  min-width: 320px;
  display: grid;
  box-shadow: 10px 10px 10px rgba(16, 14, 136, 0.07);
  padding: 2rem;
  border-radius: 10px;
  transition: box-shadow 200ms ease;
}
@media (width <= 860px) {
  #cases .card {
    width: 100%;
  }
}

#cases .card:hover {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.23);
}

#cases .card img {
  margin-block: 1rem;
}

#cases .card .button {
  margin-left: auto;
  color: var(--text);
}

#cases .card--span {
  grid-column: span 2;
}
@media (width <= 860px) {
  #cases .card--span {
    grid-column: span 1;
  }
}

#cases h4 {
  font-size: var(--text-lg);
  color: var(--surface-dark);
}

#summary {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: var(--space-4);
}

#summary h2 {
  font-size: var(--text-xl);
}

#summary .ctas {
  grid-column: 2;
}

#summary .cta2 {
  color: #333;
}

.transition {
  display: grid;
  place-items: center start;
}

.transition p {
  max-width: 36ch;
  font-size: var(--text-2xl);
  color: var(--text);
}

#analysis {
  grid-column: 1/-1;
  margin-block: var(--space-5);
  padding: var(--space-5);
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: clamp(4vw, 4rem, 10%);
}
@media (width <= 860px) {
  #analysis {
    grid-template-columns: minmax(0, 1fr);
    padding: var(--space-3) 0;
  }
}

#analysis .ctas {
  grid-column: 1/-1;
}

.subgrid .ctas {
  grid-column: span 3;
}

.section--process h2 {
  font-size: var(--text-2xl);
  max-width: var(--measure-narrow);
}
@media (width <= 860px) {
  .section--process h2 {
    font-size: var(--text-lg);
    max-width: 100%;
  }
}

.section--process h3 {
  font-size: var(--text-lg);
}

.section--process {
  width: min(100%, 90ch);
}

/* optional helper if used elsewhere later */
.second {
  grid-column: span 2;
}

.stack > * + * {
  margin-top: 1rem;
}/*# sourceMappingURL=approach.css.map */