/* ============================================
   GULIMAN Design Studio — Global Stylesheet
   ============================================ */

:root {
  --header-h: 66px;
  --bottom-h: calc(var(--header-h) / 2);
}

/* ---------- RESET & BASE ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

html {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: #464646;
  background: #fff;
  min-height: calc(100vh * var(--counter-zoom, 1));
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

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

/* ---------- FOCUS VISIBLE ---------- */
:focus-visible {
  outline: 2px solid rgb(238,120,37);
  outline-offset: 2px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  padding: 0.9rem 2.5% 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  box-shadow: none;
}

.site-header .logo-link img {
  height: 40px;
  width: auto;
  display: block;
}

.site-header nav {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 0;
}

.nav-btn {
  width: 20px;
  height: 20px;
  background: #464646;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  line-height: 0;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-btn:hover {
  background: #464646;
  transform: scale(1.15);
}
.nav-btn:hover svg {
  transform: translate(-50%, -50%) scale(0.87);
}

.nav-btn:active {
  transform: scale(0.95);
}

.nav-btn[aria-current="page"] {
  background: rgb(238,120,37);
}

.nav-btn::after {
  content: attr(data-label);
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(3px);
  margin-top: 4px;
  background: rgb(238,120,37);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.03em;
  line-height: normal;
  zoom: var(--counter-zoom, 1);
}

.nav-btn:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-btn svg {
  width: 13px;
  height: 13px;
  fill: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mob-br { display: none; }

/* ============================================
   BOTTOM BAR
   ============================================ */
/* Project content stack on portfolio page */

.bottom-bar {
  position: static;
  width: 100%;
  text-align: center;
  padding: 0;
  background: rgb(238,120,37);
  z-index: 1100;
  height: var(--bottom-h);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  filter: none;
}

.bottom-bar span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
}

/* ============================================
   AWWWARDS ENTRANCE ANIMATIONS
   ============================================ */
@keyframes aww-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes aww-kenBurns {
  from { transform: scale(1.3); }
  to { transform: scale(1); }
}

/* ============================================
   HOMEPAGE — SLIDER
   ============================================ */
.slide-wrapper {
  width: 100%;
  height: calc(100vh * var(--counter-zoom, 1) - var(--header-h));
  position: relative;
  background: #dddee0;
  overflow: hidden;
  animation: aww-fadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.slide.active img {
  animation: aww-kenBurns 4.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(calc(-50% - 11px));
  background: transparent;
  padding: 1.5rem 3.5rem 1.5rem 2.5%;
  text-align: left;
  will-change: opacity, transform;
  z-index: 10;
}


@media (min-width: 769px) {
  .slide-text {
    top: auto;
    bottom: 10%;
    transform: none;
  }
  .proud-of-title {
    display: block;
    font-size: 36pt;
    font-weight: 600;
    color: #464646;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    background: #f6f6f6;
    padding: 4rem 2.5rem;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (min-width: 1024px) {
  #slide-welding .slide-text,
  #slide-katana .slide-text,
  #slide-kintsugi .slide-text,
  #slide-european .slide-text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.4em;
  }
}

#slide-welding .line1,
#slide-welding .line2,
#slide-katana .line1,
#slide-katana .line2,
#slide-european .line1,
#slide-european .line2 {
  color: #fff;
}

@media (min-width: 769px) {
  #slide-kintsugi .line2 {
    color: #464646;
  }
}

.slide.active .slide-text {
  animation: aww-fadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.slide-text .line1 {
  font-size: 24pt;
  font-weight: 200;
  text-transform: uppercase;
  color: #464646;
  letter-spacing: normal;
  line-height: 1.25;
  will-change: opacity, transform;
}

.slide.active .line1 {
  animation: aww-slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.slide-text .line2 {
  font-size: 24pt;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(238,120,37);
  letter-spacing: normal;
  line-height: 1.25;
  will-change: opacity, transform;
}

.slide.active .line2 {
  animation: aww-slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

/* Dots */
.dots-row {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8.5px;
  z-index: 100;
}

.dot {
  width: 17px;
  height: 17px;
  background: rgb(238,120,37);
  border: none;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 7.5px;
  height: 7.5px;
  border-radius: 50%;
  background: white;
}

.dot.active { opacity: 1; }
.dot:not(.active) { opacity: 0.4; }
.dot:hover { transform: scale(1.15); opacity: 0.8; }
.dot:active { transform: scale(0.9); }
.dot.active:hover { opacity: 1; }

/* ============================================
   PORTFOLIO — GRID
   ============================================ */
.portfolio-hero-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: calc(100vh - var(--header-h));
  margin: 0 auto;
  overflow: hidden;
}

.portfolio-hero-wrap .lb-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  margin-bottom: 0;
  display: block;
  animation: portfolio-kenBurns 10s cubic-bezier(0.7, 0, 1, 1) infinite;
}

@keyframes portfolio-kenBurns {
  0% { transform: scale(1); filter: blur(4px); }
  5% { transform: scale(1); filter: blur(0); }
  14% { filter: blur(0); }
  15% { filter: blur(1px); }
  100% { transform: scale(10); filter: blur(20px); }
}

.portfolio-hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36pt;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: normal;
  margin: 0;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.portfolio-hero-title:hover {
  color: rgb(238,120,37);
  font-weight: 600;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: #dddee0;
  scroll-margin-top: var(--header-h);
}

.p-cell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  cursor: zoom-in;
  transition: background 0.15s;
  margin: 0;
  padding: 0;
  border: none;
  background: #f6f6f6;
}

