/* ═══════════════════════════════════════════════════════════════
   WEBSTYDIO — Light theme, vertical floating nav
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Light palette */
  --bg:             #f8f5f1;
  --bg-alt:         #f0ece6;
  --surface:        #ffffff;

  /* Glass */
  --glass:          rgba(0, 0, 0, 0.03);
  --glass-border:   rgba(0, 0, 0, 0.08);
  --glass-hover:    rgba(0, 0, 0, 0.06);

  /* Lines */
  --line:           rgba(0, 0, 0, 0.1);
  --line-accent:    rgba(232, 146, 124, 0.4);

  /* Text — dark warm */
  --text:           #1a1714;
  --text-2:         rgba(26, 23, 20, 0.6);
  --text-3:         rgba(26, 23, 20, 0.35);

  /* Accent — warm coral */
  --accent:         #e8927c;
  --accent-bright:  #d4765e;
  --accent-glow:    rgba(232, 146, 124, 0.35);
  --accent-soft:    rgba(232, 146, 124, 0.1);

  /* Secondary — cool blue */
  --blue:           #5b8af5;
  --blue-soft:      rgba(91, 138, 245, 0.08);

  /* Layout */
  --container:      1200px;
  --topbar-h:       72px;
  --vnav-w:         64px;

  /* Motion */
  --ease:           cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius */
  --r:              14px;
  --r-lg:           22px;
  --r-pill:         999px;
}


/* ── Reset ───────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  overflow-x: clip;
}

img, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding-left: calc(var(--vnav-w) + 16px);
}

.hide-mobile { display: inline; }


/* ═══════════════════════════════════════════════════════════════
   TOP BAR — logo + lang, minimal
   ═══════════════════════════════════════════════════════════════ */

.topbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 90;
  pointer-events: none;
  transition: none;
}

/* Burger sits above mobile overlay (z-index 105) when menu is open */
.topbar:has(.burger.is-open) {
  z-index: 120;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px 20px calc(var(--vnav-w) + 24px);
  pointer-events: auto;
  border-radius: 0;
  transition:
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    padding 0.3s var(--ease);
}

.topbar.is-scrolled .topbar__inner {
  background: rgba(248, 245, 241, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.04);
  padding-top: 14px;
  padding-bottom: 14px;
}


/* Logo -------------------------------------------------------- */

.logo {
  display: inline-block;
  position: relative;
}

.logo__word {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  position: relative;
}

.logo__o {
  display: inline-block;
  position: relative;
  color: var(--accent);
  transition: color 0.3s;
}

/* Scramble effect handled by JS — these are the visual states */
.logo__o.is-scrambling {
  animation: logo-glitch 0.08s steps(1) infinite;
}

@keyframes logo-glitch {
  0%   { opacity: 0.3; transform: translateX(2px) skewX(10deg); }
  25%  { opacity: 0.7; transform: translateX(-1px) skewX(-5deg); }
  50%  { opacity: 0.4; transform: translateX(1px) skewX(8deg); }
  75%  { opacity: 0.8; transform: translateX(-2px) skewX(-3deg); }
  100% { opacity: 0.5; transform: translateX(0) skewX(6deg); }
}

.logo__o.is-revealed {
  animation: none;
  opacity: 1;
  transform: none;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(232, 146, 124, 0.15);
  transition: all 0.4s var(--ease-out);
}

.logo__o.is-hidden {
  animation: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s var(--ease);
}


/* Language switcher ------------------------------------------- */

.lang {
  position: relative;
  z-index: 100;
}

.lang__current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  background: var(--surface);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.lang__current:hover {
  border-color: var(--line-accent);
  color: var(--text);
}

.lang__arrow {
  transition: transform 0.3s var(--ease);
  color: var(--text-3);
}

.lang.is-open .lang__arrow {
  transform: rotate(180deg);
}

.lang__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 80px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.lang.is-open .lang__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang__option {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-2);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang__option:hover {
  background: var(--accent-soft);
  color: var(--text);
}

