/* ============================================
   ATELIER HITZ — V5: Full Experience
   ============================================ */
:root {
  --black: #0A0A0A;
  --white: #ffffff;
  --gray: #757575;
  --gray-l: #ebebeb;
  --accent: #4F0C28;
  --accent2: #C5D2F8;
  --font-h: 'Archivo', sans-serif;
  --font-ink: 'Clash Display', 'Archivo', sans-serif;
  --font-b: 'Space Grotesk', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(1.25rem, 4vw, 3rem);
  --gap: 6px;
  --radius: 6px;
}

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

html.lenis,
html.lenis body {
  height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f5f4f2;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3a0920;
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #f5f4f2;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-b);
  color: var(--black);
  background: #f5f4f2;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 512px 512px;
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: none;
  border: none;
  background: none;
  touch-action: manipulation;
}

h2,
h3,
h4 {
  font-family: var(--font-h);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-family: var(--font-ink);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

em {
  font-style: normal;
  color: var(--accent);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  transition: top .2s;
}

.skip-link:focus {
  top: 1rem;
}

/* ============= LOADER ============= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity .7s var(--ease), visibility .7s;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  height: clamp(80px, 20vw, 140px);
  width: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderFadeIn .6s var(--ease-out) .1s forwards;
  will-change: transform, opacity;
}

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

/* Progress bar */
.loader__bar {
  width: 120px;
  height: 2px;
  background: var(--gray-l);
  border-radius: 2px;
  overflow: hidden;
}

.loader__bar-fill {
  width: 0;
  height: 100%;
  background: var(--black);
  border-radius: 2px;
  animation: loaderBar 1s var(--ease) .3s forwards;
}

@keyframes loaderBar {
  to {
    width: 100%;
  }
}

/* Phase 2: transform-based move (set via JS) */
.loader.animating .loader__logo {
  animation: none;
  opacity: 1;
  transition: transform .9s var(--ease-out), opacity .3s;
}

.loader.animating .loader__bar {
  opacity: 0;
  transition: opacity .25s;
}

/* ============= CURSOR ============= */
.cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--black);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease),
    background .2s, padding .25s var(--ease);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.3);
}

.cursor.cursor--hover {
  width: 52px;
  height: 52px;
}

.cursor--light {
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}

.cursor.cursor--label {
  width: auto;
  height: auto;
  border-radius: 100px;
  padding: 0.4rem 1rem;
  background: var(--black);
  overflow: visible;
  box-shadow: none;
}

.cursor__label {
  font-family: var(--font-b);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  display: none;
  pointer-events: none;
}

.cursor.cursor--label .cursor__label {
  display: block;
}

@media (pointer:coarse) {
  .cursor {
    display: none
  }

  body,
  button {
    cursor: auto
  }
}

/* ============= FIXED LOGO ============= */
.logo-fixed {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1.05rem var(--pad);
  font-family: var(--font-ink);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--black);
  z-index: 499;
  transition: color .3s;
}

.logo-fixed.inverted {
  color: var(--white);
}

/* ============= NAV BAR ============= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: transparent;
  border-bottom: none;
  transition: transform .4s var(--ease), opacity .3s;
}

.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.nav.nav--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 65px;
  width: auto;
  transition: filter .3s;
}

.nav__logo-mobile {
  display: none;
  position: absolute;
  left: var(--pad);
  top: 50%;
  transform: translateY(-50%);
}

.nav__logo-mobile img {
  height: 32px;
  width: auto;
  transition: filter .3s;
}

/* Logo inversion: white on dark backgrounds */
.nav.nav--dark .nav__logo img,
.nav.nav--dark .nav__logo-mobile img,
.nav.nav--overlay-open .nav__logo-mobile img {
  filter: invert(1);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
}

.nav__link:hover {
  color: var(--black);
}

.nav__cta {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  transition: background .2s;
}

.nav__cta:hover {
  background: var(--accent);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  position: fixed;
  top: 0.75rem;
  right: var(--pad);
  z-index: 510;
}

.nav__burger span {
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: transform .45s var(--ease), background .3s, width .35s var(--ease);
  transform-origin: center;
}

.nav__burger.active span {
  background: var(--white);
}

.nav__burger.active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
  width: 28px;
}

.nav__burger.active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
  width: 28px;
}

.nav__burger:not(.active) span:last-child {
  width: 16px;
  margin-left: auto;
}

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 505;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem var(--pad) 3rem;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path .7s var(--ease-out);
  overscroll-behavior: contain;
}

.nav__overlay.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav__overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav__overlay-link {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  overflow: hidden;
  display: block;
}

.nav__overlay-link span {
  display: block;
  transform: translateY(100%);
  transition: transform .5s var(--ease-out);
}

.nav__overlay.active .nav__overlay-link span {
  transform: translateY(0);
}

