:root {
  --bg: #f6f2eb;
  --bg-soft: #efe8de;
  --bg-olive: #dde3d7;
  --card: #fcfaf6;
  --card-strong: #f4eee4;
  --text: #1f1f1c;
  --text-soft: #666259;
  --line: rgba(31, 31, 28, 0.11);
  --accent: #7b7668;
  --accent-olive: #6b7467;
  --accent-sand: #c8b49d;
  --accent-orange: #c78d67;
  --shadow: 0 10px 24px rgba(32, 28, 23, 0.045);
  --radius-xl: 42px;
  --radius-lg: 34px;
  --radius-md: 24px;
  --container: 1180px;
  --header-height: 84px;
  --hero-rail-dot-top: 5rem;
  --rail-offset: clamp(1rem, 2.8vw, 2.45rem);
  --rail-progress: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

section[id],
main[id] {
  scroll-margin-top: 7rem;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(239, 232, 222, 0.8), transparent 28%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
.brand-mark {
  margin: 0 0 1rem;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

p {
  margin: 0 0 1rem;
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(107, 116, 103, 0.45);
  outline-offset: 3px;
}

input,
textarea,
select,
button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(252, 250, 246, 0.8);
  background: rgba(250, 247, 241, 0.96);
}

.page-rail {
  position: fixed;
  top: calc(var(--header-height) + var(--hero-rail-dot-top));
  bottom: 1.3rem;
  left: var(--rail-offset);
  z-index: 18;
  width: 1px;
  background: rgba(31, 31, 28, 0.14);
  pointer-events: auto;
}

.page-rail-indicator {
  position: absolute;
  left: 50%;
  top: calc(var(--rail-progress) * (100% - 2.2rem));
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(31, 31, 28, 0.12);
  border-radius: 999px;
  background: rgba(252, 250, 246, 0.94);
  box-shadow: 0 8px 18px rgba(31, 31, 28, 0.05);
  transform: translate(-50%, 0);
  transition: top 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: grab;
  touch-action: none;
}

.page-rail-indicator::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "↓";
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 180ms ease, color 180ms ease;
}

.page-rail.is-up .page-rail-indicator::before {
  transform: rotate(180deg);
}

.page-rail.is-dragging .page-rail-indicator {
  cursor: grabbing;
  border-color: rgba(31, 31, 28, 0.2);
  background: rgba(252, 250, 246, 0.98);
}

body.rail-dragging {
  user-select: none;
  cursor: ns-resize;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-left: -1.8cm;
}

.brand-logo {
  display: block;
  width: clamp(200px, 22vw, 300px);
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.brand-mark {
  margin: 0;
  font-size: 1.35rem;
}

.brand-sub {
  color: var(--text-soft);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-self: end;
  margin-left: auto;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.site-nav a,
.nav-dropdown-toggle {
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.94rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  transform-origin: center;
}

.site-nav a:hover,
.nav-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  transform: scale(1.03);
}

.site-nav a:focus-visible,
.nav-dropdown-toggle:focus-visible {
  transform: scale(1.03);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-caret {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-caret,
.nav-dropdown:focus-within .nav-caret,
.nav-dropdown:hover .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 25;
  display: grid;
  min-width: 220px;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(252, 250, 246, 0.98);
  box-shadow: 0 12px 28px rgba(31, 31, 28, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown-menu a {
  padding: 0.78rem 0.9rem;
  border-radius: 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  transform-origin: center left;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  transform: scale(1.03);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: scale(1.05);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  opacity: 0;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.92rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  transform-origin: center;
}

.button {
  background: var(--text);
  color: #fbf8f3;
}

.button:hover {
  background: #141412;
  transform: scale(1.035);
}

.button:focus-visible {
  transform: scale(1.035);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.74);
  transform: scale(1.035);
}

.button-secondary:focus-visible {
  transform: scale(1.035);
}

.button-small {
  min-height: 44px;
  padding: 0.78rem 1.08rem;
}

.hero,
.section {
  padding: 5.75rem 0;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, #fbf8f3 0%, #f7f1e8 100%);
}

.section {
  position: relative;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at top left, rgba(200, 180, 157, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(221, 227, 215, 0.28), transparent 26%);
  pointer-events: none;
}

.hero::after,
.section::after {
  position: absolute;
  top: 4.2rem;
  left: var(--rail-offset);
  z-index: 4;
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid rgba(31, 31, 28, 0.16);
  border-radius: 999px;
  background: rgba(252, 250, 246, 0.94);
  content: "";
  transform: translate(-50%, 0);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero::after {
  top: var(--hero-rail-dot-top);
}

.hero.is-current::after,
.section.is-current::after {
  border-color: rgba(31, 31, 28, 0.28);
  background: var(--text);
  transform: translate(-50%, 0) scale(1.08);
}

.section-soft {
  background: linear-gradient(180deg, rgba(221, 227, 215, 0.08), rgba(221, 227, 215, 0.18));
}

.section-line {
  border-top: 1px solid rgba(31, 31, 28, 0.07);
  border-bottom: 1px solid rgba(31, 31, 28, 0.07);
}

#services {
  background:
    linear-gradient(180deg, #f7f1e8 0%, #fbf8f3 18%, #fbf8f3 78%, #f3ecdf 100%);
}

#projects {
  background:
    linear-gradient(180deg, #f3ecdf 0%, rgba(221, 227, 215, 0.36) 48%, #f5efe5 100%);
}

#process {
  background:
    linear-gradient(180deg, #f5efe5 0%, #fbf8f3 20%, #fbf8f3 78%, #f1eadf 100%);
}

#about {
  border-bottom: 0;
  border-color: rgba(31, 31, 28, 0.05);
  background:
    linear-gradient(180deg, #f1eadf 0%, #f6f2eb 26%, #f6f2eb 100%);
}

#contact {
  border-top: 0;
  border-bottom: 0;
  background:
    linear-gradient(180deg, #f6f2eb 0%, #fbf8f3 32%, #fbf8f3 100%);
}

.hero-shell,
.about-shell,
.contact-shell,
.footer-grid {
  display: grid;
  gap: 1.8rem;
}

.hero-shell {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  gap: 2.4rem;
}

.hero-copy {
  max-width: 35rem;
  animation: fade-up 700ms ease both;
}

.hero-meta,
.eyebrow,
.project-type,
.contact-label,
.footer-heading {
  display: inline-block;
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 13.5ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.35rem, 4.25vw, 4.25rem);
  line-height: 0.95;
}

.hero-title-large {
  display: inline-block;
  font-size: 1.14em;
  animation: typewriter 0.75s steps(12, end) 0.3s both;
}

.hero-type-line {
  display: inline-block;
  animation: typewriter 1.1s steps(23, end) 1.25s both;
}

.hero-type-line::after {
  content: '|';
  opacity: 0;
  animation: cursor-blink 0.55s step-end 2.5s infinite;
}

.lead,
.section-head p,
.project-copy p,
.about-copy p,
.contact-note,
.footer-copy,
.footer-meta,
.legal-card p,
.legal-card li {
  color: var(--text-soft);
}

.lead {
  max-width: 33ch;
  margin-bottom: 0.3rem;
  font-size: 1.06rem;
}

.hero-targets-intro {
  max-width: 34ch;
  margin: 2rem 0 0.8rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.action-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.project-tags,
.board-foot {
  display: flex;
  gap: 0.8rem 1rem;
  flex-wrap: wrap;
}

.hero-tags-band {
  position: relative;
  top: 1.35rem;
  width: min(100%, 42rem);
  margin-top: 1.1rem;
  margin-bottom: 1.35rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-tags-marquee {
  display: flex;
  width: max-content;
  animation: hero-tags-loop 78s linear infinite;
}

.hero-tags-track {
  display: flex;
  align-items: center;
  gap: 0.8rem 1rem;
  flex: 0 0 auto;
  min-width: max-content;
  padding-right: 1rem;
}

.hero-tags-track span,
.project-tags span,
.board-foot span {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.9rem;
  white-space: nowrap;
}

.hero-tags-track span:not(:last-child)::after,
.project-tags span:not(:last-child)::after,
.board-foot span:not(:last-child)::after {
  content: "/";
  margin-left: 1rem;
  color: rgba(31, 31, 28, 0.28);
}

.hero-visual {
  animation: fade-up 760ms ease both;
}

.hero-board,
.service-card,
.project-featured,
.project-card,
.contact-panel,
.form-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-board {
  overflow: hidden;
}

.board-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.board-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d4d0ca;
}

.board-dot:nth-child(1) {
  background: #ff5f57;
}

.board-dot:nth-child(2) {
  background: #ffbd2e;
}

.board-dot:nth-child(3) {
  background: #28c840;
}

.board-label {
  margin-left: 0.45rem;
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  padding: 1.2rem 1.2rem 1.35rem;
}

.site-preview {
  overflow: hidden;
  border: 1px solid rgba(31, 31, 28, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
}

.site-preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(31, 31, 28, 0.07);
  background: rgba(255, 255, 255, 0.72);
}

.site-preview-brand {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-preview-links {
  display: flex;
  gap: 0.9rem;
  color: var(--text-soft);
  font-size: 0.76rem;
}

.site-preview-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(20, 20, 18, 0.08), rgba(20, 20, 18, 0.02)),
    url("a-tranquil-garden-filled-with-vibrant-greenery-showcasing-diverse-plant-life-in-calming-shades-of-green-photo.jpg")
      center / cover no-repeat;
}

.site-preview-image-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(88%, 460px);
  padding: 1rem 1.4rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
  text-align: center;
  box-shadow: 0 10px 24px rgba(31, 31, 28, 0.08);
}

.site-preview-copy {
  padding: 1.1rem 1rem 1.2rem;
}

.site-preview-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-preview-title {
  display: block;
  max-width: 18ch;
  margin-bottom: 0.95rem;
  color: var(--text);
  font-size: 1.48rem;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.site-preview-text {
  display: block;
  height: 9px;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  background: rgba(114, 107, 96, 0.14);
}

.site-preview-text-short {
  width: 56%;
}

.site-preview-text-medium {
  width: 72%;
}

.site-preview-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.site-preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: var(--text);
  color: #fbf8f3;
  font-size: 0.8rem;
  font-weight: 600;
}

.site-preview-link {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.mini-site {
  min-height: 168px;
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(31, 31, 28, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
}

.mini-site-large {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 384px;
  background:
    radial-gradient(circle at top left, rgba(221, 227, 215, 0.34), transparent 32%),
    rgba(255, 255, 255, 0.8);
}

.mini-site-salon,
.mini-site-restaurant {
  min-height: 172px;
}

.mini-chip,
.screen-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.34rem 0.74rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}

.mini-title {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--text);
  font-size: 1.54rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.mini-line,
.screen-line {
  display: block;
  height: 10px;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: rgba(114, 107, 96, 0.14);
}

.mini-line-short,
.screen-line-short {
  width: 58%;
}

.board-foot {
  justify-content: center;
  padding: 0 1.2rem 1.2rem;
  text-align: center;
}

.section-head {
  max-width: 37rem;
  margin-bottom: 3rem;
}

.section-head-wide {
  max-width: 39rem;
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.about-copy h2,
.legal-card .page-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-head h2 {
  margin-bottom: 1.2rem;
}

.section-head p {
  max-width: 31rem;
}

.section-head-centered {
  margin-inline: auto;
  text-align: center;
}

.section-head-centered h2,
.section-head-centered p {
  margin-inline: auto;
}

.offers-consultation .section-head {
  max-width: 52rem;
}

#services .section-head {
  margin-inline: auto;
  text-align: center;
}

#services .section-head p {
  margin-inline: auto;
}

#services .service-card,
#services .service-feature {
  border-radius: var(--radius-lg);
}

#services .service-feature-media {
  border-radius: 30px;
}

.services-grid,
.process-row {
  display: grid;
  gap: 1.25rem;
}

.service-card,
.service-feature,
.contact-panel,
.form-card,
.legal-card {
  padding: 1.6rem;
}

.service-card h3,
.project-copy h3,
.process-item h3,
.about-card h3,
.form-card h3 {
  font-size: 1.34rem;
}

.service-card,
.project-featured,
.project-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card:hover,
.project-featured:hover,
.project-card:hover {
  border-color: rgba(31, 31, 28, 0.16);
  box-shadow: 0 14px 30px rgba(32, 28, 23, 0.055);
}

.services-showcase {
  --services-column-gap: 0rem;
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0fr);
  column-gap: var(--services-column-gap);
  row-gap: 1.8rem;
  align-items: start;
  justify-items: stretch;
}