.lang__option--active {
  color: var(--accent-bright);
  font-weight: 700;
}


/* ═══════════════════════════════════════════════════════════════
   VERTICAL FLOATING NAV — fixed left
   ═══════════════════════════════════════════════════════════════ */

.vnav {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--vnav-w);
  height: 100vh;
  height: 100dvh;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--topbar-h) 0 24px;
}

.vnav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-3);
  transition: color 0.3s var(--ease);
}

.vnav__link:hover,
.vnav__link--active {
  color: var(--text);
}

.vnav__link--active {
  font-weight: 700;
}

.vnav__line {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--line), transparent);
  transform: translateX(-50%);
}

.vnav__text {
  transform: rotate(180deg);
}

/* Light clone — visible only over dark footer via clip-path */
.vnav--light {
  pointer-events: none;
  z-index: 81;
}

.vnav--light .vnav__link {
  color: rgba(255, 255, 255, 0.45);
}

.vnav--light .vnav__link:hover,
.vnav--light .vnav__link--active {
  color: #fff;
}

.vnav--light .vnav__line {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE BURGER + OVERLAY
   ═══════════════════════════════════════════════════════════════ */

.burger {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger__line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.25s, width 0.3s;
  transform-origin: center;
}

.burger.is-open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(248, 245, 241, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mob-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mob-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mob-overlay__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mob-overlay__nav a {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-2);
  padding: 8px 24px;
  border-radius: var(--r);
  transition: color 0.25s, background 0.2s;
}

.mob-overlay__nav a:hover {
  color: var(--text);
  background: var(--accent-soft);
}

/* Mobile lang in overlay */
.mob-lang {
  display: none;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.mob-lang__btn {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--glass-border);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-3);
  background: transparent;
  transition: all 0.25s;
}

.mob-lang__btn--active {
  color: var(--accent-bright);
  border-color: var(--line-accent);
  background: var(--accent-soft);
}


/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.3s var(--ease-out),
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.4s var(--ease),
    color 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--accent {
  background: var(--text);
  color: #fff;
  border: none;
  height: 48px;
  padding: 4px 20px 4px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  gap: 0;
  overflow: hidden;
  transition:
    padding 0.5s var(--ease),
    background 0.3s,
    color 0.3s;
}

.btn--accent:hover {
  padding: 4px 0 4px 56px;
  transform: none;
  box-shadow: none;
}

.btn--accent > span {
  position: relative;
  z-index: 1;
}

.btn__icon-circle {
  position: absolute;
  right: -14px;
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    right 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.btn--accent:hover .btn__icon-circle {
  right: calc(100% + 11px);
  transform: rotate(45deg);
}

.btn--outline {
  border-color: var(--glass-border);
  background: var(--surface);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--line-accent);
  background: var(--accent-soft);
}

.btn--white {
  background: #fff;
  color: var(--text);
  border-color: transparent;
  box-shadow: 0 12px 36px -8px rgba(0, 0, 0, 0.16);
}

.btn--white:hover {
  background: var(--bg);
  box-shadow: 0 18px 48px -8px rgba(0, 0, 0, 0.22);
}


/* ═══════════════════════════════════════════════════════════════
   HERO — Light typographic poster
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  min-height: 100vh;
  padding: calc(var(--topbar-h) + 40px) 0 48px;
  overflow: clip;
}


/* Background layers ------------------------------------------- */

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Dotted surface canvas */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__grad {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero__grad--1 {
  width: 45vw; height: 45vw;
  top: -10%; right: -5%;
  background: radial-gradient(circle, rgba(232, 146, 124, 0.15) 0%, transparent 70%);
  animation: drift-1 22s ease-in-out infinite;
}

.hero__grad--2 {
  width: 35vw; height: 35vw;
  bottom: -5%; left: 10%;
  background: radial-gradient(circle, rgba(91, 138, 245, 0.08) 0%, transparent 70%);
  animation: drift-2 28s ease-in-out infinite;
}

@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-3vw, 2vh); }
  66% { transform: translate(2vw, -1vh); }
}