.nav__overlay.active .nav__overlay-link:nth-child(1) span {
  transition-delay: .1s;
}

.nav__overlay.active .nav__overlay-link:nth-child(2) span {
  transition-delay: .15s;
}

.nav__overlay.active .nav__overlay-link:nth-child(3) span {
  transition-delay: .2s;
}

.nav__overlay.active .nav__overlay-link:nth-child(4) span {
  transition-delay: .25s;
}

.nav__overlay.active .nav__overlay-link:nth-child(5) span {
  transition-delay: .3s;
}

.nav__overlay-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

/* ============= SIDE SOCIALS ============= */
.side-socials {
  position: fixed;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 90;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 0.4rem;
}

.side-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--black);
  transition: color .25s, transform .25s var(--ease), background .25s;
}

.side-socials a:hover {
  color: var(--black);
  background: rgba(0, 0, 0, 0.06);
  transform: scale(1.08);
}

.side-socials.inverted {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.08);
}

.side-socials.inverted a {
  color: var(--white);
}

.side-socials.inverted a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ============= SIDE NAV ============= */
.side-nav {
  position: fixed;
  top: 50%;
  left: var(--pad);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 90;
}

.side-nav__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .3s;
}

.side-nav__link:hover,
.side-nav__link.active {
  color: var(--black);
}

.side-nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition: background .3s, transform .3s var(--ease);
}

.side-nav__link.active .side-nav__dot {
  background: var(--black);
  transform: scale(1.4);
}

.side-nav__link:hover .side-nav__dot {
  background: var(--black);
}

.side-nav__text {
  white-space: nowrap;
}

.side-nav.inverted .side-nav__link {
  color: rgba(255, 255, 255, 0.25);
}

.side-nav.inverted .side-nav__link:hover,
.side-nav.inverted .side-nav__link.active {
  color: var(--white);
}

.side-nav.inverted .side-nav__dot {
  background: rgba(255, 255, 255, 0.2);
}

.side-nav.inverted .side-nav__link.active .side-nav__dot {
  background: var(--white);
}

.side-nav.inverted .side-nav__link:hover .side-nav__dot {
  background: rgba(255, 255, 255, 0.5);
}

/* ============= HERO ============= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

.hero__dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: var(--black);
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

.hero__title-line {
  display: block;
}

/* --- Hero Entrance: accent block-reveal wipe --- */
.hero__reveal {
  position: relative;
  opacity: 0;
  animation: heroRevealText 0s var(--ease-out) forwards;
  animation-delay: calc(var(--reveal-d, 0s) + 1.9s);
}

.hero__reveal::after {
  content: '';
  position: absolute;
  inset: -4px -8px;
  background: var(--accent2);
  transform: scaleX(0);
  transform-origin: left;
  animation: heroBlockIn 0.5s var(--ease) forwards, heroBlockOut 0.4s var(--ease) forwards;
  animation-delay: calc(var(--reveal-d, 0s) + 1.4s), calc(var(--reveal-d, 0s) + 1.9s);
  z-index: 1;
}

