html {
  overflow-x: hidden;
}

:root {
  --white: #ffffff;
  --black: #111111;
  --light-line: rgba(255, 255, 255, 0.72);
  --brick: #b0472f;
  --brick-dark: #8f3724;
  --brick-soft: #d98a6a;
  --hero-accent: var(--brick);
  --page-padding: 42px;
  --topbar-height: 48px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000000;
  color: var(--black);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.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;
}

main {
  background: #ffffff;
  margin-top: var(--topbar-height);
}


/* TOP BAR */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-padding);
  background: #fff;
  transition: background 0.35s ease;
}



.topbar--dark {
  background: #000000;
}

.topbar--dark .brand,
.topbar--dark .desktop-nav a,
.topbar--dark .menu-toggle {
  color: #ffffff;
}

.topbar--dark .menu-toggle.is-open,
.menu-toggle.is-open {
  color: #111111;
}

body:has(.menu-toggle.is-open) .topbar,
body:has(.menu-toggle.is-open) .topbar--dark {
  background: transparent;
  pointer-events: none;
}

body:has(.menu-toggle.is-open) .topbar .brand,
body:has(.menu-toggle.is-open) .topbar .desktop-nav {
  opacity: 0;
  pointer-events: none;
}

body:has(.menu-toggle.is-open) .menu-toggle {
  pointer-events: auto;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0em;
  text-decoration: none;
  color: var(--black);
  transition: color 0.35s ease;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 46px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.35s ease;
}