.services-showcase.is-engaged {
  --services-column-gap: 1.8rem;
  width: min(calc(100vw - 3rem), 1560px);
  max-width: none;
  margin-inline: calc((100% - min(calc(100vw - 3rem), 1560px)) / 2);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.02fr);
}

.services-grid {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 900px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  justify-self: center;
  will-change: transform;
}

.services-showcase.is-engaged .services-grid {
  max-width: none;
  justify-self: stretch;
}

.service-feature {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  position: sticky;
  top: 7.8rem;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1.12fr);
  grid-template-areas: "detail media";
  align-items: center;
  gap: 1.05rem 1.25rem;
  padding: 0;
  min-height: 0;
  max-height: 0;
  border-width: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(1.25rem);
  overflow: hidden;
  will-change: transform, opacity;
  transition:
    opacity 760ms ease,
    transform 1320ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 760ms ease,
    max-height 1320ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 1320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-feature-header {
  grid-area: header;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-feature-headline h3 {
  margin-bottom: 0.75rem;
}

.service-feature-detail {
  grid-area: detail;
  display: grid;
  gap: 0.8rem;
  color: var(--text-soft);
}

.service-feature-media {
  grid-area: media;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid rgba(31, 31, 28, 0.08);
  border-radius: 30px;
  background: rgba(240, 234, 226, 0.76);
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.service-feature-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(250, 247, 241, 0.92);
}

.services-showcase.has-active .service-feature {
  min-height: 270px;
  max-height: 820px;
  padding: 1.8rem;
  border-width: 1px;
  border-color: var(--line);
  background: rgba(252, 250, 246, 0.88);
  box-shadow: var(--shadow);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.service-feature-close {
  display: none;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(31, 31, 28, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 180ms ease;
}

.service-feature-close:hover {
  background: rgba(255, 255, 255, 0.98);
}

.service-card {
  display: grid;
  align-items: center;
  min-height: 128px;
  padding: 1.5rem 1.55rem;
  background: rgba(252, 250, 246, 0.82);
  box-shadow: none;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.service-card-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.4rem;
}

.service-card-index {
  flex: 0 0 auto;
  min-width: 2.25rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card-main h3 {
  margin: 0;
}

.services-showcase.is-engaged .service-card {
  text-align: left;
}

.services-showcase.is-engaged .service-card-main {
  justify-content: flex-start;
}

.service-card-detail {
  display: none;
}

.service-card-lead {
  margin-bottom: 0.8rem;
  color: var(--text);
}

.service-card.is-selected {
  border-color: rgba(31, 31, 28, 0.18);
  background: rgba(244, 238, 228, 0.92);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: rgba(31, 31, 28, 0.18);
    background: rgba(244, 238, 228, 0.92);
  }
}

.offer-switcher {
  display: grid;
  gap: 1.1rem;
  max-width: 1040px;
  margin-inline: auto;
}

.offer-tabs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  grid-template-columns: none;
  gap: 0.9rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.offer-tabs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 981px) {
  .offer-tabs {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    scroll-snap-type: none;
  }

  .offer-tab {
    min-width: 0;
    white-space: normal;
  }
}

.offer-tab {
  min-height: 116px;
  padding: 1.2rem;
  border: 1px solid rgba(31, 31, 28, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(252, 250, 246, 0.78);
  color: var(--text);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  gap: 0.35rem;
  text-align: center;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 600;
  white-space: nowrap;
  scroll-snap-align: start;
  box-shadow: 0 10px 24px rgba(32, 28, 23, 0.035);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.offer-tab span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.offer-tab:hover,
.offer-tab:focus-visible {
  border-color: rgba(31, 31, 28, 0.18);
  background: rgba(252, 250, 246, 0.94);
  transform: translateY(-2px) scale(1.02);
}

.offer-tab.is-active {
  border-color: rgba(31, 31, 28, 0.2);
  background: rgba(232, 226, 216, 0.92);
  color: var(--text);
  box-shadow:
    inset 0 0 0 1px rgba(31, 31, 28, 0.04),
    0 16px 34px rgba(32, 28, 23, 0.065);
}

.offer-tab.is-active span {
  color: var(--accent);
}

.offer-details {
  min-height: auto;
  border: 1px solid rgba(31, 31, 28, 0.09);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(252, 250, 246, 0.94), rgba(244, 238, 228, 0.78));
  box-shadow: 0 12px 28px rgba(32, 28, 23, 0.04);
  overflow: hidden;
}

.offer-detail {
  --offer-detail-pad: clamp(1.6rem, 3vw, 2.6rem);
  display: none;
  max-width: none;
  padding: var(--offer-detail-pad);
}

.offer-detail.is-active {
  display: block;
  animation: offer-detail-in 240ms ease both;
}

.offer-detail h3 {
  max-width: 42rem;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
}

.offer-detail p:not(.project-type) {
  max-width: 42rem;
  color: var(--text-soft);
}

.offer-examples {
  --offer-example-gap: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--offer-example-gap);
  max-width: none;
  margin: 1.35rem 0 1rem;
}

.offer-examples > span,
.offer-examples > a,
.offer-examples > button {
  display: flex;
  align-items: flex-end;
  min-height: 74px;
  padding: 0.95rem;
  border: 1px solid rgba(31, 31, 28, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.35;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.offer-examples > button {
  appearance: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.offer-examples a:not(.offer-example-card):hover,
.offer-examples a:not(.offer-example-card):focus-visible {
  border-color: rgba(31, 31, 28, 0.18);
  background: rgba(255, 255, 255, 0.68);
  transform: translateY(-2px);
}

.offer-example-card:hover,
.offer-example-card:focus-visible {
  border-color: rgba(31, 31, 28, 0.18);
  transform: translateY(-2px);
}

.offer-examples-shell {
  position: relative;
  margin: 1rem calc(var(--offer-detail-pad) * -1) 0;
}

.offer-examples-visual {
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 46%);
  grid-template-columns: none;
  max-width: none;
  margin: 0;
  padding: 0 var(--offer-detail-pad) 0.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-left: var(--offer-detail-pad);
  scroll-padding-right: var(--offer-detail-pad);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.offer-examples-visual::-webkit-scrollbar {
  display: none;
}

.offer-examples > .offer-example-card {
  position: relative;
  min-height: clamp(175px, 16vw, 215px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
  scroll-snap-align: start;
}

.offer-scroll-button {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: inline-grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border: 1px solid rgba(31, 31, 28, 0.09);
  border-radius: 999px;
  background: rgba(252, 250, 246, 0.92);
  color: var(--text);
  box-shadow: 0 18px 44px rgba(31, 31, 28, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.offer-scroll-button:hover,
.offer-scroll-button:focus-visible {
  border-color: rgba(31, 31, 28, 0.18);
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-50%) scale(1.04);
}

.offer-scroll-button-prev {
  left: 0.75rem;
}

.offer-scroll-button-next {
  right: 0.75rem;
}

.offer-scroll-button[disabled] {
  opacity: 0.32;
  pointer-events: none;
}

.offer-scroll-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.offer-scroll-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(31, 31, 28, 0.18);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.offer-scroll-dot.is-active {
  width: 22px;
  background: var(--text);
}

.offer-example-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(31, 31, 28, 0.58)),
    linear-gradient(180deg, rgba(31, 31, 28, 0.03), rgba(31, 31, 28, 0.08));
  content: "";
  z-index: 1;
}

.offer-example-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-example-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-example-card > span {
  position: relative;
  z-index: 2;
  color: #fffaf2;
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  font-weight: 600;
}

.offer-example-friseur {
  background: #f7f2ea;
}

.offer-example-yoga {
  background: #f7f2ea;
}

.offer-example-zen {
  background: #f7f2ea;
}

.offer-example-pizza {
  background: #f7f2ea;
}

.offer-example-logo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(31, 31, 28, 0.24)),
    #ffffff;
}

.offer-example-logo-image {
  object-fit: contain;
  padding: clamp(1.4rem, 4vw, 3rem);
  background: #fff;
}

.offer-example-logo-dark {
  background:
    linear-gradient(180deg, transparent 36%, rgba(31, 31, 28, 0.58)),
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #23231f 0%, #59564d 100%);
}

.offer-example-logo-video::before {
  background:
    linear-gradient(180deg, transparent 36%, rgba(31, 31, 28, 0.62)),
    rgba(31, 31, 28, 0.08);
}

.offer-example-logo-video:hover::before,
.offer-example-logo-video:focus-visible::before {
  background: rgba(255, 255, 255, 0.58);
}

.offer-example-logo-video:hover > span,
.offer-example-logo-video:focus-visible > span {
  color: #11110f;
}

.offer-example-sign {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(31, 31, 28, 0.24)),
    #ffffff;
}

.offer-example-sign-image {
  object-fit: cover;
  padding: 0;
  background: #fff;
}

.offer-example-flyer {
  background: #f7f2ea;
}

.offer-example-brochure {
  background: #f7f2ea;
}

.offer-example-business-card {
  background: #f7f2ea;
}

.offer-business-card-front,
.offer-business-card-back {
  object-fit: cover;
  transition: opacity 320ms ease, transform 420ms ease;
}

.offer-business-card-back {
  opacity: 0;
  transform: scale(1.02);
}

.offer-example-business-card:hover .offer-business-card-front,
.offer-example-business-card:focus-visible .offer-business-card-front {
  opacity: 0;
  transform: scale(0.99);
}

.offer-example-business-card:hover .offer-business-card-back,
.offer-example-business-card:focus-visible .offer-business-card-back {
  opacity: 1;
  transform: scale(1);
}

.offer-example-brochure-open {
  background: #f7f2ea;
}

.offer-example-styleguide {
  background: #f7f2ea;
}

.offer-example-templates {
  background: #f7f2ea;
}

.offer-example-signage {
  background:
    linear-gradient(180deg, transparent 38%, rgba(31, 31, 28, 0.56)),
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #d9cab8 0%, #968873 100%);
}

.offer-example-more {
  background:
    linear-gradient(180deg, transparent 38%, rgba(31, 31, 28, 0.56)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, #dde3d7 0%, #8b988e 100%);
}

.offer-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 0.35rem;
  border-bottom: 1px solid rgba(31, 31, 28, 0.28);
  font-weight: 600;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.offer-link:hover,
.offer-link:focus-visible {
  border-color: var(--text);
  transform: translateX(3px);
}

body.lightbox-open {
  overflow: hidden;
}

.logo-lightbox[hidden] {
  display: none;
}

.logo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(21, 20, 18, 0.58);
  backdrop-filter: blur(14px);
}

.logo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.logo-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(86vh, 820px);
  padding: clamp(1rem, 2vw, 1.55rem);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: clamp(28px, 4vw, 46px);
  background: rgba(252, 250, 246, 0.95);
  box-shadow: 0 28px 90px rgba(15, 15, 13, 0.34);
  animation: logo-lightbox-in 260ms ease both;
}

.logo-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(31, 31, 28, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 650;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.logo-lightbox-close:hover,
.logo-lightbox-close:focus-visible {
  border-color: rgba(31, 31, 28, 0.24);
  background: #fff;
  transform: scale(1.04);
}

.logo-lightbox-title {
  margin: 0 0 0.9rem;
  padding: 0 7rem 0 0.25rem;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 650;
}

.logo-lightbox-media {
  display: grid;
  place-items: center;
  min-height: min(62vh, 610px);
  overflow: hidden;
  border: 1px solid rgba(31, 31, 28, 0.07);
  border-radius: clamp(22px, 3vw, 34px);
  background: #fff;
}

.logo-lightbox-media img,
.logo-lightbox-media video {
  width: 100%;
  height: min(62vh, 610px);
  object-fit: contain;
  background: #fff;
}

@keyframes logo-lightbox-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes offer-detail-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  grid-template-areas:
    "featured stack"
    "secondary stack";
  gap: 1.1rem;
  align-items: start;
}

.project-featured {
  grid-area: featured;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 0;
  min-height: 390px;
  padding: 0;
  overflow: hidden;
  background: rgba(252, 250, 246, 0.78);
}

.project-card-secondary {
  grid-area: secondary;
}

.project-stack {
  grid-area: stack;
  display: grid;
  gap: 1.1rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  display: grid;
  background: rgba(252, 250, 246, 0.76);
}

.projects-shell .project-featured,
.projects-shell .project-card {
  border-color: rgba(31, 31, 28, 0.09);
  box-shadow: 0 10px 26px rgba(32, 28, 23, 0.035);
}

.project-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
}