@keyframes heroBlockIn {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes heroBlockOut {
  from { transform: scaleX(1); transform-origin: right; }
  to   { transform: scaleX(0); transform-origin: right; }
}

@keyframes heroRevealText {
  to { opacity: 1; }
}

/* Shutter text animation */
.shutter-char {
  display: inline-block;
  position: relative;
  opacity: 0;
  filter: blur(10px);
  animation: shutterReveal 0.8s var(--ease-out) forwards;
  animation-delay: var(--char-d, 0s);
}

@keyframes shutterReveal {
  to {
    opacity: 1;
    filter: blur(0px);
  }
}

/* Accent slice layers */
.shutter-char::before,
.shutter-char::after {
  content: attr(data-char);
  position: absolute;
  inset: 0;
  color: var(--accent2);
  pointer-events: none;
  opacity: 0;
}

.shutter-char::before {
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  animation: sliceRight 0.6s ease-in-out forwards;
  animation-delay: var(--char-d, 0s);
}

.shutter-char::after {
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  animation: sliceRight 0.6s ease-in-out forwards;
  animation-delay: calc(var(--char-d, 0s) + 0.15s);
}

@keyframes sliceRight {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

.shutter-char.shutter-dot {
  color: var(--accent2);
}

/* --- Rotating Words Animation --- */
.hero__rotating-words {
  position: relative;
  display: block;
  overflow: hidden;
  height: 1.15em;
  width: 100%;
}

/* Disable block-wipe on rotating container (overflow:hidden clips it), use fade instead */
.hero__rotating-words.hero__reveal::after {
  display: none;
}

.hero__rotating-words.hero__reveal {
  animation: heroFadeUp 0.6s var(--ease-out) forwards;
  animation-delay: calc(var(--reveal-d, 0s) + 1.6s);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__word {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  white-space: nowrap;
}

.hero__word--active {
  opacity: 1;
  transform: translateY(0);
}

.hero__word--exit {
  opacity: 0;
  transform: translateY(-100%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__tagline {
  position: absolute;
  bottom: var(--pad);
  left: var(--pad);
  z-index: 2;
  font-family: var(--font-b);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============= MARQUEE ============= */
.marquee {
  padding: 1.125rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-l);
}

.marquee__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--font-h);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent2);
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ============= TAG ============= */
.tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

/* ============= BACKGROUND TEXT ============= */
.bg-text {
  position: absolute;
  top: -0.1em;
  left: var(--pad);
  font-family: var(--font-ink);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.03);
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
}

/* ============= WORK ============= */
.work {
  padding: clamp(5rem, 12vw, 10rem) 0;
  border-bottom: 1px solid var(--gray-l);
  position: relative;
  overflow: hidden;
}

/* Pattern interrupt bar — scroll-driven */
.work::after {
  content: '';
  position: absolute;
  top: -30%;
  right: 8%;
  width: 160px;
  height: 160%;
  background: linear-gradient(180deg, rgba(197, 210, 248, 0.08) 0%, rgba(79, 12, 40, 0.04) 50%, transparent 100%);
  transform: rotate(20deg) translateY(calc(var(--bar-y, 0) * 1px));
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  border-radius: 100px;
}

.work__header {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.work__heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

/* ============= WORK CAROUSEL ============= */
.work__carousel {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3rem);
  z-index: 1;
}

.work__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 3rem calc(50vw - clamp(140px, 20vw, 240px)) 2rem;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.work__track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.work__track::-webkit-scrollbar {
  display: none;
}

.work__card {
  flex: 0 0 clamp(240px, 42vw, 480px);
  scroll-snap-align: center;
  transition: transform .5s var(--ease);
  transform: scale(0.92);
}

.work__card.active {
  transform: scale(1);
}

.work__card-img {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 3/4;
  position: relative;
  transition: box-shadow .4s var(--ease);
}

.work__card.active .work__card-img {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.work__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.work__card:hover .work__card-img img {
  transform: scale(1.04);
}

.work__card-meta {
  padding-top: 1rem;
  text-align: center;
}

.work__card-cat {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.work__card-title {
  font-family: var(--font-h);
  font-size: clamp(1rem, 1.8vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 0.35rem;
  transition: color .2s;
}

.work__card:hover .work__card-title {
  color: var(--accent);
}

/* Scroll arrows - bottom left & right */
.work__scroll-arrow {
  position: absolute;
  bottom: 2rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-l);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  cursor: pointer;
  transition: background .2s, transform .2s var(--ease), box-shadow .2s, opacity .3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.work__scroll-arrow--left {
  left: clamp(1.5rem, 4vw, 3rem);
}

.work__scroll-arrow--right {
  right: clamp(1.5rem, 4vw, 3rem);
}

.work__scroll-arrow:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.work__scroll-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

/* --- Scroll Indicator Dots --- */
.scroll-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0.5rem 0 0;
}

.scroll-dots__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-l);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s var(--ease);
}

.scroll-dots__dot.active {
  background: var(--black);
  width: 24px;
  border-radius: 4px;
}

/* ============= ABOUT ============= */
.about {
  background: linear-gradient(165deg, var(--white) 0%, #f8f7f5 60%, rgba(197, 210, 248, 0.06) 100%);
  color: var(--black);
  padding: clamp(5rem, 12vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}

.about__dots-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), transparent 70%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), transparent 70%);
}

/* New decorative dots/crosses pattern (bottom-left to top-right fade) */
.about::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 60%;
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.08) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(0, 0, 0, 0.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 0% 100%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 0% 100%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 70%);
}

.about__inner {
  display: grid;
  grid-template-columns: 0.65fr 0.35fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.about__col-img {
  position: sticky;
  top: 6rem;
}

.about__img-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 20px 24px 60px rgba(0, 0, 0, 0.12);
  transform: rotate(-1.5deg);
  transition: transform .6s var(--ease);
}

.about__img-frame:hover {
  transform: rotate(0deg) scale(1.01);
}

.about__img-frame img {
  width: 100%;
  display: block;
}

.about__person {
  margin-top: 1.5rem;
}