@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(2vw, -2vh); }
}

.hero__noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.025;
  pointer-events: none;
}


/* Hero body --------------------------------------------------- */

.hero__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform, opacity;
}

.hero__content {
  max-width: 860px;
}


/* Eyebrow ----------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow), 0 0 32px rgba(232, 146, 124, 0.2);
  animation: pulse-dot 2.8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1);   opacity: 0.8; }
  50%      { transform: scale(1.3); opacity: 1; }
}

.eyebrow__text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
}


/* H1 ---------------------------------------------------------- */

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

.hero__line {
  display: flex;
  overflow: hidden;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--text);
  white-space: nowrap;
  padding-bottom: 4px;
}

/* Animated text — letter slide-up reveal */
.anim-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.anim-char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accent line text — gradient after decode */
.hero__line--accent .anim-char.is-visible {
  color: var(--accent);
}

/* Gradient underline sweep */
.hero__line--accent {
  position: relative;
  overflow: visible;
  padding-bottom: 12px;
  width: fit-content;
}

.hero__underline {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), #c25a3f, var(--blue));
  width: 0%;
  transition: width 0.8s var(--ease-out);
}

.hero__underline.is-visible {
  width: 100%;
}


/* Sub --------------------------------------------------------- */

.hero__sub {
  max-width: 540px;
  margin-top: 36px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
  color: var(--text-2);
}


/* Hero CTA ---------------------------------------------------- */

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}


/* Hero bottom ------------------------------------------------- */

.hero__bottom {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  justify-content: flex-end;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__scroll-line {
  display: block;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--text-3));
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

.hero__scroll-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}


/* Decorative -------------------------------------------------- */

/* ── Neumorphic disc ─────────────────────────────────────── */

.hero__disc {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: disc-in 1.6s var(--ease-out) 1.2s forwards;
}

@keyframes disc-in {
  from { opacity: 0; transform: translateY(-50%) scale(0.85); }
  to   { opacity: 1; transform: translateY(-50%) scale(1); }
}

.disc {
  position: relative;
  width: clamp(240px, 26vw, 400px);
  height: clamp(240px, 26vw, 400px);
  border-radius: 50%;
  background: var(--bg-alt);
  box-shadow:
    16px 16px 32px #d6cec4,
    -16px -16px 32px #ffffff;
}

.disc__ring {
  position: absolute;
  border-radius: 50%;
  background: var(--bg-alt);
}

.disc__ring--outer {
  inset: 2px;
  box-shadow:
    6px 6px 12px #d1c9bf inset,
    -6px -6px 12px #ffffff inset;
}

.disc__ring--inner {
  inset: 12px;
  box-shadow:
    4px 4px 8px #d1c9bf inset,
    -4px -4px 8px #ffffff inset;
}

.disc__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.disc__label {
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #5a4e42;
  background: var(--bg-alt);
  padding: 10px 18px;
  border-radius: 16px;
}

.disc__orbit {
  position: absolute;
  inset: 0;
}

.disc__svg {
  width: 100%;
  height: 100%;
}

.disc__text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  fill: url(#discGrad);
}


/* ── Hero reveal ─────────────────────────────────────────── */

.hero-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
  SERVICES — static grid, layered previews, card hover
   ═══════════════════════════════════════════════════════════════ */

.services {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
  border-radius: 32px 32px 0 0;
  background: var(--surface);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.06);
  overflow: clip;
}


/* Header ----------------------------------------------------- */

.services__header {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  transform: translateZ(0);
}

.services__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
}



/* Services reveal -------------------------------------------- */

.services-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.services-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Services grid ---------------------------------------------- */

.services__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: max-content;
  min-width: 100%;
}