.project-link-overlay:focus-visible {
  outline: 2px solid rgba(92, 102, 77, 0.72);
  outline-offset: 4px;
}

.project-copy {
  padding: 1.45rem;
}

.project-featured .project-copy {
  align-self: end;
  padding: 2rem;
}

.project-card .project-copy {
  padding: 1.35rem 1.45rem 1.55rem;
}

.project-copy h3 {
  max-width: 34rem;
  margin-bottom: 0.85rem;
  line-height: 1.08;
}

.project-type {
  margin-bottom: 0.9rem;
}

.project-visual {
  position: relative;
  min-height: 250px;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(145deg, #e0d3c3 0%, #d8c9b5 42%, #d8ddd4 100%);
}

.projects-shell .project-visual .screen-shell {
  display: none;
}

.projects-shell .project-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 31, 28, 0.02), rgba(31, 31, 28, 0.08)),
    linear-gradient(90deg, rgba(252, 250, 246, 0.08), transparent 44%);
  content: "";
  pointer-events: none;
}

.project-visual-yoga {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.04), rgba(20, 18, 16, 0.09)),
    url("zen site.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.project-visual-salon {
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.04), rgba(20, 18, 16, 0.09)),
    url("friseur site.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.project-visual-restaurant {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #eee4d8 0%, #d3b79f 44%, #9a7563 100%);
}