.about__name {
  display: block;
  font-family: var(--font-h);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about__role {
  display: block;
  font-size: 0.6875rem;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.about__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: spinBadge 25s linear infinite;
}

@keyframes spinBadge {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.about__col-text {
  display: flex;
  flex-direction: column;
  padding-top: clamp(1rem, 3vw, 3rem);
}

.about__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about__reveal {
  font-family: var(--font-h);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.about__reveal .reveal-word {
  color: rgba(0, 0, 0, 0.12);
  transition: color .15s;
  display: inline;
}

.about__reveal .reveal-word.is-visible {
  color: var(--black);
}

/* ============= TESTIMONIALS ============= */
.testimonials {
  padding: clamp(5rem, 12vw, 10rem) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f4f2 0%, #fafafa 100%);
}

/* Animated background bar (pattern interrupt) — scroll-driven */
.testimonials::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 200px;
  height: 140%;
  background: linear-gradient(135deg, rgba(197, 210, 248, 0.18) 0%, rgba(79, 12, 40, 0.1) 100%);
  transform: rotate(15deg) translateY(calc(var(--bar-y, 0) * 1px));
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: none;
}

/* Second bar on left side */
.testimonials::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -8%;
  width: 120px;
  height: 130%;
  background: linear-gradient(135deg, rgba(79, 12, 40, 0.06) 0%, rgba(197, 210, 248, 0.1) 100%);
  transform: rotate(-12deg) translateY(calc(var(--bar-y, 0) * -0.6px));
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  border-radius: 100px;
}

.testimonials__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.testimonials__h {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Card */
.tcard {
  position: relative;
  transition: transform .5s var(--ease);
}

.tcard:hover {
  transform: translateY(-8px);
}

.tcard__inner {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  transition: border-color .3s, box-shadow .5s var(--ease);
}

.tcard:hover .tcard__inner {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
}

/* Featured card is taller / accent border */
.tcard--featured .tcard__inner {
  border-color: var(--accent2);
  background: linear-gradient(165deg, var(--white) 0%, rgba(197, 210, 248, 0.08) 100%);
}

.tcard--featured:hover .tcard__inner {
  box-shadow: 0 24px 48px rgba(197, 210, 248, 0.2);
}

/* Quote */
.tcard__quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: var(--black);
  border: none;
  padding: 0;
  margin: 0 0 auto;
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

/* Footer */
.tcard__footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding-top: clamp(1.25rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tcard__photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .4s;
}

.tcard:hover .tcard__photo {
  filter: grayscale(0);
}

.tcard__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.tcard__name {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--black);
}

.tcard__role {
  font-size: 0.6875rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.tcard__loc {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.25);
  margin-top: 0.1rem;
}

.tcard__stars {
  display: flex;
  gap: 1px;
  color: var(--accent);
  align-self: flex-start;
}

/* ============= SOCIAL FEED ============= */
.social-feed {
  padding: clamp(5rem, 12vw, 10rem) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f4f2 0%, #fafafa 100%);
}

.social-feed__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.social-feed__h {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
}

.social-feed__follow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  transition: color .2s;
}

.social-feed__follow:hover {
  color: var(--accent);
}

.social-feed__track-wrap {
  overflow: hidden;
}

.social-feed__track {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
  padding: 0 var(--pad);
}

.social-feed__track::-webkit-scrollbar {
  display: none;
}

.social-feed__item {
  flex: 0 0 clamp(260px, 28vw, 380px);
  scroll-snap-align: start;
}

.social-feed__card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 3/4;
  display: block;
}

.social-feed__card-img {
  width: 100%;
  height: 100%;
}

.social-feed__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.social-feed__card:hover .social-feed__card-img img {
  transform: scale(1.06);
}

.social-feed__card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity .3s;
  color: var(--white);
}

.social-feed__card:hover .social-feed__card-overlay {
  opacity: 1;
}

.social-feed__card-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0 0.25rem;
}

.social-feed__card-type {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
  line-height: 1.4;
}

.social-feed__card-title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray);
}

@media (max-width: 768px) {
  .social-feed__track {
    justify-content: flex-start;
    padding: 0 calc(50vw - 32.5vw);
    cursor: grab;
  }

  .social-feed__item {
    flex: 0 0 clamp(220px, 65vw, 320px);
    scroll-snap-align: center;
  }

  .social-feed__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .social-feed__h {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

/* ============= EDITORIAL ============= */
.editorial {
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

/* Decorative dots/crosses — bottom-left opacity 100%, top-right fading to 0% */
.editorial::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 65%;
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.07) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(0, 0, 0, 0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 0% 100%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 35%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 0% 100%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 35%, transparent 65%);
}

@media (max-width: 768px) {
  .editorial::after {
    display: none;
  }
}

.editorial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  position: relative;
  z-index: 1;
}

.editorial__hero-cell {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3/4;
}

.editorial__hero-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial__hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.editorial__label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.editorial__hero-title {
  font-family: var(--font-ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.editorial__right {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: var(--gap);
}

.editorial__title-cell {
  background: var(--white);
  border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: flex-end;
}

.editorial__big-title {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.editorial__big-title span {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--gray);
  font-size: 0.85em;
}

.editorial__cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.editorial__cat {
  background: #f5f4f2;
  border-radius: 10px;
  padding: clamp(1rem, 2vw, 1.75rem);
}

.editorial__cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.editorial__cat-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.editorial__cat-icon {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.3);
}

.editorial__cat p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.editorial__dark-cell {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.editorial__dark-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.4);
}