.services__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.services__scroller {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 24px 28px calc(var(--vnav-w) + 24px);
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.services__viewport::before,
.services__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(44px, 7vw, 96px);
  z-index: 2;
  pointer-events: none;
}

.services__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.services__viewport::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface), transparent);
}

.services__scroller.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.services-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: min(320px, 72vw);
  min-height: 340px;
  padding: 22px 22px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f3efe9 0%, #f7f3ee 100%);
  box-shadow:
    inset 0 0 0 1px rgba(26, 23, 20, 0.04),
    0 18px 40px rgba(26, 23, 20, 0.06);
  transition:
    background 0.7s var(--ease-out),
    box-shadow 0.7s var(--ease-out);
}

.services-card:hover {
  background: linear-gradient(180deg, #f6e7e4 0%, #f9efec 100%);
  box-shadow:
    inset 0 0 0 1px rgba(232, 146, 124, 0.12),
    0 16px 34px rgba(26, 23, 20, 0.05);
}

.services-card__visual {
  position: relative;
  flex: 1;
  min-height: 230px;
  margin-bottom: 16px;
  overflow: visible;
}

.services-card__stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.services-card__img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(70%, 220px);
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  user-select: none;
  pointer-events: none;
  will-change: transform;
  filter: drop-shadow(0 18px 28px rgba(26, 23, 20, 0.14));
  transition: transform 1.2s var(--ease-out);
}

.services-card__img--back {
  transform: translate(-50%, -50%) rotate(-10deg);
}

.services-card__img--front {
  transform: translate(-50%, -50%) rotate(4deg);
}

.services-card:hover .services-card__img--back {
  transition: transform 0.85s var(--ease-out);
  transform: translate(-50%, -50%) rotate(-14deg) scale(1.04);
}

.services-card:hover .services-card__img--front {
  transition: transform 0.85s var(--ease-out);
  transform: translate(-50%, -50%) rotate(7deg) scale(1.06);
}

.services-card__title {
  margin-top: auto;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: left;
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT STUDIO
   ═══════════════════════════════════════════════════════════════ */

.about-studio {
  position: relative;
  z-index: 2;
  padding: 120px 0 128px;
  background: linear-gradient(180deg, #f3efe9 0%, #f7f3ee 100%);
  color: var(--text);
  overflow: clip;
}

.about-studio__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-studio__glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 146, 124, 0.08) 0%, transparent 55%);
  filter: blur(60px);
}

.about-studio__noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.04;
}

.about-studio__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-studio__eyebrow {
  margin-bottom: 20px;
}

.about-studio__eyebrow .eyebrow__dot {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow), 0 0 32px rgba(232, 146, 124, 0.2);
}

.about-studio__eyebrow .eyebrow__text {
  color: var(--accent-bright);
}

.about-studio__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--text);
}

.about-studio__text {
  max-width: 600px;
  margin-top: 20px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.75;
  color: var(--text-2);
}

.about-studio__stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 1100px);
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 40px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.about-studio__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  position: relative;
}

.about-studio__stat + .about-studio__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(26, 23, 20, 0.12);
}

.about-studio__value {
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.about-studio__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--text-2);
}

.about-studio__cta {
  margin-top: 52px;
}


/* About reveal ------------------------------------------------ */

.about-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-reveal.btn--accent.is-visible {
  transition:
    padding 0.5s var(--ease),
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    background 0.3s,
    color 0.3s;
}


/* ═══════════════════════════════════════════════════════════════
   CASES / OUR WORKS — white surface, perspective wave bottom
   ═══════════════════════════════════════════════════════════════ */

.cases {
  position: relative;
  z-index: 3;
  padding: 100px 0 0;
  background: var(--surface);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.06);
  overflow: clip;
  transform: translateZ(0);
}


/* Header -------------------------------------------------------- */

.cases__header {
  margin-bottom: 64px;
}

.cases__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-top: 8px;
}

.cases__sub {
  max-width: 500px;
  margin-top: 16px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  color: var(--text-2);
}