.p-img {
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  position: relative;
  order: -1;
  aspect-ratio: 3 / 2;
  background: #f6f6f6;
}

.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.p-cell:hover .p-img img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.p-txt {
  width: 100%;
  padding: 0.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f6f6f6;
  transition: background 0.15s;
  position: relative;
  overflow: visible;
  aspect-ratio: 3 / 2;
  min-height: 0;
}

.p-txt::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  height: 20px;
  background: transparent;
  box-shadow: 0 15px 10px -12px rgba(0,0,0,0.25);
  transform: rotate(-1.5deg);
  z-index: -1;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.p-txt::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  height: 20px;
  background: transparent;
  box-shadow: 0 15px 10px -12px rgba(0,0,0,0.25);
  transform: rotate(1.5deg);
  z-index: -1;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.p-cell:hover .p-txt::before {
  box-shadow: 0 18px 12px -14px rgba(0,0,0,0.35);
  transform: rotate(-2deg);
}

.p-cell:hover .p-txt::after {
  box-shadow: 0 18px 12px -14px rgba(0,0,0,0.35);
  transform: rotate(2deg);
}

.p-cell:hover .p-txt {
  background: rgb(238,120,37);
}

.grid-separator {
  grid-column: 1 / -1;
  height: 0;
  background: #dddee0;
  pointer-events: none;
}

.p-cell:hover .p-txt h3,
.p-cell:hover .p-txt ul li {
  color: #fff;
}

.p-txt h3 {
  font-size: 16pt;
  font-weight: 600;
  text-transform: uppercase;
  color: #464646;
  letter-spacing: normal;
  margin-bottom: 0.25rem;
  line-height: 1.05;
}

.p-txt ul {
  list-style: none;
}

.p-txt ul li {
  font-size: 10pt;
  font-weight: 400;
  text-transform: uppercase;
  color: #464646;
  letter-spacing: normal;
  line-height: 1.3;
}

/* ============================================
   PROJECT PAGE — NAVIGATION & CLOSE
   ============================================ */
.lb-close-bottom {
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex-shrink: 0;
  background: rgb(238,120,37);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 1.5rem;
  position: relative;
  top: -10px;
  transition: background 0.3s ease;
}

.lb-close-bottom:hover {
  background: rgb(238,120,37);
  transform: scale(1.15);
}
.lb-close-bottom:hover svg {
  transform: scale(0.87);
}

.lb-close-bottom svg {
  width: 15px;
  height: 15px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}

/* ============================================
   PROJECT PAGES
   ============================================ */
.project-page {
  padding: 0 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
}