.editorial__dark-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-ink);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ============= SERVICES ============= */
.services {
  padding: clamp(5rem, 12vw, 10rem) 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient accent */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 40%;
  background: radial-gradient(ellipse at 100% 0%, rgba(79, 12, 40, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services > .container {
  position: relative;
  z-index: 1;
}

/* Tag light variant for dark bg */
.tag--light {
  color: rgba(255, 255, 255, 0.4);
}

/* Header */
.srv__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1rem;
}

.srv__h {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  flex-shrink: 0;
}

.srv__h em {
  font-style: normal;
  color: var(--accent2);
}

.srv__intro {
  max-width: 280px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  padding-top: .5rem;
  text-align: right;
}

/* ============= DESKTOP/TABLET: TAB LAYOUT ============= */
.srv__split-layout {
  display: none;
  /* Hidden on mobile */
  margin-top: clamp(3rem, 6vw, 5rem);
}

@media (min-width: 768px) {
  .srv__split-layout {
    display: grid;
    grid-template-columns: 0.3fr 0.35fr 0.35fr;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    align-items: stretch;
  }

  /* Hide mobile accordion on desktop */
  .srv__list {
    display: none;
  }
}

/* Tab Navigation */
.srv__tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .srv__tabs {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

.srv__tab-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  font-family: var(--font-b);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  cursor: pointer;
  transition: color .3s, background .3s;
  position: relative;
}

@media (min-width: 768px) {
  .srv__tab-item {
    border-bottom: none;
    border-radius: 10px;
    padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1rem, 1.5vw, 1.25rem);
  }

  .srv__tab-item:last-child {
    border-bottom: none;
  }
}

.srv__tab-item:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.02);
}

.srv__tab-item.active {
  color: var(--white);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
}

.srv__tab-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent2);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}

@media (min-width: 768px) {
  .srv__tab-item::before {
    border-radius: 3px;
  }
}

.srv__tab-item.active::before {
  transform: scaleY(1);
}

.srv__tab-num {
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
  min-width: 1.5rem;
}

.srv__tab-item.active .srv__tab-num {
  color: var(--accent2);
}

.srv__tab-title {
  flex: 1;
}

/* Content Area — no longer a wrapper on desktop, kept for mobile fallback */

/* Image Container */
.srv__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .srv__image-container {
    aspect-ratio: auto;
    border-radius: 12px;
    max-height: none;
    height: 100%;
  }
}

.srv__slide-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.srv__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(40%);
  will-change: transform, opacity;
}

.srv__image.active {
  opacity: 1;
  transform: translateY(0);
}

/* Carousel directions — images */
.srv__image.srv-exit-up { animation: srvSlideOutUp .6s var(--ease) forwards; }
.srv__image.srv-exit-down { animation: srvSlideOutDown .6s var(--ease) forwards; }
.srv__image.srv-enter-up { animation: srvSlideInFromBottom .6s var(--ease) both; }
.srv__image.srv-enter-down { animation: srvSlideInFromTop .6s var(--ease) both; }

@keyframes srvSlideOutUp { from { opacity:1; transform:translateY(0); } to { opacity:0; transform:translateY(-40%); } }
@keyframes srvSlideOutDown { from { opacity:1; transform:translateY(0); } to { opacity:0; transform:translateY(40%); } }
@keyframes srvSlideInFromBottom { from { opacity:0; transform:translateY(40%); } to { opacity:1; transform:translateY(0); } }
@keyframes srvSlideInFromTop { from { opacity:0; transform:translateY(-40%); } to { opacity:1; transform:translateY(0); } }

/* Text Container */
.srv__text-container {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .srv__text-container {
    min-height: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.25rem, 2vw, 2rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
  }
}

.srv__text-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  pointer-events: none;
}

.srv__text-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: auto;
}

/* Carousel directions — text */
.srv__text-slide.srv-exit-up { animation: srvTextOutUp .6s var(--ease) forwards; }
.srv__text-slide.srv-exit-down { animation: srvTextOutDown .6s var(--ease) forwards; }
.srv__text-slide.srv-enter-up { animation: srvTextInFromBottom .6s var(--ease) both; }
.srv__text-slide.srv-enter-down { animation: srvTextInFromTop .6s var(--ease) both; }