/* ── Portfolio horizontal scroller (mirrors services pattern) ── */

.cases__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  z-index: 2;
}

.cases__viewport::before,
.cases__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(44px, 7vw, 96px);
  z-index: 2;
  pointer-events: none;
}

.cases__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.cases__viewport::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface), transparent);
}

.cases__scroller {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 24px 36px calc(var(--vnav-w) + 24px);
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.cases__scroller.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.cases__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: max-content;
  min-width: 100%;
}


/* ── Work card ──────────────────────────────────────────────── */

.work-card {
  display: block;
  flex: 0 0 auto;
  width: 578px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: var(--bg-alt);
  box-shadow:
    inset 0 0 0 1px rgba(26, 23, 20, 0.05),
    0 18px 48px rgba(26, 23, 20, 0.08);
  transition: box-shadow 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-drag: none;
}

.work-card:hover {
  box-shadow:
    inset 0 0 0 1px rgba(232, 146, 124, 0.2),
    0 24px 64px rgba(26, 23, 20, 0.14);
  transform: translateY(-4px);
}

.work-card__media {
  display: block;
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.work-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease-out), opacity 0.5s var(--ease-out);
  will-change: transform;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

.work-card:hover .work-card__img {
  transform: scale(1.08);
  opacity: 0.35;
}

/* Overlay — slides text info in on hover */
.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 17, 14, 0.62);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
  border-radius: inherit;
}

.work-card:hover .work-card__overlay {
  opacity: 1;
}

.work-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

.work-card__title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity 0.4s var(--ease-out) 0.05s,
    transform 0.4s var(--ease-out) 0.05s;
  will-change: transform;
}

.work-card:hover .work-card__title {
  opacity: 1;
  transform: translateY(0);
}

.work-card__hr {
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.45s var(--ease-out) 0.12s;
}

.work-card:hover .work-card__hr {
  width: 36px;
}

.work-card__category {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.4s var(--ease-out) 0.1s,
    transform 0.4s var(--ease-out) 0.1s;
  will-change: transform;
}

.work-card:hover .work-card__category {
  opacity: 1;
  transform: translateY(0);
}


/* Perspective wave ---------------------------------------------- */

.cases__wave {
  position: relative;
  width: 100%;
  height: 340px;
  margin-top: -80px;
  z-index: 1;
  overflow: hidden;
}

/* Gradient: white at top fading to transparent — blends canvas into section */
.cases__wave::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--surface)               0%,
    var(--surface)              10%,
    rgba(255, 255, 255, 0.82)   28%,
    rgba(255, 255, 255, 0.45)   48%,
    rgba(255, 255, 255, 0.12)   66%,
    transparent                 80%
  );
  z-index: 1;
  pointer-events: none;
}

.cases__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}


/* Cases reveal -------------------------------------------------- */

.cases-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.cases-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .vnav { display: none; }

  .burger { display: inline-flex; }

  .container {
    padding-left: 0;
  }

  .topbar__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .lang { display: none; }

  .mob-lang { display: flex; }

  .hero__disc {
    right: -5%;
    opacity: 0.5;
  }
  .disc {
    width: 200px;
    height: 200px;
  }

  .services__scroller {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-studio__stats {
    flex-wrap: wrap;
    width: min(100%, 560px);
    padding: 32px 24px;
  }

  .about-studio__stat {
    flex: 0 0 33.333%;
    padding: 16px 8px;
  }

  .about-studio__stat + .about-studio__stat::before {
    display: none;
  }

  .cases {
    padding: 80px 0 0;
    border-radius: 24px 24px 0 0;
  }

  .cases__scroller {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cases__wave {
    height: 280px;
    margin-top: -60px;
  }

}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    padding: calc(var(--topbar-h) + 24px) 0 32px;
  }

  .hero__line {
    font-size: clamp(40px, 12vw, 72px);
  }

  .hero__disc { display: none; }
  .hide-mobile { display: none; }

  .services {
    padding: 60px 0 80px;
    border-radius: 24px 24px 0 0;
  }

  .services__header {
    margin-bottom: 32px;
  }

  .services__scroller {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 24px;
  }

  .services__grid {
    gap: 22px;
  }

  .services-card {
    width: min(300px, 78vw);
    min-height: 320px;
  }

  .services-card__title {
    font-size: 19px;
  }

  .about-studio {
    padding: 96px 0 104px;
  }

  .about-studio__stats {
    margin-top: 44px;
  }

  .cases {
    padding: 64px 0 0;
    border-radius: 20px 20px 0 0;
  }

  .cases__header {
    margin-bottom: 48px;
  }

  .cases__scroller {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 28px;
  }

  .cases__list {
    gap: 20px;
  }

  .work-card {
    width: 460px;
  }

  .work-card__title {
    font-size: 19px;
  }

  .cases__wave {
    height: 240px;
    margin-top: -48px;
  }
}