.project-nav-top {
  position: fixed;
  top: calc(var(--header-h) + 28px);
  left: calc(2.5% + 2px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 90;
  pointer-events: none;
}

.project-nav-top .proj-nav-btn,
.project-nav-top .lb-close-bottom {
  pointer-events: auto;
}

.project-nav-top .lb-close-bottom {
  text-decoration: none;
  margin: 0;
  position: static;
  top: auto;
  order: 3;
}

.project-nav-top .proj-nav-btn:first-child { order: 2; }
.project-nav-top .proj-nav-btn:last-child  { order: 1; }

.proj-nav-btn {
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex-shrink: 0;
  background: #464646;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.proj-nav-btn:hover {
  background: #464646;
  transform: scale(1.15);
}
.proj-nav-btn:hover svg {
  transform: translate(-50%, -50%) scale(0.87);
}

.proj-nav-btn svg {
  width: 13px;
  height: 13px;
  fill: white;
  stroke: none;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ============================================
   VIDEO GRID
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  width: calc(100% + 2rem);
  margin-left: -1rem;
  margin-right: -1rem;
  padding-bottom: 0.4rem;
}

.video-grid video {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ============================================
   IMAGE ZOOM POPUP
   ============================================ */
.img-zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}
.img-zoom-overlay.active {
  display: flex;
}
.img-zoom-overlay img {
  max-width: min(94vw, 1804px);
  max-height: min(94vh, 1015px);
  object-fit: contain;
}
.zoom-close, .zoom-prev, .zoom-next {
  position: fixed;
  left: calc(2.5% + 2px);
  width: 20px; height: 20px;
  background: #464646;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  transition: background 0.3s ease;
}
.zoom-close:hover, .zoom-prev:hover, .zoom-next:hover { background: #464646; transform: scale(1.15); }
.zoom-close:hover svg, .zoom-prev:hover svg, .zoom-next:hover svg { transform: translate(-50%, -50%) scale(0.87); }
.zoom-next { top: calc(50% - 40px); }
.zoom-prev { top: calc(50% - 10px); }
.zoom-close { top: calc(50% + 20px); }
.zoom-close svg {
  width: 15px; height: 15px;
  stroke: white; stroke-width: 3; fill: none;
  display: block;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.zoom-prev svg, .zoom-next svg {
  width: 13px; height: 13px;
  fill: white; stroke: none;
  display: block;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Grid images hover effect on project pages */
.project-page .lb-gallery-grid img {
  cursor: pointer;
}
.project-page .lb-gallery-grid img:hover {
  filter: brightness(0.85);
}

/* Toate imaginile din galerie sunt clickabile */
.project-page .lb-gallery-grid img:first-of-type {
  cursor: zoom-in;
  pointer-events: auto;
}

.lb-hero-img {
  width: calc(100% + 2rem);
  max-width: none;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: 6px;
  height: auto;
  display: block;
}

/* Hero wrap — created by JS for text overlay */
.lb-hero-wrap {
  position: relative;
  width: calc(100% + 2rem);
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: 6px;
}
.lb-hero-wrap .lb-hero-img {
  width: 100%;
  margin: 0;
}

/* Hero text overlay — desktop only, same rule as slide text */
.lb-hero-text {
  position: absolute;
  bottom: 10%;
  right: 0;
  padding: 0.6rem 2.5% 0.6rem 1.6rem;
  text-align: right;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.4em;
  z-index: 10;
  pointer-events: none;
  background: #dddee0;
}
.lb-hero-text .line1,
.lb-hero-text .line2 {
  font-size: 24pt;
  font-weight: 400;
  color: #464646;
}

.lb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(var(--lb-cols, 3), 1fr);
  gap: 6px;
  max-width: none;
  width: calc(100% + 2rem);
  margin-left: -1rem;
  margin-right: -1rem;
  padding-bottom: 6px;
}

.lb-gallery-grid .lb-description {
  grid-column: 4 / -1;
  grid-row: 1;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}

.lb-gallery-grid .lb-description + img {
  grid-column: 1 / span 3;
  grid-row: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  align-self: stretch;
}

.lb-gallery-grid img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.lb-description {
  background: #e8e8e8;
  max-width: 1100px;
  width: 100%;
  padding: 2rem 2.5rem;
  margin-bottom: 0;
}

.lb-desc-title {
  font-size: 36pt;
  font-weight: 600;
  color: #464646;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lb-description p.lb-desc-services {
  font-size: 1rem;
  font-weight: 400;
  color: #464646;
  text-transform: uppercase;
  letter-spacing: normal;
  margin-bottom: 0.8rem;
}

.lb-description p {
  font-size: 1rem;
  font-weight: 400;
  color: #464646;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.lb-description p:last-child {
  margin-bottom: 0;
}

/* ============================================
   10 DESIGN PRINCIPLES
   ============================================ */
.principles-section {
  background: #f6f6f6;
  padding: 4rem 0 4rem 0;
  width: 100%;
}

.principles-section .principles-title,
.principles-section .principles-subtitle,
.principles-section .principle h3,
.principles-section .principle p {
  color: #464646;
}

.principles-layout {
  padding: 0 2.5%;
}

.principles-title-col {
  margin-bottom: 3rem;
}

.principles-title {
  text-align: left;
  font-size: 36pt;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.1;
  margin: 0;
}

.principles-subtitle {
  text-transform: none;
  font-size: 16pt;
  font-weight: 400;
  display: block;
  margin-top: 0.1rem;
  color: #fff;
}

.principles-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 1rem 4rem;
  max-width: 750px;
  margin: 0 auto;
}

.principle {
  margin-bottom: 0.8rem;
}

.principle h3 {
  font-size: 16pt;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: normal;
  margin-bottom: 0.05rem;
  line-height: 1.3;
  white-space: nowrap;
  text-align: left;
}

.principle p {
  font-size: 12pt;
  font-weight: 400;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.6;
  text-align: left;
}

/* ============================================
   ABOUT US — TEXT ONLY
   ============================================ */
/* Wrapper for the hero zone — anchors the marquee, clips overflow */
.about-hero-wrap {
  position: relative;
  overflow: visible;
}

/* Solid overlay that hides the marquee to the left of the TRADITIONAL VALUES column */
@media (min-width: 769px) {
  .about-hero-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(8% + 84% * (1.06 / 3.12));
    height: 100%;
    background: rgb(238,120,37);
    z-index: 2;
    pointer-events: none;
  }
}

.about-text-only {
  display: grid;
  grid-template-columns: 1fr 0.06fr 1fr 0.06fr 1fr;
  align-content: center;
  min-height: calc(100vh * var(--counter-zoom, 1) - var(--header-h));
  padding: calc(1rem + 20px) 8% calc(3rem + 200px) 8%;
  gap: 0;
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.about-block {
  pointer-events: auto;
}

/* About Us marquee headline — same style as .contact-tall-headline */
.about-tall-headline {
  position: absolute;
  left: 0;
  bottom: calc(50% - min(35vh, 275px) + 10px);
  top: auto;
  transform: translateX(100vw);
  z-index: 4;
  font-weight: 100;
  font-size: 120pt;
  line-height: 1;
  color: #fff;
  pointer-events: auto;
  cursor: grab;
  user-select: none;
  opacity: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  touch-action: pan-y;
}

@media (max-width: 768px) {
  .about-tall-headline {
    display: block;
    bottom: 40px;
    top: auto;
  }
}

.about-block:nth-child(1) { grid-column: 1; }
.about-block:nth-child(2) { grid-column: 3; }
.about-block:nth-child(3) { grid-column: 5; }

.h3-light {
  font-weight: 200;
}

.about-block h3 {
  font-size: 36pt;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: normal;
  margin-bottom: 0.05rem;
  line-height: 1.05;
}

.about-block p {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.6;
  max-width: 560px;
  text-wrap: pretty;
}

.about-signature {
  margin-top: 2.5rem;
  max-width: 220px;
  height: auto;
  display: block;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: signDraw 10s ease-out forwards;
}

@keyframes signDraw {
  0% { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
  60% { clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%); }
}

/* ============================================
   CONTACT
   ============================================ */
.page-about {
  background: rgb(238,120,37);
}
.page-about .site-header {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.page-contact {
  background: rgb(238,120,37);
}
.page-contact .site-header {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.contact-wrap {
  display: flex;
  min-height: calc(100vh * var(--counter-zoom, 1) - var(--header-h));
  align-items: center;
  justify-content: center;
  padding: 2rem 5%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

/* Contact headline: marquee + drag + inertia (X only, Y fixed via bottom) */
.contact-wrap > .contact-left {
  pointer-events: none;
  position: relative;
  z-index: 2;
}



.contact-tall-headline {
  position: absolute;
  left: 0;
  bottom: calc(50% - min(35vh, 275px) + 10px); /* vertical position relative to brush base */
  top: auto;
  /* Y is fixed by bottom; X is driven entirely by JS marquee */
  transform: translateX(100vw);
  z-index: 1; /* below brush container */
  font-weight: 100;
  font-size: 120pt;
  line-height: 1;
  color: #fff;
  pointer-events: auto;
  cursor: grab;
  user-select: none;
  opacity: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  /* No CSS animation — motion handled by requestAnimationFrame in main.js */
  touch-action: pan-y;
}

.contact-left {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-right: calc(2rem + 16px);
  margin-left: -15px;
}

.contact-left img {
  height: 70vh;
  max-height: 550px;
  width: auto;
  object-fit: contain;
  margin-bottom: -10px;
}

.contact-right {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -65px;
  margin-top: -3px;
  position: relative;
  z-index: 5;
}

.contact-right h2 {
  font-size: 36pt;
  font-weight: 200;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: normal;
  margin-bottom: 0.6rem;
}

.contact-info {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-info a {
  color: #fff;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #464646;
}

.contact-tagline {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: calc(-0.5rem - 5px);
  letter-spacing: normal;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .slide { transition: opacity 0.3s ease; }
  .slide.active img { animation: none; }
}

/* ============================================
   RESPONSIVE — TABLET (<=768px)
   ============================================ */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  /* Hide stacked Work/About/Contact content on homepage at mobile width */
  .home-extra-pages { display: none; }

  :root { --header-h: 61px; }
  .site-header { padding: 0.8rem 4% 0.5rem; }
  .nav-btn:hover { background: #464646; transform: none; }
  .nav-btn:hover::after { opacity: 0; }

  /* Slider mobile */
  .slide-wrapper {
    height: calc(100dvh - var(--header-h) - 6px);
    overflow-x: hidden;
  }

  /* Portfolio hero full screen on mobile */
  .portfolio-hero-wrap {
    height: calc(100dvh - var(--header-h) - 90px);
    background: #dddee0;
    max-width: none;
  }
  .portfolio-hero-wrap .lb-hero-img {
    width: 101%;
    height: 101%;
    object-fit: cover;
    display: block;
  }
  .portfolio-hero-title { font-size: 2.8rem; }
  .slide-text { padding: 1.4rem 2rem 1.4rem 4%; background: rgba(255,255,255,0.65); }
  #slide-welding .slide-text { display: flex; flex-direction: column; gap: 0; }
  #slide-katana .slide-text,
  #slide-kintsugi .slide-text,
  #slide-european .slide-text { display: flex; flex-direction: row; align-items: baseline; gap: 0.4em; }
  #slide-welding .line1, #slide-welding .line2,
  #slide-katana .line1, #slide-katana .line2,
  #slide-kintsugi .line1, #slide-kintsugi .line2,
  #slide-european .line1, #slide-european .line2 { color: #464646; }
  .slide-text .line1,
  .slide-text .line2 { font-size: 1.75rem; }

  .slide img {
    object-fit: cover;
    object-position: 85% 50%;
  }

  /* KATANA — position on mobile */
  #slide-welding img {
    object-position: 75% 50%;
  }
  #slide-katana img {
    object-position: 25% center;
  }
  #slide-katana .slide-text {
    left: 0;
    padding-left: 0.8rem;
    padding-right: 1.5rem;
  }
  #slide-european img {
    object-position: center center;
  }

  /* KINTSUGI stays centered */
  #slide-kintsugi img {
    object-position: center center;
  }

  .slide.active img {
    animation-duration: 4.5s;
  }
  @keyframes aww-kenBurns {
    from { transform: scale(1.25); }
    to { transform: scale(1); }
  }

  /* Portfolio mobile — single column, image always on top */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .p-cell { flex-direction: column; }
  .p-img { width: 100% !important; order: -1; aspect-ratio: 3 / 2; flex-shrink: 0; }
  .p-img img { width: 100% !important; height: 100% !important; object-fit: contain !important; object-position: center center !important; display: block; }
  .p-cell { gap: 0; }
  .p-txt { width: 100% !important; order: 1; padding: 1.8rem 1.4rem; background: #f6f6f6; aspect-ratio: auto; min-height: 0; flex-shrink: 0; flex-grow: 1; overflow: hidden; }
  .p-txt h3 { font-size: 23pt; color: #464646; line-height: 1.05; }
  .p-txt ul li { font-size: 13pt; font-weight: 400; color: #464646; letter-spacing: normal; line-height: 1.3; text-transform: none; }
  .p-cell:hover .p-img img { transform: none; filter: none; }
  .p-cell:hover .p-txt { background: #f6f6f6; }
  .p-cell:hover .p-txt h3,
  .p-cell:hover .p-txt ul li { color: #464646; }
  .p-cell:hover .p-txt::before,
  .p-cell:hover .p-txt::after { box-shadow: none; transform: none; }

  /* Lightbox & Project page mobile */
  .project-page { padding: 0 0.5rem 0; }
  .lb-hero-img { width: calc(100% + 1rem); margin-left: -0.5rem; margin-right: -0.5rem; }
  .lb-hero-wrap { width: calc(100% + 1rem); margin-left: -0.5rem; margin-right: -0.5rem; }
  .lb-hero-text { display: flex; padding: 0.2rem 0.8rem 0.2rem 0.5rem; }
  .lb-hero-text .line1,
  .lb-hero-text .line2 { font-size: 9pt; font-weight: 400; }
  .lb-gallery-grid { grid-template-columns: 1fr; width: calc(100% + 1rem); margin-left: -0.5rem; margin-right: -0.5rem; }
  .lb-gallery-grid > * { grid-column: 1 / -1 !important; grid-row: auto !important; }
  .lb-gallery-grid img[style] { grid-column: 1 / -1 !important; grid-row: auto !important; }
  .lb-gallery-grid .lb-description { grid-column: 1 / -1 !important; grid-row: auto !important; order: 9999 !important; align-self: auto; padding: 1.5rem 1.2rem; }
  .project-page { background: #dddee0; }
  .page-project { background: #dddee0; }
  .lb-desktop-only { display: none; }
  .lb-description p { line-height: 1.6; }
  .lb-desc-title { font-size: 36pt; }
  .lb-gallery-grid .lb-description + img { grid-column: 1 / -1 !important; grid-row: auto !important; height: auto; }
  .lb-close-bottom { display: flex !important; width: 20px; height: 20px; min-height: 20px; flex-shrink: 0; }
  .proj-nav-btn { display: flex !important; width: 20px; height: 20px; min-height: 20px; flex-shrink: 0; }
  .project-nav-top {
    left: auto;
    right: 4%;
    top: calc(var(--header-h) + (100dvh - var(--header-h) - 6px) / 2);
    transform: translateY(-50%);
    align-items: flex-end;
  }

  /* Disable zoom popup on mobile */
  .project-page .lb-gallery-grid img { pointer-events: none !important; cursor: default !important; }
  .img-zoom-overlay { display: none !important; }

  /* Principles mobile */
  .principles-section { padding: 2rem 1.2rem 110px 1.2rem; }
  body { padding-bottom: 0; }
  .portfolio-grid { padding-bottom: 60px; background: #dddee0; }
  .project-page { padding-bottom: 85px; }
  .principles-layout { flex-direction: column; gap: 2rem; padding: 0; }
  .principles-title-col { min-width: 0; }
  .principles-title { padding: 0; }
  .principles-grid-2col { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-flow: row; }
  .principle h3 { white-space: normal; word-wrap: break-word; }

  /* About Us mobile */
  .about-text-only { grid-template-columns: 1fr; padding: 2rem 1.2rem 160px 1.2rem; gap: 2rem; }
  .about-block:nth-child(1),
  .about-block:nth-child(2),
  .about-block:nth-child(3) { grid-column: 1; }

  /* Contact mobile */
  .contact-wrap { flex-direction: column; padding: 2rem 1.2rem 60px 1.2rem !important; margin-left: 0 !important; align-items: stretch; justify-content: flex-start; min-height: 0; height: calc(100dvh - var(--header-h) - 6px); overflow: hidden; }
  .contact-left { padding-right: 0; padding-bottom: 2rem; display: flex; justify-content: center; margin-left: 0; }
  .contact-left img { height: 40vh; }
  .contact-right { margin-left: 0 !important; width: 100%; }
  /* Align marquee bottom with brush bottom on mobile */
  .contact-tall-headline {
    top: calc(2rem + 40vh - 120pt - 5px);
    bottom: auto;
  }

  /* Slide dots mobile — higher */
  .dots-row { bottom: 16px; }

  /* Bottom bar mobile — static, Guliman 2026 */
  .bottom-bar {
    position: static;
    height: auto;
    padding: 7px 0;
    box-shadow: none;
  }
  .portfolio-grid { padding-bottom: 0; }
  .project-page { padding-bottom: 0; }
  .principles-section { padding-bottom: 2rem; }
}

/* ============================================
   RESPONSIVE — MEDIUM SCREENS (769px–1200px)
   ============================================ */
@media (min-width: 769px) and (max-width: 1200px) {
  .about-block h3 { font-size: 2rem; }
  .about-text-only { padding: calc(1rem + 20px) 5% calc(3rem + 200px) 5%; grid-template-columns: 1fr 0.04fr 1fr 0.04fr 1fr; }
  .principle h3 { white-space: normal; overflow-wrap: break-word; }
  .principles-grid-2col { gap: 1rem 2rem; }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (1200px–1919px)
   ============================================ */
@media (min-width: 1200px) and (max-width: 1919px) {
  .p-txt { aspect-ratio: auto; overflow: hidden; flex-grow: 1; }
}

/* ============================================
   RESPONSIVE — MID DESKTOP (769px–1199px)
   ============================================ */
@media (min-width: 769px) and (max-width: 820px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .lb-gallery-grid { grid-template-columns: 1fr !important; width: calc(100% + 2rem); margin-left: -1rem; margin-right: -1rem; }
  .lb-gallery-grid > * { grid-column: 1 / -1 !important; grid-row: auto !important; }
  .lb-gallery-grid img[style] { grid-column: 1 / -1 !important; grid-row: auto !important; }
  .lb-gallery-grid .lb-description { grid-column: 1 / -1 !important; grid-row: auto !important; order: 9999 !important; align-self: auto; padding: 1.5rem 1.2rem; }
  .lb-gallery-grid .lb-description + img { grid-column: 1 / -1 !important; grid-row: auto !important; height: auto; }
  .lb-desktop-only { display: none; }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .p-txt { aspect-ratio: auto; overflow: hidden; flex-grow: 1; }
}

/* ============================================
   RESPONSIVE — TABLET GALLERY (601px–768px)
   ============================================ */
@media (min-width: 601px) and (max-width: 768px) {
  #slide-welding .slide-text { display: flex; flex-direction: column; gap: 0; }
  #slide-katana .slide-text,
  #slide-kintsugi .slide-text,
  #slide-european .slide-text { display: flex; flex-direction: row; align-items: baseline; gap: 0.4em; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .p-cell { flex-direction: column; }
  .p-img { width: 100% !important; order: -1; }
  .p-txt { width: 100% !important; order: 1; overflow: hidden; aspect-ratio: auto; flex-grow: 1; }
  .p-txt h3 { font-size: 19pt; }
  .p-txt ul li { font-size: 12pt; line-height: 1.3; }
  .lb-gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .lb-gallery-grid .lb-description { grid-column: 1 / -1 !important; }
  .lb-gallery-grid .lb-description + img { grid-column: 1 / -1 !important; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (<=480px)
   ============================================ */
@media (max-width: 480px) {

  .slide-text { padding: 1.1rem 1.6rem 1.1rem 1.5rem; background: rgba(255,255,255,0.65); }
  .slide-text .line1,
  .slide-text .line2 { font-size: 1.55rem; }

  .slide img { object-position: 90% 50%; }
  #slide-katana img { object-position: 25% center; }
  #slide-kintsugi img { object-position: center center; }

  .nav-btn:hover { transform: none; }
  .dot:hover { transform: none; }

  .p-txt { padding: 0.8rem 1rem; }
  .p-txt h3 { font-size: 23pt; margin-bottom: 0.25rem; line-height: 1.05; }
  .p-txt ul li { font-size: 13pt; font-weight: 400; line-height: 1.3; text-transform: none; }

}

/* ============================================
   TOUCH DEVICE FIX
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  .p-cell:hover .p-img img { transform: none; filter: none; }
  .p-cell:hover .p-txt { background: #f6f6f6; }
  .p-cell:hover .p-txt h3,
  .p-cell:hover .p-txt ul li { color: #464646; }
  .p-cell:hover .p-txt::before,
  .p-cell:hover .p-txt::after { box-shadow: none; transform: none; }
  .nav-btn:hover { background: #464646; }
  .nav-btn:hover::after { opacity: 0; }
}

/* ============================================
   HOMEPAGE SEO SECTION
   (full-width dark band; inner blocks aligned with .principles-grid-2col)
   ============================================ */
.seo-section {
  background: #fff;
  width: 100%;
  padding: 4rem 0;
  margin-bottom: -1px;
}


.seo-section-orange {
  background: rgb(238,120,37);
}

.seo-section-light {
  background: #f6f6f6;
}

/* Generic SEO section marquee overlay */
.seo-has-marquee {
  position: relative;
  overflow: hidden;
}

.seo-has-marquee .seo-intro-block,
.seo-has-marquee .principles-layout {
  position: relative;
  z-index: 2;
}

.seo-marquee {
  position: absolute;
  left: 0;
  top: calc(4rem + 2rem + 2.8rem * 1.05 - clamp(3rem, 14vh, 11rem));
  white-space: nowrap;
  font-weight: 400;
  font-size: clamp(3rem, 14vh, 11rem);
  line-height: 1;
  color: rgb(238,120,37);
  pointer-events: auto;
  cursor: grab;
  user-select: none;
  letter-spacing: -0.02em;
  transform: translateX(100vw);
  z-index: 1;
  touch-action: pan-y;
}

.seo-section:not(.seo-section-orange) .seo-intro-block,
.seo-section:not(.seo-section-orange) .seo-intro-block h2,
.seo-section:not(.seo-section-orange) .seo-intro-block h3,
.seo-section:not(.seo-section-orange) .seo-intro-block p,
.seo-section:not(.seo-section-orange) .seo-intro-block li,
.seo-section:not(.seo-section-orange) .seo-intro-block strong {
  color: #464646;
}

/* White inner box (e.g. "What We Do" inside an orange seo-section) */
.seo-white-box {
  background: #fff;
  padding: 2.5rem 0;
  margin: 2rem 0;
}

.seo-white-box h3,
.seo-white-box h3 .seo-h2-light,
.seo-white-box ul,
.seo-white-box li,
.seo-white-box strong,
.seo-white-box p {
  color: #464646;
}

.seo-intro-block {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 2.5%;
  color: #fff;
}

.seo-intro-block h2 {
  font-size: 36pt;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.05;
  margin: 2rem 0 1.2rem 0;
  white-space: nowrap;
}

.seo-h2-light {
  font-weight: 200;
}

.seo-intro-block h2.seo-h2-orange,
.seo-intro-block h2.seo-h2-orange .seo-h2-light {
  color: rgb(238,120,37);
}

.seo-intro-block h3.seo-h3-big {
  font-size: 36pt;
  font-weight: 600;
  line-height: 1.05;
  margin: 2rem 0 1.2rem 0;
}

@media (max-width: 768px) {
  .seo-intro-block h3.seo-h3-big { font-size: 36pt; }
}

.seo-intro-block h3 {
  font-size: 16pt;
  font-weight: 600;
  max-width: 750px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: normal;
  line-height: 1.3;
  margin: 1rem auto 0.05rem auto;
}

.seo-intro-block h3:not(.seo-h3-big) {
  padding-left: 1.4rem;
  position: relative;
}

.seo-intro-block h3:not(.seo-h3-big)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.85em;
  height: 0.85em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='8,4 20,12 8,20'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='8,4 20,12 8,20'/%3E%3C/svg%3E") no-repeat center / contain;
}

.seo-intro-block p {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  margin: 0 auto 1rem auto;
  max-width: 750px;
}

.seo-intro-block p.seo-p-medium {
  font-weight: 600;
}

.seo-intro-block ul {
  list-style: none;
  margin: 0.5rem auto 1.2rem auto;
  padding: 0;
  max-width: 750px;
}

.seo-intro-block li {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 0;
}

.seo-intro-block strong {
  color: #fff;
  font-weight: 600;
}

.seo-intro-block li strong {
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  font-size: 16pt;
  line-height: 1.3;
  margin-bottom: 0.05rem;
}

.seo-intro-block li:has(strong) {
  margin-bottom: 1rem;
  padding-left: 1.4rem;
}

.seo-intro-block li:has(strong) strong {
  position: relative;
}

.seo-intro-block li:has(strong) strong::before {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: currentColor;
  -webkit-mask: none;
  mask: none;
}

/* Small square bullet sub-list */
.sq-list {
  list-style: none;
  padding: 0.3rem 0 0 0;
  margin: 0;
}
.sq-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.sq-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: currentColor;
}

/* Impressum block */
.impressum-block {
  max-width: 750px;
  margin: 0 auto;
}
.impressum-block p {
  font-size: 1rem;
  font-weight: 400;
  color: #464646;
  line-height: 1.7;
  margin-bottom: 0;
}
.impressum-block p strong {
  font-weight: 600;
}
.impressum-block a {
  color: #464646;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Impressum list — square bullets, no arrow override */
.impressum-list li:has(strong) {
  padding-left: 1.1rem;
  margin-bottom: 0.3rem;
}
.impressum-list li:has(strong) strong {
  display: inline;
  font-size: 1rem;
  text-transform: none;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
}
.impressum-list li:has(strong) strong::before {
  display: none;
}
.impressum-list li {
  position: relative;
}
.impressum-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.42em;
  height: 0.42em;
  background: currentColor;
  -webkit-mask: none;
  mask: none;
}

/* Side-by-side image + text inside a SEO block */
.seo-image-text {
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}

.seo-side-image {
  float: left;
  height: auto;
  max-height: 230px;
  width: auto;
  display: block;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.seo-image-text-body p {
  margin-left: 0;
  max-width: none;
}

@media (max-width: 768px) {
  .seo-image-text {
    padding-bottom: 0;
  }
  .seo-side-image {
    position: static;
    height: auto;
    width: 100%;
    max-height: 170px;
    object-fit: contain;
    margin-bottom: 1rem;
  }
}

.seo-intro-block p.seo-p-caps {
  text-transform: uppercase;
}

.seo-intro-block + .seo-intro-block {
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .seo-section {
    padding: 2.5rem 0;
  }
  .seo-intro-block {
    padding: 0 1.2rem;
  }
  .seo-intro-block + .seo-intro-block {
    margin-top: 2rem;
  }
  .seo-intro-block h2 { font-size: 36pt; white-space: normal; }
  .seo-intro-block h3 { font-size: 16pt; }
  .about-block h3 { font-size: 36pt; }
  .principles-subtitle { font-size: 16pt; }
  .principle h3 { font-size: 16pt; }
  .seo-intro-block li strong { font-size: 16pt; }
  .seo-intro-block p br { display: none; }
  .seo-intro-block p.seo-p-caps br { display: block; }
}

/* ============================================
   LARGE SCREENS (> 1920px) — Layout frozen at 1920px
   Design is pixel-perfect identical to 1920px.
   ============================================ */
@media (min-width: 1921px) {
  html {
    background: #dddee0;
  }
  body {
    max-width: 1920px;
    margin: 0 auto;
  }
  .nav-btn::after {
    top: calc(100% * var(--counter-zoom, 1));
    margin-top: calc(4px * var(--counter-zoom, 1));
    transform: translateY(calc(3px * var(--counter-zoom, 1)));
  }
  .nav-btn:hover::after {
    transform: translateY(0);
  }
  .lb-hero-img {
    height: calc(100vh * var(--counter-zoom, 1) - var(--header-h));
    object-fit: cover;
    object-position: center center;
  }
  .project-page {
    min-height: calc(100vh * var(--counter-zoom, 1) - var(--header-h));
  }
}