@keyframes srvTextOutUp { from { opacity:1; transform:translateY(0); } to { opacity:0; transform:translateY(-30px); } }
@keyframes srvTextOutDown { from { opacity:1; transform:translateY(0); } to { opacity:0; transform:translateY(30px); } }
@keyframes srvTextInFromBottom { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes srvTextInFromTop { from { opacity:0; transform:translateY(-30px); } to { opacity:1; transform:translateY(0); } }

.srv__text-desc {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: auto;
}

.srv__text-timeline {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  max-width: 400px;
}

/* ============= MOBILE: ACCORDION ============= */
.srv__list {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .srv__list {
    display: none;
  }
}

.srv__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.srv__item-btn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  font-family: var(--font-b);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color .3s;
}

.srv__item-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

.srv__item.active .srv__item-btn {
  color: var(--white);
  font-weight: 600;
}

.srv__item-num {
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
  min-width: 1.5rem;
}

.srv__item.active .srv__item-num {
  color: var(--accent2);
}

.srv__item-title {
  flex: 1;
}

.srv__item-arrow {
  display: flex;
  color: rgba(255, 255, 255, 0.2);
  transition: transform .4s var(--ease), color .3s;
}

.srv__item.active .srv__item-arrow {
  transform: rotate(180deg);
  color: var(--accent2);
}

/* Expandable panel */
.srv__item-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .5s var(--ease);
  padding: 0 0 0 2.75rem;
}

.srv__item.active .srv__item-panel {
  max-height: 300px;
  padding: 0 0 clamp(1.5rem, 3vw, 2rem) 2.75rem;
}

.srv__item-panel p {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 540px;
  padding-bottom: 1.5rem;
}

/* Timeline (shared between tab and accordion) */
.srv__item-timeline,
.srv__text-timeline {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  max-width: 400px;
}

.srv__timeline-label {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.srv__timeline-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.srv__timeline-val {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

/* ============= MINIMALIST SERVICES ============= */
.srv-minimal {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.srv-minimal__item {
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 2.5vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background .3s;
  text-align: left;
}

.srv-minimal__item:last-child {
  border-right: none;
}

.srv-minimal__item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.srv-minimal__num {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--accent2);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.srv-minimal__title {
  font-family: var(--font-h);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.srv-minimal__desc {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.srv-minimal__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.srv-minimal__details li {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.5);
  transition: color .2s;
}

.srv-minimal__item:hover .srv-minimal__details li {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .srv-minimal {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-minimal__item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .srv-minimal {
    grid-template-columns: 1fr;
  }

  .srv-minimal__item {
    border-right: none;
  }
}

/* Full-width pricing CTA */
.srv__pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.1rem, 2vw, 1.5rem) 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border-radius: 14px;
  transition: background .3s, transform .25s var(--ease);
}

.srv__pricing-cta:hover {
  background: var(--accent2);
  transform: scale(1.01);
}

.srv__pricing-cta svg {
  transition: transform .2s var(--ease);
}

.srv__pricing-cta:hover svg {
  transform: translate(2px, -2px);
}


/* ============= CONTACT ============= */
.contact {
  padding: clamp(6rem, 14vw, 12rem) 0;
}

.contact__inner {
  max-width: 900px;
}

.contact__h {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.contact__sub {
  font-family: var(--font-h);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2rem;
}

/* Contact Form */
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.contact__form {
  margin-bottom: 0;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .contact__form-row {
    grid-template-columns: 1fr;
  }
}

.contact__form-label {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

/* Dropdown select */
.contact__select-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.contact__select {
  width: 100%;
  padding: 1rem 3rem 1rem 1.25rem;
  font-family: var(--font-b);
  font-size: 0.9375rem;
  border: 1px solid var(--gray-l);
  border-radius: 10px;
  background: transparent;
  color: var(--black);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s;
}

.contact__select:focus {
  border-color: var(--accent);
}

.contact__select-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gray);
}

.contact__form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact__input,
.contact__textarea {
  font-family: var(--font-b);
  font-size: 0.9375rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-l);
  border-radius: 10px;
  background: transparent;
  color: var(--black);
  outline: none;
  transition: border-color .2s;
}

.contact__input:focus,
.contact__textarea:focus {
  border-color: var(--accent);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--gray);
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 100px;
  border: none;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: background .25s, transform .25s var(--ease);
}

.contact__submit:hover {
  background: var(--accent);
  transform: scale(1.02);
}

.contact__submit svg {
  transition: transform .2s var(--ease);
}

.contact__submit:hover svg {
  transform: translate(2px, -2px);
}

.contact__email {
  font-family: var(--font-h);
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 300;
  display: block;
  width: fit-content;
  margin-bottom: 2rem;
  transition: color .2s;
}

.contact__email:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: .85rem 1.75rem;
  border-radius: 100px;
  border: 1px solid var(--gray-l);
  color: var(--black);
  background: transparent;
  transition: background .25s, color .25s, border-color .25s;
}

.btn svg {
  transition: transform .2s var(--ease);
}

.btn:hover svg {
  transform: translate(2px, -2px);
}

.btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ============= FOOTER ============= */
.footer {
  padding: clamp(4rem, 8vw, 6rem) 0 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

/* -- Top row -- */
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__logo-img {
  height: clamp(70px, 10vw, 110px);
  width: auto;
  filter: invert(1);
}

.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 340px;
}

.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__nl-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.footer__nl-form {
  display: flex;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.footer__nl-input {
  flex: 1;
  padding: .75rem 1.25rem;
  font-family: var(--font-b);
  font-size: 0.875rem;
  border: none;
  outline: none;
  background: transparent;
  color: var(--white);
}

.footer__nl-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer__nl-btn {
  padding: .75rem 1.5rem;
  font-family: var(--font-b);
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}

.footer__nl-btn:hover {
  background: var(--accent2);
  transform: scale(1.02);
}

/* -- Divider -- */
.footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

/* -- Mid row -- */
.footer__mid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__col--right {
  align-items: flex-end;
  justify-content: flex-start;
}

.footer__col-title {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: .25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.footer__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  transition: color .2s;
}

.footer__links a:hover {
  color: var(--accent2);
}

.footer__credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__credit a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}

.footer__credit a:hover {
  color: var(--accent2);
}

/* -- Bottom -- */
.footer__bottom {
  position: relative;
  padding-top: clamp(4rem, 10vw, 8rem);
}

.footer__copyright {
  position: absolute;
  top: clamp(3rem, 6vw, 5rem);
  right: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bigtext {
  width: 100%;
  max-height: clamp(5rem, 15vw, 12rem);
  height: auto;
  filter: invert(1);
  transform: translateY(15%);
  user-select: none;
  pointer-events: none;
}

/* ============= PARALLAX WRAP ============= */
.parallax-wrap {
  overflow: hidden;
  position: relative;
}

/* ============= MAGNETIC ============= */
.magnetic {
  transition: transform .3s var(--ease);
}

/* ============= ANIMATIONS ============= */
.clip-up {
  overflow: hidden;
}

.clip-up>span,
.clip-up>em {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.clip-up.revealed>span,
.clip-up.revealed>em {
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.img-reveal {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .8s var(--ease-out), transform 1s var(--ease-out);
}

.img-reveal.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Slide-in animations */
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.slide-in-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.slide-in-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-in animation */
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.scale-in.revealed {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {

  .clip-up>span,
  .clip-up>em,
  .fade-up,
  .img-reveal,
  .slide-in-left,
  .slide-in-right,
  .scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee__track {
    animation: none;
  }

  .about__badge {
    animation: none;
    transform: translate(-50%, -50%);
  }
}

/* ============= LEGAL PAGE (Impressum) ============= */
.legal-page {
  padding: clamp(8rem, 16vw, 14rem) 0 clamp(4rem, 8vw, 8rem);
}

.legal-page__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.legal-page__content {
  max-width: 680px;
}

.legal-page__content h2 {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-page__content h2:first-child {
  margin-top: 0;
}

.legal-page__content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray);
}

.legal-page__content a {
  color: var(--accent);
  transition: opacity .2s;
}

.legal-page__content a:hover {
  opacity: 0.7;
}

/* ============= PROJECT PAGE ============= */
.project-hero {
  padding-top: clamp(4rem, 8vw, 6rem);
}

.project-hero__img {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}

.project-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-content {
  padding: clamp(3rem, 6vw, 5rem) var(--pad) clamp(5rem, 10vw, 8rem);
  max-width: 1100px;
}

.project-content__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.project-content__cat {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.project-content__title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.project-content__grid {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.project-content__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-content__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.project-content__meta-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.project-content__meta-val {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
}

.project-content__text p {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.project-content__text p:last-child {
  margin-bottom: 0;
}

/* Gallery */
.project-content__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.project-content__gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.project-content__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}

.project-content__gallery-item:hover img {
  transform: scale(1.03);
}

.project-content__gallery-item--full {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

/* Project Navigation */
.project-content__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--gray-l);
}

.project-content__back,
.project-content__next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
}

.project-content__back:hover,
.project-content__next:hover {
  color: var(--black);
}

.project-content__back svg,
.project-content__next svg {
  transition: transform .2s var(--ease);
}

.project-content__back:hover svg {
  transform: translateX(-3px);
}

.project-content__next:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .project-content__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-content__gallery {
    grid-template-columns: 1fr;
  }

  .project-content__gallery-item--full {
    aspect-ratio: 4/3;
  }

  .project-content__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* ============= BLOG ============= */
.blog-hero {
  padding: clamp(8rem, 16vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
}

.blog-hero__title {
  font-family: var(--font-ink);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.blog-hero__title em {
  color: var(--accent);
}

.blog-hero__sub {
  font-size: clamp(0.9375rem, 1.3vw, 1.125rem);
  color: var(--gray);
  max-width: 480px;
}

.blog-section {
  padding-bottom: clamp(5rem, 12vw, 10rem);
}

/* Featured Post */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--gray-l);
  border-radius: 16px;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .4s var(--ease);
}

.blog-featured:hover {
  transform: translateY(-6px);
  border-color: var(--accent2);
  box-shadow: 0 20px 50px rgba(197, 210, 248, 0.18);
}

.blog-featured__img {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 3/2;
}

.blog-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.blog-featured:hover .blog-featured__img img {
  transform: scale(1.03);
}

.blog-featured__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-featured__title {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  transition: color .2s;
}

.blog-featured:hover .blog-featured__title {
  color: var(--accent);
}

.blog-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* Blog Card */
.blog-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--gray-l);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent2);
  box-shadow: 0 20px 50px rgba(197, 210, 248, 0.18);
}