@media (max-width: 480px) {
  .hero__line {
    font-size: clamp(32px, 11vw, 50px);
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    align-self: center;
  }

  .eyebrow { margin-bottom: 24px; }

  .topbar__inner {
    padding: 16px 16px 16px 16px;
  }

  .services {
    border-radius: 20px 20px 0 0;
    padding: 48px 0 60px;
  }

  .services__grid {
    gap: 18px;
  }

  .services-card {
    width: min(280px, 84vw);
    min-height: 300px;
    padding: 18px 18px 20px;
    border-radius: 24px;
  }

  .services-card__visual {
    min-height: 210px;
    margin-bottom: 14px;
  }

  .services-card__title {
    font-size: 18px;
  }

  .about-studio {
    padding: 72px 0 80px;
  }

  .about-studio__title {
    font-size: clamp(34px, 11vw, 48px);
  }

  .about-studio__text {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-studio__stats {
    margin-top: 36px;
    padding: 28px 20px;
    border-radius: var(--r);
  }

  .about-studio__value {
    font-size: clamp(28px, 9vw, 40px);
  }

  .about-studio__cta {
    margin-top: 36px;
  }

  .cases {
    padding: 56px 0 0;
  }

  .cases__list {
    gap: 16px;
  }

  .work-card {
    width: min(420px, 86vw);
    border-radius: 20px;
  }

  .work-card__title {
    font-size: 18px;
  }

  .cases__wave {
    height: 200px;
    margin-top: -36px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SITE FOOTER / CTA
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  position: relative;
  z-index: 4;
  background: var(--text);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -24px 72px rgba(0, 0, 0, 0.18);
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-footer__glow {
  position: absolute;
  width: 80vw;
  height: 80vw;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 146, 124, 0.14) 0%, transparent 60%);
  filter: blur(80px);
}

/* Body — centered column */
.site-footer__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 140px 24px 100px;
}

/* Logo */
.site-footer__logo {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 68px;
  transition: opacity 0.3s;
}

.site-footer__logo:hover {
  opacity: 0.75;
}

.site-footer__logo-o {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

/* Headline */
.site-footer__headline {
  margin-bottom: 64px;
}

.site-footer__line {
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.site-footer__line--dim {
  color: rgba(255, 255, 255, 0.28);
}

.site-footer__line--bright {
  color: #fff;
  min-height: 1.2em;
}

/* Typewriter cursor */
.site-footer__cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 300;
  margin-left: 3px;
  animation: footer-cursor-blink 1s steps(1) infinite;
}

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

/* Main CTA — light accent variant (white bg, dark text, same arrow animation) */
.btn--accent-light {
  background: #fff;
  color: var(--text);
  border: none;
  height: 48px;
  padding: 4px 20px 4px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  gap: 0;
  overflow: hidden;
  transition:
    padding 0.5s var(--ease),
    background 0.3s,
    color 0.3s;
  margin-bottom: 28px;
}

.btn--accent-light:hover {
  padding: 4px 0 4px 56px;
  transform: none;
  box-shadow: none;
  background: var(--bg);
}

.btn--accent-light > span {
  position: relative;
  z-index: 1;
}

.btn--accent-light .btn__icon-circle {
  background: var(--text);
  color: #fff;
}

.btn--accent-light:hover .btn__icon-circle {
  right: calc(100% + 11px);
  transform: rotate(45deg);
}

/* Ghost button — for dark background social links */
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
}