.project-featured .project-visual-restaurant {
  min-height: 100%;
}

.project-visual-realestate {
  min-height: 220px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(135deg, #eef0ea 0%, #c9d0c8 44%, #8d9a92 100%);
}

.project-visual .screen-shell {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(245, 239, 231, 0.4);
}

.project-visual .screen-pill {
  background: rgba(236, 227, 215, 0.72);
}

.project-visual .screen-panel {
  background: rgba(244, 237, 228, 0.5);
}

.project-visual .screen-chip {
  background: rgba(251, 248, 242, 0.88);
}

.project-visual .screen-line {
  background: rgba(88, 79, 68, 0.2);
}

.screen-shell {
  max-width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.28);
}

.screen-shell.compact {
  max-width: 250px;
}

.screen-pill {
  display: block;
  width: 84px;
  height: 14px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.screen-panel {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.34);
}

.screen-panel.compact {
  padding: 0.95rem;
}

.screen-stack {
  display: block;
  height: 76px;
  margin-top: 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.48);
}

.process-section {
  overflow: hidden;
}

.process-shell {
  position: relative;
  overflow: hidden;
  width: min(calc(100vw - 3rem), 1560px);
  margin-inline: calc((100% - min(calc(100vw - 3rem), 1560px)) / 2);
  padding: clamp(2rem, 5vw, 4.6rem);
  border: 1px solid rgba(31, 31, 28, 0.08);
  border-radius: clamp(2rem, 4vw, 3.35rem);
  background:
    radial-gradient(circle at 14% 0%, rgba(221, 227, 215, 0.55), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(200, 180, 157, 0.32), transparent 30%),
    linear-gradient(145deg, rgba(252, 250, 246, 0.96), rgba(244, 238, 228, 0.78));
  box-shadow: 0 32px 90px rgba(31, 31, 28, 0.07);
}

.process-shell::before {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 46%);
  content: "";
  pointer-events: none;
}

.process-head {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-right: auto;
  margin-bottom: clamp(2.2rem, 4vw, 3.6rem);
}

.process-head h2 {
  max-width: 11ch;
  letter-spacing: -0.055em;
}

.process-head p {
  max-width: 35rem;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.process-row {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
}

.process-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  padding: 0.15rem 0.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  box-shadow: none;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.82);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-arrow-one {
  left: 33.333%;
}

.process-arrow-two {
  left: calc(66.666% + 0.55rem);
}