/* HERO */
.hero {
  position: relative;
  width: calc(100% - 84px);
  margin: 0 auto;
  height: calc(100svh - var(--topbar-height));
  min-height: calc(100svh - var(--topbar-height));
  overflow: hidden;
  background: #ffffff;

}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) sepia(0.35) saturate(1.15) brightness(1.02) blur(4px);
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-title-wrap {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  max-width: 86%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  font-size: clamp(130px, 20vw, 300px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  white-space: nowrap;
  animation: titleReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title span {
  font-size: 0.5em;
  vertical-align: top;
  position: relative;
  top: 0.1em;
  margin-left: 0.02em;
}

.hero-logo {
  display: block;
  width: clamp(155px, 26vw, 369px);
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.hero-subtitle {
  margin: 15px auto 0;
  align-self: center;
  width: fit-content;
  max-width: 92%;
  color: var(--hero-accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  animation: titleReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.hero-bottom-nav {
  position: absolute;
  left: 50%;
  bottom: 46px;
  transform: translateX(-50%);
  width: 82%;
  padding: 13px 0 15px;
  border-top: 1px solid var(--hero-accent);
  border-bottom: 1px solid var(--hero-accent);
  overflow: hidden;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.hero-bottom-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.hero-bottom-track a {
  text-decoration: none;
  color: var(--hero-accent);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 400;
  line-height: 1;
  padding: 8px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

.scroll-indicator svg {
  display: block;
  animation: floatArrow 1.8s ease-in-out infinite;
}

@keyframes floatArrow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* SECOND SECTION */

.intro-section {
  background: #ffffff;
  padding: 0 42px 0;
}

.intro-top {
  display: grid;
  grid-template-columns: 460px 1fr;
  column-gap: 95px;
  align-items: stretch;
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  padding: 72px 0 72px;

}

.intro-image-wrap {
  width: 100%;
  overflow: hidden;
}

.intro-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-section.in-view .intro-image {
  opacity: 1;
  transform: translateY(0);
}

.intro-text-wrap {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: #111111;
  max-width: 780px;
  overflow: hidden;
}

.intro-line {
  display: block;
  opacity: 0;
  transform: translateY(-110%);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-line:nth-child(2) {
  transition-delay: 0.15s;
}

.intro-line:nth-child(3) {
  transition-delay: 0.3s;
}

.intro-section.in-view .intro-line {
  opacity: 1;
  transform: translateY(0);
}

.intro-text {
  max-width: 500px;
  margin-left: auto;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: -0.02em;
  color: #222222;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.intro-section.in-view .intro-text {
  opacity: 1;
  transform: translateY(0);
}

.intro-bottom {
  margin-top: 110px;
  display: grid;
  grid-template-columns: 460px 1fr;
  column-gap: 95px;
  align-items: start;
}

.intro-large-image-wrap {
  width: 100%;
  margin-top: 120px;
}

.intro-large-image {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.intro-side-column {
  width: 100%;
  max-width: 620px;
  margin-left: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 140px;
  padding-top: 0;
}

.intro-small-image-wrap {
  width: 100%;
  max-width: 620px;
}

.intro-small-image {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.intro-cta {
  width: 180px;
  height: 180px;
  margin-left: 140px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.intro-cta:hover {
  transform: scale(1.06);
  background: #ffffff;
  color: #000000;
}

.intro-cta span {
  display: block;
}

/* TECHNIQUES SECTION */
.techniques-section {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  background: #000000;
  color: #ffffff;
  padding: 40px 12px 0;
  margin-bottom: 0;
  overflow: hidden;

}

.techniques-scroll-arrow {
  display: none;
}

.techniques-inner {
  position: relative;
  height: calc(100svh - 150px);
  min-height: calc(100svh - 150px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px 70px 40px;
}

/* zid sa diplomama - jedva vidljiva pozadina iza brojača */
.techniques-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('diplome.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) contrast(0.9);
  opacity: 0.3;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 32%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, #000 32%, transparent 80%);
  pointer-events: none;
}

.techniques-number-wrap,
.techniques-text-wrap {
  position: relative;
  z-index: 1;
}

.techniques-number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  height: 100%;
  position: relative;
}

.techniques-number {
  margin-top: -25px;
  display: block;
  font-family: 'Inter', serif;
  font-size: clamp(260px, 34vw, 620px);
  line-height: 0.82;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.techniques-echo {
  position: absolute;
  display: block;
  font-family: 'Inter', serif;
  font-size: clamp(260px, 34vw, 620px);
  line-height: 0.82;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 1;
  margin-top: -25px;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.techniques-number-wrap.changing .techniques-number,
.techniques-number-wrap.changing .techniques-echo {
  opacity: 0;
}

.techniques-text-wrap {
  max-width: 470px;
  align-self: center;
}

.techniques-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 6.2vw, 96px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.techniques-text {
  margin-top: 34px;
  max-width: 420px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.techniques-marquee {
  position: relative;
  left: 0;
  right: 0;
  height: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.techniques-marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: techniquesMarquee 18s linear infinite;
}

.techniques-marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 24px);
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

.techniques-marquee--reverse {
  margin-top: 0;
  border-top: none;
}

.techniques-marquee--reverse .techniques-marquee-track {
  animation-direction: reverse;
}

@keyframes techniquesMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* SERVICES SECTION */
.services-section {
  position: relative;
  isolation: isolate;
  background: #000000;
  padding: 0 14px 0;
  margin-top: 0;
}

.services-section::after {
  display: none;
}

.services-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 3;
}

.services-grid-line-left {
  left: 58%;
}

.services-grid-line-center {
  display: none;
}

.services-grid-line-right {
  right: 84px;
}

.service-row {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: stretch;
  position: relative;

  overflow: hidden;
}

.service-row::before {
  display: none;
}

.service-left {
  padding: 56px 5vw 56px 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.service-count {
  position: absolute;
  top: 56px;
  left: 84px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row.in-view .service-count {
  opacity: 1;
  transform: translateY(0);
}

.service-left .service-title {
  margin-top: 48px;
}

.service-count span {
  margin: 0 8px;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(86px, 7.3vw, 122px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #ffffff;
  max-width: 740px;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  overflow: hidden;
  padding-bottom: 0.15em;
}

.service-line-down,
.service-line-up {
  display: block;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-line-down {
  transform: translateY(-100%);
}

.service-line-up {
  transform: translateY(100%);
}

.service-row.in-view .service-line-down,
.service-row.in-view .service-line-up {
  opacity: 1;
  transform: translateY(0);
}

.service-text {
  margin-top: 26px;
  max-width: 470px;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.service-row.in-view .service-text {
  opacity: 1;
  transform: translateY(0);
}

.service-center {
  position: static;
}

.service-button {
  width: 192px;
  height: 192px;
  border: 1px solid var(--brick);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--brick);
  position: absolute;
  z-index: 5;
  left: 58%;
  top: 35%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  padding: 8px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.service-button:hover {
  background: var(--brick-dark);
  color: #ffffff;
  border-color: var(--brick-dark);
  transform: translate(-50%, -50%) scale(1.06);
}

.service-row:last-child .service-button {
  top: 35%;
  transform: translate(-50%, -50%);
}

.service-right {
  position: absolute;
  left: calc(58% + 3px);
  right: 84px;
  /* match grid line right */
  top: 35%;
  height: 50%;
  z-index: 1;
  display: flex;
  overflow: hidden;
}

.service-right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1.15);
  transform-origin: center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row.in-view .service-right img {
  transform: scale(1);
}

.services-extended {
  background: #000000;
  color: #ffffff;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  flex: 0 0 100dvh;
  display: flex;
  align-items: center;
  padding: 0 var(--page-padding);
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
}

.services-extended-title {
  width: 100%;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.4vw, 54px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #ffffff;
  padding: 64px 200px 64px 0;
  overflow: hidden;
}

.services-extended-title span {
  display: block;
  opacity: 0;
  transform: translateY(-110%);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-extended-title span:nth-child(2) {
  transition-delay: 0.15s;
}

.services-extended-title span:nth-child(3) {
  transition-delay: 0.3s;
}

.services-extended-title span:nth-child(4) {
  transition-delay: 0.45s;
}

.services-extended-title span:nth-child(5) {
  transition-delay: 0.6s;
}

.services-extended.in-view .services-extended-title span {
  opacity: 1;
  transform: translateY(0);
}

.services-extended-indent {
  padding-left: 23.5%;
}

/* REVIEWS */
.reviews-section {
  background: #0a0a0a;
  color: #ffffff;
  padding: 96px 0 104px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.reviews-head {
  padding: 0 84px;
  margin-bottom: 56px;
}

.reviews-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brick-soft);
  margin-bottom: 14px;
}

.reviews-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.reviews-marquee {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: reviewsMarquee 70s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 auto;
  width: clamp(320px, 34vw, 520px);
  margin-right: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.review-stars {
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--brick-soft);
  line-height: 1;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.94);
  flex-grow: 1;
}

/* duga recenzija - kartica ostaje iste visine, tekst se skrola */
.review-card--long .review-text {
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--brick-soft) rgba(255, 255, 255, 0.12);
  -webkit-mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
}

.review-card--long .review-text:focus-visible {
  outline: 2px solid var(--brick-soft);
  outline-offset: 4px;
}

.review-card--long .review-text::-webkit-scrollbar {
  width: 4px;
}

.review-card--long .review-text::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
}

.review-card--long .review-text::-webkit-scrollbar-thumb {
  background: var(--brick-soft);
  border-radius: 2px;
}

.review-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.review-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.review-source {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes reviewsMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.portrait-cta-button {
  width: 192px;
  height: 192px;
  border: 1px solid var(--brick);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--brick);
  position: absolute;
  z-index: 5;
  right: var(--page-padding);
  bottom: 64px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  padding: 8px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.services-extended.in-view .portrait-cta-button {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.8s;
}

.portrait-cta-button:hover {
  background: var(--brick-dark);
  color: #ffffff;
  border-color: var(--brick-dark);
  transform: scale(1.05);
}

/* BOOKING PAGE */
.booking-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 42px 40px;
}

.booking-container {
  width: 100%;
  max-width: 680px;
}

.booking-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #111111;
  margin-bottom: 12px;
}

.booking-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 32px;
  max-width: 460px;
}

.booking-form {
  width: 100%;
}

.form-feedback {
  margin-bottom: 24px;
}

[data-fs-success],
[data-fs-error] {
  display: none;
  padding: 16px 20px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

[data-fs-success].fs-active {
  display: block;
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.2);
}

[data-fs-error].fs-active {
  display: block;
  background: rgba(198, 40, 40, 0.1);
  color: #c62828;
  border: 1px solid rgba(198, 40, 40, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #111111;
}

.form-group input,
.form-group select {
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 1px solid #d4d4d4;
  border-radius: 0;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #111111;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #111111;
}

.form-group input::placeholder {
  color: #aaaaaa;
}

.booking-button {
  margin-top: 16px;
  width: 180px;
  height: 52px;
  border: none;
  background: var(--brick);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.booking-button:hover {
  opacity: 0.85;
}

.booking-back {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #111111;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.booking-back:hover {
  opacity: 0.6;
}

/* MOBILE NAV */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 24px 20px;
  background: #fff;
  border-top: 1px solid #eee;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 14px;
}

/* EXTRA CONTENT */
.content-section {
  min-height: 100vh;
  padding: 100px 40px;
}

.content-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

/* PORTRAIT SECTION */
.portrait-section {
  background: #000000;
  color: #ffffff;
  padding: 84px 84px 80px;
  scroll-margin-top: var(--topbar-height);
}

.portrait-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 84px;
  align-items: start;
}

.portrait-grid--reverse {
  grid-template-columns: 0.5fr 1.5fr;
}

.portrait-grid + .portrait-grid {
  margin-top: 120px;
  padding-top: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.portrait-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 60px);
  line-height: 0.93;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.portrait-name-block {
  margin-top: 48px;
}

.portrait-name-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.portrait-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.portrait-img-wrap {
  border: 1px solid rgba(255, 255, 255, 0.45);
  overflow: hidden;
  margin-bottom: 24px;
  width: 100%;
}

.portrait-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.portrait-quote {
  opacity: 0;
  transform: translateY(24px);
  animation: portraitQuoteIn 1.1s cubic-bezier(.22,.61,.36,1) 0.2s forwards;
}

.portrait-grid--reverse .portrait-quote {
  animation-delay: 0.35s;
}

@keyframes portraitQuoteIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.portrait-description {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: -0.01em;
}

/* CATEGORIES SECTION */
.categories-section {
  background: #000000;
  color: #ffffff;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 84px;
  scroll-margin-top: var(--topbar-height);
}

.categories-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  margin-bottom: 56px;
  opacity: 0;
  transition: opacity 0.6s ease 0.1s;
}

.categories-section.in-view .categories-label {
  opacity: 1;
}

.category-row {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  color: #ffffff;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.categories-section.in-view .category-row:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
}

.categories-section.in-view .category-row:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.13s;
}

.categories-section.in-view .category-row:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}

.category-row:hover .category-title {
  transform: translateX(8px);
}

.category-row:hover .category-arrow {
  transform: translateX(20px);
}

.category-row-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.category-count {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.category-count span {
  margin: 0 8px;
}

.category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 4.2vw, 72px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.category-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.04em;
}

.category-arrow {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* SERVICE SUBTYPES (rows without images) */
.service-right--subtypes {
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  overflow: visible;
  align-items: stretch;
  padding: 0 84px 0 112px;
}

.service-subtypes {
  width: 100%;
}

.service-subtype {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2vw, 34px);
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: -0.03em;
}

.service-subtype:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-right--subtypes .service-subtype {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row.in-view .service-right--subtypes .service-subtype:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.service-row.in-view .service-right--subtypes .service-subtype:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.45s;
}

.service-row.in-view .service-right--subtypes .service-subtype:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.service-row.in-view .service-right--subtypes .service-subtype:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.75s;
}

.service-row.in-view .service-right--subtypes .service-subtype:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.9s;
}

/* STANJA PAGE */
.stanja-page {
  min-height: 100svh;
  background: #ffffff;
  padding: 80px 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stanja-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: #111111;
  margin-bottom: 12px;
}

.stanja-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #666666;
  max-width: 480px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
}

.stanja-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d4d4d4;
}

.stanja-item {
  padding: 24px 40px 24px 0;
  border-bottom: 1px solid #d4d4d4;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.stanja-page.in-view .stanja-item {
  opacity: 1;
  transform: translateY(0);
}

.stanja-item-number {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #767676;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.stanja-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 400;
  color: #111111;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stanja-item-note {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #6f6f6f;
  font-style: normal;
  line-height: 1.5;
}

.stanja-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.stanja-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.stanja-cta-link {
  flex-shrink: 0;
  padding: 16px 36px;
  background: var(--brick);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.stanja-cta-link:hover {
  opacity: 0.8;
}

/* TABLET */
@media (max-width: 1024px) {
  :root {
    --page-padding: 24px;
  }

  .hero {
    width: calc(100% - 48px);
    height: calc(100svh - var(--topbar-height));
    min-height: calc(100svh - var(--topbar-height));
  }

  .desktop-nav {
    gap: 26px;
  }

  .hero-bottom-nav {
    width: 88%;
  }

  .hero-bottom-track {
    gap: 50px;
    animation: marquee 16s linear infinite;
  }

  .intro-section {
    padding: 0 24px 90px;
  }

  .intro-top {
    grid-template-columns: 360px 1fr;
    column-gap: 56px;
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    padding: 64px 0;
  }

  .intro-image {
    height: 100%;
  }

  .intro-text-wrap {
    min-height: 0;
  }

  .intro-title {
    font-size: clamp(56px, 6vw, 80px);
    max-width: 520px;
  }

  .intro-text {
    max-width: 400px;
    font-size: 12px;
  }

  .intro-bottom {
    margin-top: 90px;
    grid-template-columns: 360px 1fr;
    column-gap: 56px;
  }

  .intro-large-image-wrap {
    margin-top: 100px;
  }

  .intro-large-image {
    height: 560px;
  }

  .intro-side-column {
    max-width: 500px;
    margin-left: 500px;
    gap: 100px;
  }

  .intro-small-image-wrap {
    max-width: 500px;
  }

  .intro-small-image {
    height: 330px;
  }

  .intro-cta {
    width: 160px;
    height: 160px;
    margin-left: 100px;
    font-size: 12px;
  }

  .techniques-inner {
    height: calc(100svh - 142px);
    min-height: calc(100svh - 142px);
    padding: 40px 40px 40px;
  }

  .techniques-title {
    font-size: clamp(48px, 6vw, 76px);
  }

  .techniques-text {
    font-size: 12px;
    max-width: 360px;
  }

  .techniques-marquee-track {
    gap: 54px;
    animation: techniquesMarquee 16s linear infinite;
  }

  .service-row {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    grid-template-columns: 56% 44%;
    overflow: hidden;
  }

  .service-row::before {
    left: calc(56% + 3px);
    right: 34px;
    top: 35%;
  }

  .services-grid-line-left {
    left: 56%;
  }

  .services-grid-line-right {
    right: 48px;
  }

  .service-count {
    margin-bottom: 72px;
  }

  .service-title {
    font-size: clamp(64px, 6.2vw, 92px);
    max-width: 420px;
  }

  .service-text {
    max-width: 360px;
    font-size: 12px;
    line-height: 1.5;
  }

  .service-button {
    width: 160px;
    height: 160px;
    left: 56%;
    top: 35%;
    font-size: 13px;
  }

  .service-left {
    padding: 48px 40px 48px 48px;
    justify-content: center;
    position: relative;
  }

  .service-count {
    top: 48px;
    left: 48px;
  }

  .service-left .service-title {
    margin-top: 40px;
  }

  .service-row::before {
    right: 48px;
  }

  .service-right img {
    display: block;
  }

  .services-extended {
    height: auto;
    min-height: 100dvh;
    max-height: none;
    flex: 0 0 auto;
    padding: 72px 48px;
    overflow: visible;
  }

  .services-extended-title {
    font-size: clamp(40px, 5vw, 72px);
    padding: 0 120px 0 0;
  }

  .services-extended-indent {
    padding-left: 20%;
  }

  .booking-page {
    padding: 100px 24px 70px;
  }

  .portrait-section {
    padding: 64px 48px 56px;
  }

  .portrait-grid {
    gap: 40px;
  }

  .portrait-quote {
    font-size: clamp(30px, 3.8vw, 50px);
  }

  .categories-section {
    padding: 64px 48px;
  }

  .category-row {
    grid-template-columns: 260px 1fr auto;
    gap: 32px;
    padding: 32px 0;
  }

  .stanja-page {
    padding: 80px 48px;
  }

  .stanja-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* MOBILE */
.nav-overlay {
  display: none;
}

@media (max-width: 768px) {

  .reviews-section {
    padding: 64px 0 72px;
  }

  .reviews-head {
    padding: 0 18px;
    margin-bottom: 36px;
  }

  .review-card {
    width: 78vw;
    margin-right: 18px;
    padding: 28px 24px;
    gap: 16px;
  }

  .review-text {
    font-size: 19px;
  }

  .review-card--long .review-text {
    max-height: 200px;
    padding-right: 10px;
  }

  .reviews-track {
    animation-duration: 55s;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  :root {
    --topbar-height: 60px;
  }

  .topbar {
    padding: 0 18px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: #111111;
    z-index: 1001;
  }

  .hb {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.25s ease;
    transform-origin: center;
  }

  .menu-toggle.is-open .hb:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-toggle.is-open .hb:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.is-open .hb:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100svh;
    background: #ffffff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .mobile-nav.open {
    transform: translateX(0);
  }

  .mobile-nav a {
    text-decoration: none;
    color: #111111;
    font-size: 30px;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
  }

  .hero {
    width: calc(100% - 24px);
    height: calc(100svh - var(--topbar-height));
    min-height: calc(100svh - var(--topbar-height));
  }

  .hero-title-wrap {
    top: 26px;
    max-width: 92%;
  }

  .hero-title {
    font-size: clamp(90px, 22vw, 160px);
    line-height: 0.9;
    white-space: normal;
  }

  .hero-subtitle {
    margin: 10px auto 0;
    align-self: center;
    color: var(--hero-accent);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .hero-bottom-nav {
    width: 90%;
    bottom: 50px;
    padding: 10px 0 12px;
  }

  .hero-bottom-track {
    gap: 40px;
    animation: marquee 14s linear infinite;
  }

  .hero-bottom-track a {
    font-size: 22px;
  }

  .scroll-indicator {
    bottom: 26px;
    font-size: 34px;
  }

  .intro-section {
    padding: 0 18px 0;
  }

  .intro-top,
  .intro-bottom {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .intro-top {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 72px 0 56px;
  }

  .intro-image-wrap {
    display: none;
  }

  .intro-text-wrap {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .intro-title {
    font-size: clamp(48px, 12vw, 76px);
    max-width: 100%;
    margin: 0 auto;
  }

  .intro-text {
    margin-top: 16px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
  }

  .intro-bottom {
    margin-top: 60px;
  }

  .intro-large-image-wrap {
    margin-top: 0;
  }

  .intro-large-image {
    height: 460px;
  }

  .intro-side-column {
    max-width: 100%;
    margin-left: 0;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding-top: 0;
  }

  .intro-small-image-wrap {
    width: 100%;
    max-width: 100%;
  }

  .intro-small-image {
    width: 100%;
    height: 260px;
  }

  .intro-cta {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    font-size: 11px;
  }

  .techniques-section {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 110px 12px 72px;
  }

  .techniques-inner {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 0 22px 0;
    row-gap: 0;
  }

  .techniques-number-wrap {
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
    margin-top: 12px;
  }

  .techniques-number,
  .techniques-echo {
    font-size: clamp(180px, 42vw, 280px);
    margin-top: 0;
  }

  .techniques-text-wrap {
    max-width: 100%;
    margin-top: 28px;
    text-align: center;
  }

  .techniques-title {
    font-size: clamp(44px, 11vw, 70px);
    text-align: center;
  }

  .techniques-text {
    margin-top: 24px;
    max-width: 100%;
    font-size: 12px;
    text-align: center;
  }

  .techniques-scroll-arrow {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 34px;
    margin-top: 22px;
  }

  .techniques-scroll-arrow span {
    display: inline-block;
    animation: floatArrow 1.8s ease-in-out infinite;
  }

  .techniques-marquee {
    display: none;
  }

  .techniques-marquee-track {
    gap: 38px;
    animation: techniquesMarquee 14s linear infinite;
  }

  .techniques-marquee-track span {
    font-size: 22px;
  }

  .services-section {
    padding: 0 12px 0;
  }

  .services-grid-line {
    display: none;
  }

  .service-row {
    height: auto;
    display: flex;
    flex-direction: column;
    min-height: auto;
    max-height: none;
    padding: 28px 0 36px;
    position: relative;
  }

  .service-row::before {
    display: none;
  }

  .service-left {
    padding: 0 0 24px;
    display: flex;
    flex-direction: column;
  }

  .service-count {
    display: none;
  }

  .service-title {
    font-size: 75px;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .service-text {
    margin-top: 16px;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
  }

  .service-button {
    position: absolute !important;
    bottom: 24px !important;
    right: 24px !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100px;
    height: 100px;
    margin: 0 !important;
    font-size: 11px;
    z-index: 10;
  }

  .service-center {
    position: static;
    margin-bottom: 0;
  }

  .service-right {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    width: 100%;
    margin-top: 20px;
  }

  .service-right img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    margin-bottom: 24px;
  }

  .services-extended {
    height: auto;
    min-height: 100svh;
    max-height: none;
    flex: 0 0 auto;
    padding: 96px 18px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
  }

  .services-extended-title {
    font-size: clamp(28px, 7.5vw, 42px);
    padding: 0;
    margin-bottom: 40px;
    width: 100%;
  }

  .services-extended-indent {
    padding-left: 0;
  }

  .portrait-cta-button {
    position: relative;
    right: auto;
    bottom: auto;
    width: 150px;
    height: 150px;
    font-size: 12px;
    margin-top: 32px;
    align-self: center;
  }

  .booking-page {
    padding: 60px 18px 30px;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .booking-title {
    font-size: clamp(42px, 10vw, 68px);
  }

  .booking-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-group input,
  .form-group select {
    height: 54px;
    font-weight: 500;
  }

  .booking-button {
    width: 160px;
    height: 50px;
  }

  .content-section {
    padding: 72px 20px;
  }

  .content-section h2 {
    font-size: 38px;
  }

  .portrait-section {
    padding: 56px 14px 48px;
  }

  .portrait-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portrait-grid + .portrait-grid {
    margin-top: 80px;
    padding-top: 80px;
  }

  .portrait-quote {
    font-size: clamp(28px, 8vw, 44px);
    line-height: 0.96;
  }

  .portrait-img {
    aspect-ratio: 3 / 4;
  }

  .portrait-description {
    font-size: 11px;
  }

  .categories-section {
    padding: 80px 18px 64px;
    justify-content: flex-start;
  }

  .category-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    padding: 28px 0;
  }

  .category-row-left {
    flex: 1;
    min-width: 0;
  }

  .category-sub {
    width: 100%;
    order: 3;
    padding-top: 4px;
    font-size: 12px;
  }

  .category-arrow {
    order: 2;
    flex-shrink: 0;
    font-size: 22px;
  }

  .category-title {
    font-size: clamp(38px, 9vw, 54px);
  }

  .service-right--subtypes {
    transform: none;
    top: auto;
    padding: 0 14px 0 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .service-subtype {
    font-size: clamp(18px, 5vw, 24px);
    overflow-wrap: break-word;
    padding: 12px 0;
  }

  .stanja-page {
    padding: 60px 18px;
    justify-content: flex-start;
    text-align: center;
  }

  .stanja-title,
  .stanja-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .stanja-grid {
    grid-template-columns: 1fr;
  }

  .stanja-item {
    padding: 24px 0;
    text-align: center;
  }

  .stanja-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
  }

}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .brand {
    font-size: 14px;
  }

  .brand-logo {
    height: 24px;
  }

  .hero {
    width: calc(100% - 16px);
    height: calc(100svh - var(--topbar-height));
    min-height: calc(100svh - var(--topbar-height));
  }

  .hero-title {
    font-size: clamp(76px, 20vw, 120px);
  }

  .hero-subtitle {
    margin: 10px auto 0;
    align-self: center;
    color: var(--hero-accent);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .hero-bottom-track {
    gap: 28px;
    animation: marquee 12s linear infinite;
  }

  .hero-bottom-track a {
    font-size: 20px;
  }

  .intro-section {
    padding: 0 16px 0;
  }

  .intro-top {
    padding: 28px 0 28px;
  }



  .intro-title {
    font-size: clamp(40px, 11vw, 58px);
    line-height: 0.96;
  }

  .intro-text {
    margin-top: 28px;
    font-size: 11px;
  }

  .intro-bottom {
    margin-top: 48px;
  }

  .intro-large-image {
    height: 390px;
  }

  .intro-small-image {
    height: 220px;
  }

  .intro-cta {
    width: 126px;
    height: 126px;
    margin-left: 0;
    font-size: 10px;
  }

  .techniques-inner {
    padding: 0 16px 0;
  }

  .techniques-number,
  .techniques-echo {
    font-size: clamp(140px, 38vw, 220px);
  }

  .techniques-title {
    font-size: clamp(38px, 10vw, 56px);
  }

  .techniques-text {
    font-size: 11px;
  }

  .techniques-marquee {
    display: none;
  }

  .techniques-marquee-track span {
    font-size: 20px;
  }

  .service-title {
    font-size: clamp(60px, 15vw, 75px);
    text-align: center;
  }

  .service-text {
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
  }

  .service-button {
    width: 90px;
    height: 90px;
    font-size: 10px;
    bottom: 16px !important;
    right: 16px !important;
  }

  .service-right {
    height: 240px;
  }

  .service-right img {
    height: 100%;
    min-height: auto;
  }

  .booking-page {
    padding: 50px 16px 20px;
  }

  .booking-subtitle {
    font-size: 12px;
  }

  .form-group label {
    font-size: 11px;
  }

  .form-group input,
  .form-group select {
    font-size: 15px;
    height: 54px;
    font-weight: 500;
  }

  .booking-button {
    width: 150px;
    height: 48px;
    font-size: 12px;
  }

  .portrait-section {
    padding: 28px 12px 46px;
  }

  .portrait-img {
    aspect-ratio: 3 / 4;
  }
}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 56px 84px 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr 1.25fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer-logo {
  display: block;
  height: 38px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-social {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--brick-soft);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.footer-social:hover {
  color: #ffffff;
}

.footer-map {
  width: 100%;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  filter: grayscale(100%) contrast(1.05) brightness(0.9);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer-col-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a {
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-mail {
  overflow-wrap: anywhere;
}

.footer-contact-list p,
.footer-contact-list a {
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 48px 48px 36px;
  }

  .reviews-head {
    padding: 0 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col--map {
    grid-column: 1 / -1;
  }

  .footer-map {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 44px 18px 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
    margin-bottom: 24px;
  }

  .footer-map {
    height: 180px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}