.btn--ghost:hover {
  border-color: rgba(232, 146, 124, 0.5);
  background: rgba(232, 146, 124, 0.08);
  color: var(--accent);
}

/* Social row */
.site-footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Office locations -------------------------------------------- */
.site-footer__locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px clamp(20px, 6vw, 48px);
  width: 100%;
  max-width: 680px;
  margin-top: 56px;
  text-align: left;
  align-items: start;
  position: relative;
  padding-top: 48px;
}

/* Gradient divider above the section */
.site-footer__locations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 146, 124, 0.45) 40%,
    rgba(232, 146, 124, 0.45) 60%,
    transparent
  );
}

/* Card */
.site-footer__location {
  margin: 0;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 20px 22px 24px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

/* Coral glow on hover */
.site-footer__location::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 0% 0%,
    rgba(232, 146, 124, 0.08) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.site-footer__location:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 146, 124, 0.22);
}

.site-footer__location:hover::after {
  opacity: 1;
}

/* Flag */
.site-footer__flag {
  display: block;
  margin-bottom: 4px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.site-footer__flag-svg {
  display: block;
  width: 34px;
  height: auto;
}

/* City + country */
.site-footer__loc-title {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.9);
}

/* Street address */
.site-footer__loc-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
  margin-top: -1px;
}

/* Phone — animated underline on hover */
.site-footer__loc-tel {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.25s ease;
}

.site-footer__loc-tel::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}

.site-footer__loc-tel:hover {
  color: var(--accent);
}

.site-footer__loc-tel:hover::after {
  transform: scaleX(1);
}

/* Bottom bar */
.site-footer__bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  gap: 16px;
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-footer__nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.22s ease;
}

.site-footer__nav a:hover {
  color: var(--accent);
}

/* ── Footer responsive ───────────────────────────────────────── */

@media (max-width: 768px) {
  .site-footer__body {
    padding: 96px 24px 68px;
  }

  .site-footer__logo {
    font-size: 26px;
    margin-bottom: 48px;
  }

  .site-footer__headline {
    margin-bottom: 48px;
  }

  .site-footer__locations {
    margin-top: 44px;
    gap: 16px 24px;
    padding-top: 40px;
  }

  .site-footer__bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 14px;
  }

  .site-footer__nav {
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-footer__locations {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }

  .site-footer__location {
    padding: 18px 18px 20px;
  }
}

@media (max-width: 480px) {
  .site-footer__body {
    padding: 64px 20px 48px;
  }

  .site-footer__locations {
    margin-top: 36px;
    padding-top: 36px;
  }

  .site-footer__nav {
    gap: 16px;
  }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   PROJECT FORM PANEL — slides up from bottom
   ═══════════════════════════════════════════════════════════════ */

.pform-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 195;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.pform-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pform {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 88vh;
  z-index: 200;
  background: #0f0e0d;
  border-top: 1px solid rgba(232, 146, 124, 0.18);
  border-radius: 28px 28px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.5);
}

.pform.is-open {
  transform: translateY(0);
}

/* Drag handle indicator */
.pform::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

/* ── Header ───────────────────────────────────────────────────── */

.pform__header {
  padding: 32px 40px 0;
  flex-shrink: 0;
}

.pform__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.pform__pretitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
}

.pform__pretitle .eyebrow__dot {
  background: var(--accent);
  opacity: 1;
  box-shadow: 0 0 8px var(--accent-glow);
}