.process-item:nth-of-type(1):hover ~ .process-arrow-one,
.process-item:nth-of-type(1):focus-within ~ .process-arrow-one,
.process-item:nth-of-type(2):hover ~ .process-arrow-two,
.process-item:nth-of-type(2):focus-within ~ .process-arrow-two,
.process-row.show-arrow-one .process-arrow-one,
.process-row.show-arrow-two .process-arrow-two {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: process-arrow-wipe 860ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.process-item {
  position: relative;
  min-height: 260px;
  padding: clamp(1.35rem, 2.6vw, 2rem);
  border: 1px solid rgba(31, 31, 28, 0.06);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 31, 28, 0.035);
  transition:
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 760ms cubic-bezier(0.16, 1, 0.3, 1),
    background 760ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-item::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 48%);
  content: "";
  opacity: 0.75;
  pointer-events: none;
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-number,
.process-item h3,
.process-item p {
  position: relative;
  z-index: 1;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  min-height: 2.65rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(31, 31, 28, 0.08);
  border-radius: 999px;
  background: rgba(252, 250, 246, 0.72);
  color: var(--accent-olive);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 0 0 clamp(1.25rem, 2.4vw, 2rem);
  border: 1px solid rgba(31, 31, 28, 0.05);
  border-radius: 28px;
  background: #fff;
  box-shadow: none;
}

.process-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-item h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  letter-spacing: -0.05em;
  text-align: center;
}

.process-item p {
  max-width: 24rem;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.process-item:hover {
  border-color: rgba(31, 31, 28, 0.13);
  background: #fff;
  box-shadow: 0 18px 44px rgba(31, 31, 28, 0.06);
  transform: translateY(-8px) scale(1.012);
}

.process-item:hover::before {
  opacity: 1;
}

.process-item:hover .process-media img {
  transform: scale(1.035);
}

.process-section.has-entered .process-shell {
  animation: process-shell-in 980ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.process-section.has-entered .process-item {
  animation: process-card-in 1050ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.process-section.has-entered .process-item:nth-child(2) {
  animation-delay: 110ms;
}

.process-section.has-entered .process-item:nth-child(3) {
  animation-delay: 220ms;
}

.process-section.process-preloaded .process-shell,
.process-section.process-preloaded .process-item {
  animation: none;
}

.about-shell {
  grid-template-columns: 0.96fr 1.04fr;
  align-items: start;
  gap: 2.6rem;
}

.about-copy {
  max-width: 40rem;
}

.about-points {
  display: grid;
  gap: 1.2rem;
  padding-top: 1.4rem;
}

.about-card {
  border-top: 1px solid rgba(31, 31, 28, 0.12);
  padding: 1rem 0 0;
  background: transparent;
  box-shadow: none;
}

.contact-shell {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: 2.6rem;
}

.contact-items {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.6rem;
}

.contact-items > div {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(31, 31, 28, 0.1);
}

.contact-label {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.contact-note {
  max-width: 38ch;
  font-size: 0.95rem;
}

.contact-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.form-card {
  background: rgba(252, 250, 246, 0.88);
}

.form-feedback {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.form-feedback-success {
  background: #eaf5ea;
  color: #2a6b2a;
  border: 1px solid #b4ddb4;
}

.form-feedback-error {
  background: #fdf0f0;
  color: #8b2020;
  border: 1px solid #f0b4b4;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid label,
.form-field {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffdfa;
  color: var(--text);
}

.multi-select {
  position: relative;
}

.multi-select summary {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffdfa;
  color: var(--text-soft);
  cursor: pointer;
  list-style: none;
}

.multi-select summary::-webkit-details-marker {
  display: none;
}

.multi-select summary::after {
  float: right;
  width: 0.46rem;
  height: 0.46rem;
  margin-top: 0.35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
  content: "";
}

.multi-select[open] summary {
  border-color: rgba(31, 31, 28, 0.18);
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}

.multi-select[open] summary::after {
  transform: rotate(225deg);
}

.multi-select-options {
  position: absolute;
  z-index: 20;
  right: 0;
  left: 0;
  display: grid;
  gap: 0.2rem;
  margin-top: 0.45rem;
  padding: 0.55rem;
  border: 1px solid rgba(31, 31, 28, 0.1);
  border-radius: 22px;
  background: #fffdfa;
  box-shadow: var(--shadow);
}

.multi-select-options label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  border-radius: 15px;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.multi-select-options label:hover {
  background: rgba(146, 132, 104, 0.12);
  transform: translateX(2px);
}

.form-grid .multi-select-options input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  padding: 0;
  accent-color: var(--accent-olive);
}

.form-grid textarea {
  min-height: 160px;
  resize: vertical;
}

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

.legal-layout {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.service-page-layout {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.service-page-shell {
  display: grid;
  gap: 1.5rem;
}

.service-page-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(252, 250, 246, 0.9);
  box-shadow: var(--shadow);
}

.service-page-visual {
  min-height: 280px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(145deg, #e1d4c3 0%, #d3c2af 42%, #d8dfd4 100%);
}

.service-page-visual-logo {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(145deg, #ded7ce 0%, #d4c2ae 38%, #bfb7aa 100%);
}

.service-page-visual-flyer {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(145deg, #e7d8c7 0%, #cfb294 42%, #b8aa98 100%);
}

.service-page-visual-branding {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(145deg, #e3e1da 0%, #ccd2c6 38%, #aaa89f 100%);
}

.service-page-copy h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
}

.service-page-lead {
  max-width: 34ch;
  margin-bottom: 1.3rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.service-page-list {
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.service-page-list li + li {
  margin-top: 0.5rem;
}

.service-page-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.offers-page .section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.offers-hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.offers-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  text-align: left;
}

.offers-hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 6vw, 5.9rem);
  letter-spacing: -0.06em;
}

.offers-lead {
  max-width: 39rem;
  margin-bottom: 1.8rem;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.offers-note-card,
.pricing-card,
.extra-card {
  border: 1px solid rgba(31, 31, 28, 0.09);
  border-radius: var(--radius-xl);
  background: rgba(252, 250, 246, 0.9);
  box-shadow: var(--shadow);
}

.offers-note-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at top right, rgba(221, 227, 215, 0.72), transparent 42%),
    rgba(252, 250, 246, 0.92);
}

.offers-note-card strong {
  display: block;
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.offers-note-card p,
.pricing-copy,
.extra-card p {
  color: var(--text-soft);
}

.branding-hero-shell {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 0.9fr);
}

.branding-offer-card {
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  overflow: hidden;
}

.branding-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.branding-price-table thead {
  background: #fff;
}

.branding-price-table th,
.branding-price-table td {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(31, 31, 28, 0.09);
  text-align: left;
  vertical-align: middle;
}

.branding-price-table th {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branding-price-table th:first-child {
  padding-left: 1rem;
  border-radius: 16px 0 0 16px;
}

.branding-price-table th:last-child {
  padding-right: 1rem;
  border-radius: 0 16px 16px 0;
}

.branding-price-table td {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 650;
  line-height: 1.2;
}

.branding-price-table th:last-child,
.branding-price-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

.branding-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.note-break {
  display: block;
  margin-top: 0.65rem;
  color: var(--text);
  font-weight: 600;
}

.consultation-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 0;
}

.consultation-copy {
  display: grid;
  gap: 0.7rem;
}

.consultation-copy p {
  max-width: 42rem;
  color: var(--text-soft);
}

.consultation-copy .button-secondary {
  justify-self: start;
  margin-top: 0.5rem;
}

.consultation-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(31, 31, 28, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(252, 250, 246, 0.9);
  box-shadow: var(--shadow);
}

.consultation-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.hosting-pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-inline: auto;
}

.hosting-switcher {
  display: grid;
  gap: 1.35rem;
  width: 100%;
  margin-inline: 0;
}

#betreuungspakete > .container {
  width: min(calc(100vw - 2rem), 1180px);
  max-width: none;
}

#betreuungspakete .section-head {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.hosting-tabs {
  width: min(calc(100% - 2rem), 1080px);
  max-width: none;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hosting-tabs .offer-tab {
  min-height: 116px;
  padding: 1.2rem;
  border-radius: 14px;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
}

.hosting-details {
  width: min(calc(100% - 2rem), 1080px);
  max-width: none;
  margin-inline: auto;
  background: #fff;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: clamp(1.4rem, 2.4vw, 2rem);
}

.pricing-card-featured {
  background:
    radial-gradient(circle at top left, rgba(200, 180, 157, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.9);
  border-color: rgba(31, 31, 28, 0.16);
}

.pricing-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.pricing-price {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pricing-card ul {
  display: grid;
  gap: 0.65rem;
  margin: auto 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(31, 31, 28, 0.08);
  color: var(--text-soft);
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 1.2rem;
}

.pricing-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--accent-olive);
  content: "";
}

.hosting-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(31, 31, 28, 0.09);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 42px rgba(32, 28, 23, 0.065);
}

.hosting-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
}

.hosting-table th,
.hosting-table td {
  padding: 1.55rem 1.9rem;
  border-bottom: 1px solid rgba(31, 31, 28, 0.08);
  text-align: center;
  vertical-align: middle;
  font-size: 1.12rem;
}

.hosting-table th:first-child,
.hosting-table td:first-child {
  width: 38%;
  text-align: left;
}

.hosting-table th {
  background: #fff;
  color: var(--text);
  font-size: 1.32rem;
}

.hosting-table th span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 600;
}

.hosting-table tbody tr:last-child td {
  border-bottom: 0;
}

.hosting-table td:first-child {
  color: var(--text);
  font-weight: 650;
}

.savings-row td {
  background: rgba(221, 227, 215, 0.24);
  color: var(--text);
  font-weight: 700;
}

.saving-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.9rem;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  background: rgba(75, 135, 91, 0.14);
  color: #3f8b58;
  font-weight: 600;
}

.saving-neutral {
  background: rgba(31, 31, 28, 0.06);
  color: var(--text-soft);
}

.status-check,
.status-cross {
  display: inline-grid;
  width: 2.05rem;
  height: 2.05rem;
  place-items: center;
  border-radius: 999px;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
}

.status-check {
  background: rgba(75, 135, 91, 0.14);
  color: #3f8b58;
}

.status-cross {
  background: rgba(181, 76, 67, 0.12);
  color: #b94a42;
}

.offers-addons-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.offer-factor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.offer-factor-grid span {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid rgba(31, 31, 28, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.5);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 600;
  text-align: center;
}

.website-package-section {
  background:
    linear-gradient(180deg, rgba(252, 250, 246, 0), rgba(221, 227, 215, 0.18) 48%, rgba(252, 250, 246, 0));
}

.website-package-shell {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.website-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.website-package-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 1.25rem;
  min-height: 520px;
  padding: clamp(1.45rem, 3vw, 2.35rem);
  border: 1px solid rgba(31, 31, 28, 0.09);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(31, 31, 28, 0.07);
}

.website-package-card-featured {
  background:
    radial-gradient(circle at top right, rgba(200, 180, 157, 0.26), transparent 36%),
    rgba(252, 250, 246, 0.92);
  border-color: rgba(31, 31, 28, 0.16);
}

.package-eyebrow {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.website-package-card h3 {
  max-width: 12ch;
  margin-bottom: 0.85rem;
  font-size: clamp(1.85rem, 3vw, 3rem);
  letter-spacing: -0.055em;
}

.website-package-card p,
.package-note {
  color: var(--text-soft);
}

.package-price {
  display: block;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.website-package-card ul {
  display: grid;
  align-self: start;
  gap: 0.7rem;
  margin: 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(31, 31, 28, 0.08);
  color: var(--text-soft);
  list-style: none;
}

.website-package-card li {
  position: relative;
  padding-left: 1.35rem;
}

.website-package-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent-olive);
  content: "";
}

.website-package-card .button,
.website-package-card .button-secondary {
  align-self: end;
  justify-self: start;
  margin-top: auto;
}

.package-note {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  font-size: 0.96rem;
}

.offers-extra-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.1rem;
}