.blog-card__img {
  display: block;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.blog-card__cat {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  width: fit-content;
}

.blog-card__title {
  font-family: var(--font-h);
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color .2s;
}

.blog-card:hover .blog-card__title {
  color: var(--accent);
}

.blog-featured:hover .blog-card__title {
  color: var(--accent);
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: auto;
}

.blog-card__date {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-l);
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-l);
  margin-top: 0.75rem;
}

/* Active nav link */
.nav__link--active {
  color: var(--black);
}

/* ============= RESPONSIVE ============= */
@media (max-width:1024px) {
  .hero__title {
    font-size: clamp(2rem, 5.5vw, 4rem);
  }

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

  .about__col-img {
    position: static;
    max-width: 380px;
  }

  .about__badge svg {
    width: 220px;
    height: 220px;
  }

  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .testimonials__grid::-webkit-scrollbar {
    display: none;
  }

  .tcard {
    flex: 0 0 clamp(320px, 45vw, 400px);
    scroll-snap-align: center;
  }

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

  .editorial__hero-cell {
    aspect-ratio: 4/3;
  }

  .srv__item-panel {
    padding-left: 2.25rem;
  }

  .srv__item.active .srv__item-panel {
    padding-left: 2.25rem;
  }

  .stats__grid {
    gap: 1rem;
  }

  .blog-featured {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width:768px) {
  :root {
    --hero-pad: 0px;
    --hero-radius: 0px;
  }

  .nav__inner {
    display: none;
  }

  .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.75rem 0;
    transition: transform .4s var(--ease), opacity .3s, background .3s;
  }

  .nav.nav--dark {
    background: rgba(10, 10, 10, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }

  .nav__logo-mobile {
    display: block;
    position: static;
    transform: none;
  }

  .nav::before {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  /* Logo kleiner auf Mobile */
  .logo-fixed {
    font-size: 1.5rem;
    padding: 0.85rem var(--pad);
  }

  .nav__logo img {
    height: 40px;
  }

  .nav__logo-mobile img {
    height: 48px;
  }

  .loader__logo {
    height: clamp(60px, 18vw, 90px);
  }

  /* Hamburger: grösser, moderner Look */
  .nav__burger {
    gap: 5px;
    padding: 12px;
  }

  .nav__burger span {
    width: 28px;
    height: 2px;
    border-radius: 2px;
  }

  .side-socials,
  .side-nav {
    display: none;
  }

  .hero__title {
    font-size: clamp(1.6rem, 8vw, 3rem);
  }

  .hero__tagline {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
    font-size: clamp(0.8rem, 3vw, 1rem);
  }

  /* Mobile Overlay: bessere Animation */
  .nav__overlay-link {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  /* Allgemein Schriften kleiner */
  .work__heading {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }

  .testimonials__h {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .srv__h {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .contact__h {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .featured__img {
    aspect-ratio: 4/3;
  }

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

  .about__col-img {
    position: static;
    max-width: 280px;
  }

  .about__img-frame {
    transform: none;
  }

  .about__reveal {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .about__badge {
    display: none;
  }

  .about__dots-deco {
    display: none;
  }

  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials__grid::-webkit-scrollbar {
    display: none;
  }

  .tcard {
    flex: 0 0 85vw;
    scroll-snap-align: center;
  }

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

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

  .footer__col--right {
    align-items: flex-start;
    grid-column: 1 / -1;
  }

  .footer__bigtext {
    max-height: clamp(3rem, 10vw, 5rem);
  }

  .bg-text {
    display: none;
  }

  .srv__header-row {
    flex-direction: column;
  }

  .srv__intro {
    text-align: left;
    max-width: 100%;
  }

  .srv__item-panel {
    padding-left: 0;
  }

  .srv__item.active .srv__item-panel {
    padding-left: 0;
  }

  .srv__item-timeline {
    max-width: 100%;
  }

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

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

  .editorial__hero-cell {
    aspect-ratio: 3/4;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

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

@media (max-width:375px) {
  :root {
    --pad: 1rem;
  }
}