.pform__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.pform__close:hover {
  background: rgba(232, 146, 124, 0.14);
  color: var(--accent);
  transform: rotate(90deg);
}

/* ── Scrollable body ──────────────────────────────────────────── */

.pform__body {
  overflow-y: auto;
  padding: 32px 40px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 146, 124, 0.25) transparent;
}

.pform__body::-webkit-scrollbar { width: 4px; }
.pform__body::-webkit-scrollbar-track { background: transparent; }
.pform__body::-webkit-scrollbar-thumb {
  background: rgba(232, 146, 124, 0.25);
  border-radius: 2px;
}

/* ── Form layout ──────────────────────────────────────────────── */

.pform__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  width: 100%;
}

.pform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.pform__fieldset {
  border: none;
  padding: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Labels ───────────────────────────────────────────────────── */

.pform__legend {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.pform__legend--req::after {
  content: ' *';
  color: var(--accent);
}

/* ── Chip toggle buttons ─────────────────────────────────────── */

.pform__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pform__chip {
  position: relative;
  cursor: pointer;
}

.pform__chip input[type="checkbox"],
.pform__chip input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.pform__chip span {
  display: block;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.pform__chip:hover span {
  border-color: rgba(232, 146, 124, 0.35);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(232, 146, 124, 0.05);
}

.pform__chip input:checked + span {
  border-color: var(--accent);
  background: rgba(232, 146, 124, 0.1);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(232, 146, 124, 0.2);
}

.pform__chip input[type="radio"]:focus-visible + span {
  outline: 2px solid rgba(232, 146, 124, 0.55);
  outline-offset: 2px;
}

/* ── Text inputs & textarea ───────────────────────────────────── */

.pform__textarea,
.pform__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  resize: none;
  line-height: 1.6;
}

.pform__textarea::placeholder,
.pform__input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.pform__textarea:focus,
.pform__input:focus {
  border-color: rgba(232, 146, 124, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(232, 146, 124, 0.08);
}

/* ── Privacy policy ───────────────────────────────────────────── */

.pform__policy {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.pform__policy-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.pform__policy-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: border-color 0.2s, background 0.2s, color 0.15s;
}

.pform__policy-check:checked ~ .pform__policy-box {
  border-color: var(--accent);
  background: rgba(232, 146, 124, 0.14);
  color: var(--accent);
}

.pform__policy-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}

.pform__policy-link {
  color: rgba(232, 146, 124, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

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

/* ── Submit button ────────────────────────────────────────────── */

.pform__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  padding: 16px 36px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #0f0e0d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s var(--ease), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.pform__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.2s;
}

.pform__submit:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 146, 124, 0.3);
}

.pform__submit:hover::before {
  opacity: 1;
}

.pform__submit:active {
  transform: translateY(0);
  box-shadow: none;
}

.pform__submit:disabled {
  background: rgba(232, 146, 124, 0.25);
  color: rgba(15, 14, 13, 0.4);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pform__submit:disabled .pform__submit-icon {
  animation: pform-pulse 1.8s ease-in-out infinite;
}

.pform__submit:disabled:hover {
  background: rgba(232, 146, 124, 0.25);
  transform: none;
  box-shadow: none;
}

.pform__submit:disabled:hover::before {
  opacity: 0;
}

@keyframes pform-pulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

.pform__submit-text {
  position: relative;
}

.pform__submit-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 14, 13, 0.15);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.pform__submit:hover .pform__submit-icon {
  transform: rotate(45deg);
}

/* ── Body lock when panel is open ─────────────────────────────── */

body.pform-open {
  overflow: hidden;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 768px) {
  .pform__header { padding: 28px 20px 0; }
  .pform__body   { padding: 24px 20px 40px; }

  .pform__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pform__submit {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .pform {
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
  }

  .pform__pretitle { font-size: 0.9rem; }
  .pform__chip span { padding: 8px 16px; font-size: 0.82rem; }
}