.extra-card {
  padding: clamp(1.45rem, 3vw, 2.35rem);
}

.extra-card h2 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.extra-list {
  display: grid;
  gap: 0.7rem;
}

.extra-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(31, 31, 28, 0.09);
}

.extra-list span {
  color: var(--text-soft);
}

.extra-card-dark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  background: var(--text);
  color: #fbf8f3;
}

.extra-card-dark p {
  max-width: 38rem;
  color: rgba(251, 248, 243, 0.72);
}

.extra-card-dark .button {
  align-self: flex-start;
  background: #fbf8f3;
  color: var(--text);
}

.legal-shell {
  display: grid;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(252, 250, 246, 0.9);
}

.legal-card ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.site-footer {
  position: relative;
  z-index: 30;
  padding: 2rem 0 2.5rem;
  border-top: 0;
  background: #fff;
}

.footer-grid {
  width: min(calc(100% - 0.5rem), 1320px);
  grid-template-columns: 0.62fr 1fr 1fr 1fr;
  align-items: start;
  gap: clamp(1.4rem, 3vw, 2.75rem);
}

.footer-grid > div:first-child {
  transform: translateX(-5.5rem);
}

.footer-brand {
  margin: 0 0 0.7rem;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.footer-logo {
  display: block;
  width: clamp(140px, 14vw, 190px);
  height: auto;
}

.footer-heading {
  margin-bottom: 0.75rem;
}

.footer-meta {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.footer-meta a:hover {
  color: var(--text);
}

.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  background: var(--text);
  color: #fbf8f3;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(27, 24, 20, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mobile-cta:hover,
.mobile-cta:focus-visible {
  transform: scale(1.02);
}

.page-title {
  margin-bottom: 1rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-tags-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes process-shell-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes process-card-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes process-arrow-wipe {
  from {
    clip-path: inset(0 100% 0 0);
    transform: translate(-64%, -50%) scale(0.92);
  }

  62% {
    clip-path: inset(0 0 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes typewriter {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0%   0 0); }
}

@keyframes cursor-blink {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}

@media (max-width: 1080px) {
  .footer-grid {
    width: min(calc(100% - 2rem), var(--container));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > div:first-child {
    transform: none;
  }

  .hosting-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hosting-switcher {
    width: 100%;
    margin-inline: 0;
  }

  .hosting-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    margin-inline: 0;
    padding: 0;
  }

  .hosting-tabs .offer-tab {
    flex: none;
    min-width: 0;
    min-height: 116px;
    padding: 1.2rem;
    font-size: clamp(1.08rem, 1.35vw, 1.28rem);
    border-radius: 14px;
  }

  .hosting-tabs .offer-tab span {
    font-size: 0.75rem;
  }

  .services-showcase.is-engaged {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.92fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .page-rail {
    display: none;
  }

  .hero::after,
  .section::after {
    display: none;
  }

  .projects-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .branding-hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "heading visual"
      "actions actions"
      "intro   intro"
      "tags    tags";
    grid-template-rows: auto auto auto auto;
    align-items: start;
    gap: 1rem 7rem;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy h1 {
    grid-area: heading;
    margin-top: 2rem;
    margin-bottom: 0;
    align-self: center;
    text-align: left;
  }

  .hero-copy .action-row {
    grid-area: actions;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-targets-intro {
    grid-area: intro;
    margin-top: 0.5rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero-tags-band {
    grid-area: tags;
  }

  .hero-visual {
    grid-area: visual;
    padding-top: 1rem;
    justify-self: start;
  }

  .hero-board {
    max-width: 380px;
    width: 100%;
  }

  .board-foot {
    font-size: 0.76rem;
    flex-wrap: nowrap;
  }

  .process-item {
    text-align: center;
  }

  .process-item h3,
  .process-item p {
    text-align: center;
    margin-inline: auto;
  }

  .process-number {
    margin-inline: auto;
  }

  .process-media {
    margin-inline: auto;
  }

  .services-showcase {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: stretch;
  }

  .services-showcase.is-engaged {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .service-feature {
    grid-column: 1;
  }

  .services-grid {
    max-width: none;
    justify-self: stretch;
  }

  .service-feature {
    position: relative;
    top: 0;
    order: 2;
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "detail";
    max-width: none;
    justify-self: stretch;
    min-height: 0;
  }

  .service-feature-close {
    display: flex;
  }

  .services-showcase.is-engaged .services-grid {
    transform: none;
  }

  .project-featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-featured .project-visual-restaurant {
    min-height: 280px;
  }

  .process-shell {
    width: 100%;
    margin-inline: 0;
  }

  .process-item {
    min-height: 0;
  }

  .process-media {
    max-height: 220px;
  }

  .offer-tabs {
    grid-template-columns: none;
  }

  .projects-shell {
    grid-template-areas:
      "featured"
      "secondary"
      "stack";
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .pricing-card {
    min-height: 0;
  }

  .website-package-card {
    min-height: 0;
  }

  .process-arrow {
    display: none;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 5.5rem;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
  }

  .brand {
    margin-left: 0;
    min-height: 40px;
  }

  .brand-logo {
    width: clamp(132px, 42vw, 172px);
    max-height: 48px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(252, 250, 246, 0.96);
    box-shadow: 0 8px 24px rgba(31, 31, 28, 0.1);
  }

  .site-nav.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0.5rem;
    right: 0.5rem;
    z-index: 50;
  }

  .site-nav a,
  .nav-dropdown-toggle {
    min-height: 48px;
    border-radius: 18px;
    font-size: 1rem;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    border-radius: 16px;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0.2rem 0 0.4rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    padding: 0.72rem 0.92rem 0.72rem 1.6rem;
  }

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .footer-grid,
  .form-grid,
  .board-grid {
    grid-template-columns: 1fr;
  }


  .services-showcase,
  .services-showcase.is-engaged {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    width: 100%;
  }

  .service-feature {
    order: -1;
    grid-template-columns: 1fr;
    min-height: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
    transition: max-height 420ms ease, padding 420ms ease,
                border-color 420ms ease, background 420ms ease, box-shadow 420ms ease;
  }

  .service-card {
    min-height: 0;
    padding: 0.85rem 0.9rem;
    text-align: center;
  }

  .service-card-main {
    gap: 0.5rem;
    min-height: 0;
  }

  .service-card-main h3 {
    font-size: 0.95rem;
  }

  .service-card-index {
    font-size: 0.68rem;
    min-width: 1.6rem;
  }

  .service-card-detail {
    font-size: 0.82rem;
  }

  .services-showcase.has-active .service-card {
    transform: none;
  }

  .service-card-main,
  .services-showcase.is-engaged .service-card-main {
    justify-content: center;
  }

  .service-feature-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .services-showcase.has-active .service-feature {
    min-height: 0;
    pointer-events: auto;
    padding: 1rem;
  }

  .service-feature-detail {
    font-size: 0.96rem;
  }

  .screen-shell.compact {
    max-width: 100%;
  }

  .site-preview-nav,
  .site-preview-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero,
  .section {
    padding: 2rem 0 3.5rem;
  }

  #services {
    padding-bottom: 6rem;
  }

  .hero {
    min-height: 86svh;
    padding-top: 2.7rem;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-shell {
    flex: 1;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "heading visual"
      ".       ."
      "intro   intro"
      "actions actions"
      "tags    tags";
    grid-template-rows: auto 1fr auto auto auto;
    gap: 0.9rem 0.25rem;
    align-items: start;
    padding-bottom: 1rem;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy h1 {
    grid-area: heading;
    max-width: none;
    margin-bottom: 0;
    margin-top: 7.5rem;
    line-height: 1.05;
    align-self: start;
  }

  .hero-copy h1,
  .section-head h2,
  .about-copy h2,
  .legal-card .page-title {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.3rem);
  }

  .hero-title-large {
    display: inline-block;
    animation: typewriter 0.75s steps(12, end) 0.3s both;
  }

  .hero-type-line {
    display: inline-block;
    animation: typewriter 1.1s steps(23, end) 1.25s both;
  }

  .hero-type-line::after {
    content: '|';
    opacity: 0;
    animation: cursor-blink 0.55s step-end 2.5s infinite;
  }

  .hero-targets-intro {
    font-size: 0.95rem;
    text-align: center;
    margin-top: 6rem;
  }

  .hero-board {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 22px;
  }

  .hero-tags-band {
    grid-area: tags;
    top: 0;
    margin-top: 0.4rem;
    padding-bottom: 0;
  }

  .hero-visual {
    grid-area: visual;
    display: block;
    width: auto;
    justify-self: stretch;
    padding-top: 4.5rem;
  }

  .board-top {
    gap: 0.3rem;
    padding: 0.6rem 0.65rem;
    overflow: hidden;
  }

  .board-dot {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
  }

  .board-label {
    flex: 1;
    min-width: 0;
    margin-left: 0.2rem;
    font-size: 0.62rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .board-grid {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .board-foot {
    display: none;
  }

  .site-preview {
    border-radius: 18px;
  }

  .site-preview-nav {
    display: none;
  }

  .site-preview-links {
    display: none;
  }

  .site-preview-image {
    min-height: 145px;
  }

  .site-preview-image-bubble {
    width: 84%;
    padding: 0.5rem 0.6rem;
    border-radius: 14px;
    font-size: 0.7rem;
  }

  .site-preview-copy {
    display: none;
  }

  .site-preview-kicker {
    margin-bottom: 0.55rem;
    font-size: 0.62rem;
  }

  .site-preview-text {
    height: 7px;
    margin-bottom: 0.48rem;
  }

  .site-preview-actions {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.8rem;
  }

  .site-preview-button {
    min-height: 31px;
    padding: 0.32rem 0.65rem;
    font-size: 0.68rem;
  }

  .site-preview-link {
    font-size: 0.68rem;
  }

  .action-row,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .hero-copy .action-row {
    grid-area: actions;
  }

  .hero .action-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.2rem;
    padding: 0 0.5rem;
  }

  .hero .action-row .button,
  .hero .action-row .button-secondary {
    flex: 1;
    min-height: 50px;
    padding: 0.85rem 1rem;
    text-align: center;
  }

  .hero .action-row .button {
    font-size: 0.82rem;
    white-space: normal;
    line-height: 1.3;
  }

  .hero .action-row .button-secondary {
    font-size: 1.02rem;
  }

  .hero-targets-intro {
    grid-area: intro;
    text-align: center;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .project-visual,
  .project-visual-yoga,
  .mini-site-large {
    min-height: 240px;
  }

  .offers-page .section {
    padding: 3.5rem 0;
  }

  .offers-hero {
    min-height: calc(100vh - 72px);
    padding: 2rem 0;
  }

  .offers-hero-shell {
    text-align: center;
  }

  .offers-hero-copy h1 {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  .offers-lead {
    max-width: none;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .offers-note-card {
    text-align: center;
  }

  .offers-note-card strong {
    margin-inline: auto;
  }

  #betreuungspakete .section-head {
    text-align: center;
    margin-inline: auto;
  }

  .consultation-copy {
    text-align: center;
  }

  .offers-addons-shell .section-head {
    text-align: center;
    margin-inline: auto;
    max-width: none;
  }

  .offer-factor-grid span {
    text-align: center;
  }

  .hosting-table-wrap {
    width: 100%;
    margin: 0;
  }

  .hosting-table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  .hosting-table th,
  .hosting-table td {
    padding: 0.65rem 0.45rem;
    font-size: 0.82rem;
    word-break: break-word;
  }

  .hosting-table th {
    font-size: 0.88rem;
  }

  .hosting-table th span {
    font-size: 0.78rem;
  }

  .hosting-table th:first-child,
  .hosting-table td:first-child {
    width: 48%;
  }

  .hosting-table th:not(:first-child),
  .hosting-table td:not(:first-child) {
    width: 26%;
  }

  .offers-note-card,
  .pricing-card,
  .extra-card {
    border-radius: 30px;
  }

  .consultation-media {
    min-height: 0;
  }

  .offer-factor-grid {
    grid-template-columns: 1fr;
  }

  .offer-factor-grid span {
    min-height: 74px;
  }

  .extra-list div {
    flex-direction: column;
    gap: 0.35rem;
  }

  .offer-tabs {
    display: flex;
    gap: 0.65rem;
    margin-inline: -0.1rem;
    padding: 0.5rem 0.1rem 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .offer-tabs::-webkit-scrollbar {
    display: none;
  }

  .offer-tab {
    flex: 0 0 auto;
    min-width: 178px;
    min-height: 68px;
    padding: 0.85rem 1rem;
    border-radius: 24px;
  }

  .offer-detail {
    --offer-detail-pad: 1.45rem;
    padding: var(--offer-detail-pad);
  }

  .hosting-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    margin-inline: 0;
    padding: 0.4rem 0;
    gap: 0.5rem;
  }

  .hosting-tabs .offer-tab {
    min-width: 0;
    min-height: 72px;
    padding: 0.75rem 0.4rem;
    font-size: 0.88rem;
    border-radius: 16px;
    white-space: normal;
    text-align: center;
  }

  .hosting-tabs .offer-tab span {
    font-size: 0.74rem;
  }

  #betreuungspakete .offer-detail {
    padding: 0;
    --offer-detail-pad: 0;
  }

  #betreuungspakete .hosting-table-wrap {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .offer-examples {
    grid-template-columns: 1fr;
  }

  .offer-examples > span,
  .offer-examples > a,
  .offer-examples > button {
    min-height: 58px;
    padding: 0.7rem 0.8rem;
    font-size: 0.87rem;
  }

  .offer-examples-visual {
    grid-auto-columns: minmax(220px, 74%);
    grid-template-columns: none;
  }

  .offer-examples > .offer-example-card {
    min-height: 185px;
  }

  .offer-example-card > span {
    display: none;
  }

  .offer-detail .project-type {
    display: none;
  }

  .offer-scroll-button {
    width: 2.75rem;
    height: 2.75rem;
  }

  .offer-scroll-button-prev {
    left: 0.45rem;
  }

  .offer-scroll-button-next {
    right: 0.45rem;
  }

  .process-shell {
    padding: 1rem;
    border-radius: 32px;
  }

  .process-head {
    width: 100%;
    max-width: none;
    margin-bottom: 1.6rem;
    margin-inline: auto;
    padding: 0.5rem 0.75rem 0;
    text-align: center;
  }

  .process-head h2,
  .process-head p {
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .process-item {
    padding: 1.15rem;
    min-height: 0;
    border-radius: 30px;
    text-align: center;
  }

  .process-number {
    margin-bottom: 1.45rem;
    margin-inline: auto;
  }

  .process-media {
    border-radius: 24px;
    margin-inline: auto;
  }

  .process-item h3,
  .process-item p {
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .process-arrow {
    display: none;
  }

  /* About */
  .about-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-copy {
    max-width: none;
    padding: 0;
  }

  .about-points {
    padding-top: 0;
  }

  .about-card {
    padding: 1rem 0 0;
  }

  /* Kontakt */
  #contact .section-head {
    text-align: center;
    margin-inline: auto;
    max-width: none;
    padding: 0 0.75rem;
  }

  .contact-items {
    text-align: center;
  }

  .contact-actions {
    justify-content: center;
  }

  .contact-note {
    text-align: center;
    margin-inline: auto;
  }

  .hero-tags-track span {
    font-size: 0.84rem;
  }
}

@media (max-width: 680px) {
  /* Unterseiten: alle 2-Spalten-Layouts auf 1 Spalte */
  .offers-hero-shell {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .offers-hero {
    min-height: auto;
    padding: 3rem 0 2rem;
  }

  .offers-hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
    margin-inline: 0;
  }

  .offers-lead {
    margin-inline: 0;
  }

  .offers-note-card {
    text-align: left;
  }

  .consultation-card {
    grid-template-columns: 1fr;
  }

  .consultation-copy {
    text-align: left;
  }

  .consultation-media {
    display: none;
  }

  .offers-addons-shell {
    grid-template-columns: 1fr;
  }

  .website-package-grid {
    grid-template-columns: 1fr;
  }

  .website-package-card {
    min-height: 0;
  }

  .offers-extra-shell {
    grid-template-columns: 1fr;
  }

  .service-page-links {
    flex-direction: column;
  }

  .service-page-links .button,
  .service-page-links .button-secondary {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .brand-logo {
    width: clamp(118px, 40vw, 146px);
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .button,
  .button-secondary {
    min-height: 48px;
    padding-inline: 1.1rem;
  }

  .hero-board {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .site-preview-image {
    min-height: 145px;
  }

  .site-preview-image-bubble {
    font-size: 0.76rem;
  }

  .offer-tab {
    min-width: 158px;
  }

  .offer-examples-visual {
    grid-auto-columns: minmax(238px, 88%);
  }

  .offer-examples > .offer-example-card {
    min-height: 220px;
  }

  .contact-panel,
  .form-card,
  .legal-card {
    padding: 1.15rem;
    border-radius: 28px;
  }

  .hosting-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
    padding-bottom: 0.4rem;
  }

  .hosting-tabs::-webkit-scrollbar {
    display: none;
  }

  .hosting-tabs .offer-tab {
    flex: 0 0 auto;
    min-width: 120px;
  }

  .hosting-table th:first-child,
  .hosting-table td:first-child {
    width: 40%;
  }

  .hosting-table th:not(:first-child),
  .hosting-table td:not(:first-child) {
    width: 30%;
  }
}

.fab-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: var(--text);
  color: #fffaf2;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(31, 31, 28, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease, box-shadow 180ms ease, background 180ms ease;
}

.fab-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab-contact:hover,
.fab-contact:focus-visible {
  background: #2a2a26;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(31, 31, 28, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
