/* =========================
   01 VARIABLES
========================= */

:root {
  color-scheme: light;
  --olive: #80754B;
  --olive-dark: #22311D;
  --cream: #FAF8F4;
  --beige: #E0CDB6;
  --text: #1c2520;
  --text-light: #f8f4ed;
  --muted: #c7b79f;
}

/* =========================
   02 FONTS
========================= */

@font-face {
  font-family: 'FogtwoNo5';
  src: url('fontovi/fogtwono5 - GLAVNI/FogtwoNo5.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fontovi/cormorant-garamond - TEKST/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gracylin';
  src: url('fontovi/Gracelyn Handwriting Font - PISANI/gracelynhandwriting.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================
   03 GLOBAL / RESET
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: var(--text);
  background: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.7;
}

img,
video {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1440px, calc(100% - 80px));
  margin: 0 auto;
}

/* =========================
   04 HEADER
========================= */

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 35px 40px;
  background: transparent;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 38px;
}

.main-nav a {
  text-decoration: none;
  color: var(--olive);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid var(--olive);
  background: transparent;
  border-radius: 0;
  transition: all 0.35s ease;
}

.header-cta:hover {
  background: var(--olive);
  color: var(--cream);
}

/* =========================
   05 HERO
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #FAF8F4 0%, #E5D4BE 55%, #D4BEA3 100%);
}

.hero::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.3' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  background-size: 130px 130px;
}

.hero-inner {
  position: relative;
  min-height: 100vh;
  width: 100%;
  z-index: 1;
}

.hero-copy {
  position: absolute;
  top: 14%;
  left: 10%;
  width: min(85vw, 1320px);
  z-index: 2;
}

.hero-logo {
  width: min(80vw, 1380px);
  display: block;
  will-change: transform;
  transform-origin: center center;
}

.hero-slogan {
  margin: 5px 0 0;
  color: var(--olive);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 540px;
}

.hero-slogan span {
  font-style: normal;
}

.booth-wrap {
  position: absolute;
  left: 50%;
  bottom: -150px;
  transform: translateX(-50%);
  width: min(54vw, 560px);
  max-width: 620px;
  z-index: 2;
  will-change: transform;
}

.booth-visual {
  position: relative;
  width: 100%;
}

.booth-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 10;
}

.booth-screen {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 45%;
  height: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 5;
  border-radius: 6px;
}

.booth-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.hero-ctas {
  position: absolute;
  left: 50%;
  bottom: 26%;
  transform: translateX(-50%);
  display: flex;
  gap: 80px;
  z-index: 30;
  width: 560px;
  justify-content: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  padding: 0 20px;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: inherit;
  background: var(--beige);
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 0.35s ease;
}

.hero-btn-filled {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
}

.hero-btn-filled:hover {
  background: #6c6343;
  border-color: #6c6343;
}

.hero-btn-outline {
  background: rgba(250, 248, 244, 0.95);
  color: var(--olive);
  border-color: var(--olive);
}

.hero-btn-outline:hover {
  background: var(--olive);
  color: var(--cream);
}

/* =========================
   EQUIPMENT / OPREMA
========================= */

.equipment-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 70px 130px;
  background: #22311D;
  color: var(--beige);
  overflow: hidden;
  isolation: isolate;
}

.equipment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(128, 117, 75, 0.18), transparent 34%),
    linear-gradient(180deg, #22311D, rgba(17, 20, 14, 1));
  pointer-events: none;
}

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

.equipment-header {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.equipment-header .section-label {
  display: block;
  margin-bottom: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.86rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(224, 205, 182, 0.82);
}

.equipment-header h2 {
  margin: 0;
  font-family: 'FogtwoNo5', serif;
  font-size: clamp(3.2rem, 5.2vw, 6rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.035em;
  color: #FAF8F4;
  text-transform: uppercase;
}

.equipment-header p {
  max-width: 540px;
  margin: 22px auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.45;
  color: rgba(250, 248, 244, 0.72);
}

.equipment-stage {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  height: 620px;
  margin: 0 auto;
  perspective: 900px;
  perspective-origin: center center;
}

.equipment-object {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(34vw, 430px);
  transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) translateZ(0) scale(1);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.12s ease-out, filter 0.12s ease-out;
  z-index: 4;
}

.equipment-object img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 45px 55px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 34px rgba(224, 205, 182, 0.12));
}
.equipment-point {
  position: absolute;
  z-index: 5;
  width: 280px;
  color: rgba(250, 248, 244, 0.82);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.equipment-point span {
  display: block;
  white-space: nowrap;
}

.equipment-point::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 220px;
  height: 1px;
  background: rgba(224, 205, 182, 0.42);
}

.equipment-point::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  width: 5px;
  height: 5px;
  background: #E0CDB6;
}

/* leva strana */
.point-tablet,
.point-camera,
.point-screen {
  text-align: left;
}

.point-tablet::before,
.point-camera::before,
.point-screen::before {
  left: 0;
  transform: translateX(90px);
}

.point-tablet::after,
.point-camera::after,
.point-screen::after {
  left: 310px;
}

/* desna strana */
.point-software,
.point-printer,
.point-light {
  text-align: right;
}

.point-software::before,
.point-printer::before,
.point-light::before {
  right: 0;
  transform: translateX(-90px);
}

.point-software::after,
.point-printer::after,
.point-light::after {
  right: 310px;
}

/* pozicije labela */
.point-tablet {
  left: 2%;
  top: 18%;
}

.point-camera {
  left: 6%;
  top: 45%;
}

.point-screen {
  left: 24%;
  bottom: 10%;
}

.point-software {
  right: 4%;
  top: 20%;
}

.point-printer {
  right: 6%;
  top: 48%;
}

.point-light {
  right: 24%;
  bottom: 12%;
}

/* =========================
   06 MEET
========================= */

.meet-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #22311D;
  color: var(--cream);
  --meet-parallax: 0px;
  --meet-scale: 1.06;
}
.meet-section::after {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background: url('assets/meet/meet-bg-final.png?v=7132026') center/cover no-repeat;
  pointer-events: none;
  transform: translate3d(0, var(--meet-parallax), 0) scale(var(--meet-scale));
  transform-origin: center center;
  will-change: transform;
}

.meet-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 49, 29, 0.74) 0%, rgba(34, 49, 29, 0.52) 45%, rgba(34, 49, 29, 0.72) 100%),
    rgba(34, 49, 29, 0.22);
  z-index: 1;
}
.meet-left,
.meet-center,
.meet-right {
  will-change: transform, opacity;
}

.meet-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.75'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.meet-inner {
  position: relative;
  z-index: 3;
  width: min(1440px, calc(100% - 90px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.meet-left {
  align-self: start;
  padding-top: 20px;
}

.meet-left span {
  display: block;
  max-width: 280px;
  font-family: 'Gracylin', cursive;
  font-size: clamp(2.2rem, 3.4vw, 4.2rem);
  line-height: 0.9;
  color: var(--beige);
  text-transform: none;
}

.meet-center {
  max-width: 620px;
  justify-self: center;
  text-align: left;
}

.meet-center p {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.35vw, 1.45rem);
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.88);
}

.meet-right {
  align-self: end;
  justify-self: end;
  padding-bottom: 28px;
  text-align: right;
}

.meet-right span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.72);
}

.meet-right strong {
  display: block;
  margin-top: 4px;
  font-family: 'Gracylin', cursive;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--beige);
  text-transform: none;
}

/* =========================
   06 ABOUT
========================= */

.about-section {
  position: relative;
  min-height: 100vh;
  padding: 110px 70px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--olive);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.75'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.about-media {
  position: relative;
  z-index: 1;
  height: 720px;
  overflow: hidden;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.68) saturate(0.75) contrast(0.95);
}

.about-strips {
  position: absolute;
  left: 7%;
  top: 15%;
  width: 78%;
  height: 68%;
  display: flex;
  gap: 42px;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

.strip-col {
  position: relative;
  width: 28%;
  height: 100%;
  overflow: hidden;
}

.strip-col-1 {
  margin-top: 0;
}

.strip-col-2 {
  margin-top: -6px;
}

.strip-col-3 {
  margin-top: 0;
}

.strip-track {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: stripMoveUp 18s linear infinite;
  will-change: transform;
}

.strip-track.reverse {
  animation: stripMoveDown 20s linear infinite;
}

.strip-track img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.38));
}

@keyframes stripMoveUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes stripMoveDown {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--cream);
}

.about-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 24px;
}

.about-label::after {
  content: "";
  display: block;
  width: 76px;
  height: 1px;
  background: rgba(250,248,244,0.65);
  margin-top: 8px;
}

.about-content h2 {
  margin: 0 0 42px;
  font-family: 'FogtwoNo5', serif;
  font-size: clamp(3.8rem, 5.5vw, 6.4rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.035em;
  color: var(--cream);
}

.about-content h2 span {
  font-family: 'Gracylin', cursive;
  font-size: 0.9em;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--beige);
  text-transform: none;
}

.about-content p {
  margin: 0 0 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1.55;
  color: rgba(250,248,244,0.88);
}

.about-btn {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 72px;
  border: 1px solid rgba(250,248,244,0.65);
  color: var(--cream);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.about-btn:hover {
  background: var(--cream);
  color: var(--olive);
}

/* =========================
   07 GALLERY
========================= */


 .gallery-section {
  position: relative;
  padding: 130px 0 120px;
  background: var(--cream);
  overflow: hidden;
}

.gallery-header {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 70px;
  text-align: center;
}

.gallery-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 24px;
}

.gallery-label::after {
  content: "";
  display: block;
  width: 76px;
  height: 1px;
  background: rgba(128, 117, 75, 0.55);
  margin: 10px auto 0;
}

.gallery-header h2 {
  margin: 0;
  font-family: 'FogtwoNo5', serif;
  font-size: clamp(3.8rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.035em;
  color: var(--olive);
  text-transform: uppercase;
}

.gallery-header p {
  margin: 18px 0 0;
  font-family: 'Gracylin', cursive;
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  line-height: 1;
  color: var(--olive);
  text-transform: none;
}

.gallery-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: galleryMove 42s linear infinite;
  will-change: transform;
}

.gallery-marquee:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-card {
  flex: 0 0 auto;
  width: 360px;
  height: 470px;
  overflow: hidden;
  border-radius: 0;
  background: var(--beige);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: contrast(1.04) saturate(1.03);
}

@keyframes galleryMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 14px));
  }
}

/* =========================
   08 FAQ
========================= */

.faq-section {
  padding: 120px 0;
  background: #22311D;
  color: #E0CDB6;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.faq-header {
  grid-column: 1 / -1;
}

.faq-header .section-label,
.faq-header span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #E0CDB6;
}

.faq-header h2 {
  margin: 18px 0 0;
  font-family: 'FogtwoNo5', serif;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.035em;
  color: #E0CDB6;
  text-transform: uppercase;
}

.faq-item {
  border-top: 1px solid rgba(224, 205, 182, 0.22);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: transparent;
  border: none;
  color: #E0CDB6;
  padding: 24px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-question span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  color: #E0CDB6;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 1.45rem;
  line-height: 1;
  transition: color 0.35s ease;
}

.faq-question:hover span {
  color: #FAF8F4;
  background: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.55;
  color: #FAF8F4;
}

.faq-item.open .faq-answer {
  max-height: 240px;
}

/* =========================
   09 NEWSLETTER
========================= */

.newsletter-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  overflow: hidden;
}

.newsletter-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAF8F4;
  overflow: hidden;
}

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

.newsletter-left-inner {
  position: relative;
  z-index: 1;
  width: min(520px, 78%);
  text-align: center;
}

.newsletter-small {
  margin-bottom: 38px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--olive);
}

.newsletter-booth {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 28px 34px rgba(34, 49, 29, 0.20));
}

.newsletter-left-text {
  margin-top: 34px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
}

.newsletter-left-text span {
  font-family: 'Gracylin', cursive;
  font-size: 1.8rem;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 6px;
}

.newsletter-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 70px;
  background: #E0CDB6;
  color: #22311D;
}

.newsletter-right::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.75'/%3E%3C/svg%3E");
  background-size: 170px 170px;
}
.newsletter-content {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
}

.newsletter-label {
  margin-bottom: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(34, 49, 29, 0.72);
}
.newsletter-content h2 {
  margin: 0 0 26px;
  font-family: 'FogtwoNo5', serif;
  font-size: clamp(3rem, 4.8vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  color: #22311D;
}

.newsletter-content p {
  margin: 0 0 38px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.45;
  color: rgba(34, 49, 29, 0.82);
}

.newsletter-form {
  display: grid;
  gap: 14px;
}

.newsletter-form input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(34, 49, 29, 0.55);
  background: transparent;
  color: #22311D;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  border-radius: 0;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(34, 49, 29, 0.58);
}

.newsletter-form input:focus {
  border-color: #22311D;
}

.newsletter-form button {
  width: 100%;
  height: 58px;
  border: 1px solid #22311D;
  background: #22311D;
  color: #FAF8F4;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.35s ease;
}

.newsletter-form button:hover {
  background: transparent;
  color: #22311D;
}

/* =========================
   10 FOOTER
========================= */

/* =========================
   FOOTER
========================= */

.footer-section {
  position: relative;
  padding: 120px 70px;
  background: #22311D;
  color: #22311D;
  overflow: hidden;
}

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

.footer-card {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
  background: #E0CDB6;
  color: #22311D;
  border: 1px solid rgba(250, 248, 244, 0.18);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
  padding: 56px 70px 52px;
}

.footer-logo {
  width: 185px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 430px;
  margin: 0 0 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.45;
  color: rgba(34, 49, 29, 0.82);
}

.footer-form {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 430px;
}

.footer-form input {
  flex: 1;
  height: 44px;
  border: none;
  border-bottom: 1px solid rgba(34, 49, 29, 0.55);
  background: transparent;
  color: #22311D;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
}

.footer-form input::placeholder {
  color: rgba(34, 49, 29, 0.62);
}

.footer-form button {
  height: 42px;
  padding: 0 28px;
  border: 1px solid #22311D;
  background: #22311D;
  color: #FAF8F4;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.35s ease;
}

.footer-form button:hover {
  background: transparent;
  color: #22311D;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.86rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #22311D;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(34, 49, 29, 0.78);
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #22311D;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 70px;
  border-top: 1px solid rgba(34, 49, 29, 0.35);
}

.footer-bottom p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(34, 49, 29, 0.82);
}

.footer-bottom div {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-bottom a {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(34, 49, 29, 0.78);
}

.footer-bottom a:hover {
  color: #22311D;
}


/* =========================
   11 RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .site-header {
    padding: 24px 32px;
  }

  .hero-copy {
    margin-top: 60px;
    margin-left: 8%;
    max-width: 86vw;
  }

  .hero-logo {
    width: 86vw;
  }

  .booth-visual {
    width: min(780px, 92vw);
  }
}

@media (max-width: 980px) {
  .about-section {
    grid-template-columns: 1fr;
    padding: 80px 28px;
    gap: 50px;
  }

  .about-media {
    height: 560px;
  }

  .about-content h2 {
    font-size: 3.7rem;
  }

  .about-content p {
    font-size: 1.22rem;
  }

  .about-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: static;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
  }

  .site-header {
    padding: 20px 24px;
  }

  .hero-copy {
    margin-left: 6%;
    margin-top: 48px;
  }

  .hero-logo {
    width: 90vw;
  }

  .booth-visual {
    width: min(720px, 95vw);
  }

  .hero-ctas {
    flex-direction: column;
    bottom: 3%;
  }

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

  .newsletter-form {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-logo {
    width: 92vw;
  }

  .hero-slogan {
    font-size: 0.95rem;
  }

  .hero-ctas {
    width: 100%;
  }

  .hero-btn {
    min-width: auto;
    width: 100%;
  }
}
.gallery-section {
  padding: 90px 0;
}

.gallery-header {
  margin-bottom: 46px;
}

.gallery-card {
  width: 260px;
  height: 350px;
}

.gallery-track {
  gap: 18px;
  animation-duration: 34s;
}

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

  .newsletter-left {
    min-height: 520px;
    padding: 70px 24px;
  }

  .newsletter-right {
    padding: 70px 28px;
  }

  .newsletter-content h2 {
    font-size: 3.2rem;
  }
}
@media (max-width: 980px) {
  .meet-section {
    min-height: auto;
    padding: 100px 0;
  }

  .meet-inner {
    width: min(100%, calc(100% - 56px));
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .meet-left,
  .meet-right {
    align-self: auto;
    justify-self: start;
    text-align: left;
    padding: 0;
  }

  .meet-center {
    justify-self: start;
  }
}
@media (max-width: 900px) {
  .footer-section {
    padding: 80px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 46px 34px;
  }

  .footer-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-form button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 34px;
  }
}
@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .package-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .packages-hero {
    padding: 130px 24px 80px;
  }

  .packages-heading h1 {
    font-size: 3.6rem;
  }

  .packages-heading p {
    font-size: 1.15rem;
  }

  .package-card {
    padding: 44px 28px 34px;
  }

  .package-card h2 {
    font-size: 2.35rem;
  }

  .package-price-list div {
    grid-template-columns: 44px 1fr 96px;
    gap: 12px;
  }
}


/* =========================================================
   12 FULL RESPONSIVE SYSTEM
   Shared header, mobile navigation and homepage layouts
========================================================= */

body {
  overflow-x: hidden;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1002;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(128, 117, 75, 0.55);
  background: rgba(250, 248, 244, 0.38);
  color: var(--olive-dark);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.32s ease, opacity 0.25s ease, top 0.32s ease;
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }

.nav-toggle.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-nav-cta {
  display: none;
}

.hero {
  width: 100%;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 26px 28px;
  }

  .main-nav {
    gap: 24px;
  }

  .main-nav a {
    font-size: 0.84rem;
    letter-spacing: 0.18em;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: 0.72rem;
  }

  .equipment-section,
  .about-section,
  .footer-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .equipment-point {
    width: 230px;
  }

  .equipment-point::before {
    width: 165px;
  }

  .point-tablet::after,
  .point-camera::after,
  .point-screen::after {
    left: 255px;
  }

  .point-software::after,
  .point-printer::after,
  .point-light::after {
    right: 255px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, 760px);
  }

  .site-header {
    padding: 20px;
  }

  .header-inner,
  .site-header .header-inner {
    width: 100%;
    min-height: 52px;
    margin: 0 auto;
  }

  .logo {
    position: relative;
    z-index: 1002;
  }

  .logo img {
    height: 52px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .header-right {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1000;
    transform: translateY(-18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 120px 28px 48px;
    background:
      linear-gradient(rgba(250, 248, 244, 0.96), rgba(224, 205, 182, 0.98)),
      var(--cream);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease, transform 0.32s ease;
  }

  .main-nav::before {
    content: "BOOTH STUDIO";
    margin-bottom: 10px;
    font-family: 'FogtwoNo5', serif;
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    line-height: 0.9;
    color: rgba(34, 49, 29, 0.13);
  }

  .main-nav a {
    color: var(--olive-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .main-nav .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(330px, 100%);
    min-height: 52px;
    margin-top: 12px;
    border: 1px solid var(--olive-dark);
    background: var(--olive-dark);
    color: var(--cream);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero,
  .hero-inner {
    min-height: max(100svh, 860px);
  }

  .hero-copy {
    top: 122px;
    left: 20px;
    width: calc(100% - 40px);
    margin: 0;
    text-align: center;
  }

  .hero-logo {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-slogan {
    max-width: none;
    margin-top: 12px;
    font-size: 1rem;
    letter-spacing: 0.22em;
  }

  .booth-wrap {
    width: min(52vw, 460px);
    min-width: 350px;
    bottom: -92px;
  }

  .hero-ctas {
    width: min(680px, calc(100vw - 40px));
    gap: 12px;
    bottom: 18%;
  }

  .hero-btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: 48px;
    padding: 0 14px;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .meet-section {
    min-height: auto;
    padding: 92px 0;
  }

  .meet-section::after {
    inset: -3%;
    transform: scale(1.04);
    background-position: 58% center;
  }

  .meet-inner {
    width: min(100% - 40px, 720px);
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .meet-left,
  .meet-center,
  .meet-right {
    max-width: 100%;
    justify-self: start;
    align-self: auto;
    padding: 0;
    text-align: left;
  }

  .meet-left span {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .meet-center p {
    font-size: 1.12rem;
  }

  .meet-right {
    margin-top: 6px;
  }

  .equipment-section {
    min-height: auto;
    padding: 90px 24px 96px;
  }

  .equipment-header {
    margin-bottom: 54px;
  }

  .equipment-header h2 {
    font-size: clamp(2.8rem, 10vw, 4.8rem);
  }

  .equipment-stage {
    width: min(680px, 100%);
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "object object"
      "tablet software"
      "camera printer"
      "screen light";
    gap: 0 18px;
    perspective: none;
  }

  .equipment-object {
    grid-area: object;
    position: relative;
    left: auto;
    top: auto;
    width: min(68vw, 340px);
    margin: 0 auto 46px;
    transform: none !important;
    transition: none;
  }

  .equipment-point {
    position: relative;
    inset: auto;
    width: auto;
    min-width: 0;
    padding: 15px 4px;
    border-top: 1px solid rgba(224, 205, 182, 0.26);
    text-align: left;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .equipment-point span {
    white-space: normal;
  }

  .equipment-point::before,
  .equipment-point::after {
    display: none;
  }

  .point-tablet { grid-area: tablet; }
  .point-camera { grid-area: camera; }
  .point-screen { grid-area: screen; }
  .point-software { grid-area: software; }
  .point-printer { grid-area: printer; }
  .point-light { grid-area: light; }

  .point-software,
  .point-printer,
  .point-light {
    text-align: right;
  }

  .about-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 90px 24px;
  }

  .about-media {
    width: min(680px, 100%);
    height: clamp(430px, 78vw, 620px);
    margin: 0 auto;
  }

  .about-strips {
    left: 5%;
    width: 90%;
    gap: 18px;
  }

  .about-content {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .about-content h2 {
    margin-bottom: 30px;
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .about-content p {
    font-size: 1.15rem;
  }

  .about-btn {
    width: min(360px, 100%);
    height: 58px;
  }

  .gallery-section {
    padding: 90px 0 86px;
  }

  .gallery-header {
    width: calc(100% - 40px);
    margin-bottom: 46px;
  }

  .gallery-header h2 {
    font-size: clamp(3rem, 12vw, 5.4rem);
  }

  .gallery-card {
    width: 270px;
    height: 360px;
  }

  .gallery-track {
    gap: 18px;
    animation-duration: 34s;
  }

  .faq-section {
    padding: 88px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-header {
    margin-bottom: 34px;
  }

  .faq-header h2 {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
  }

  .faq-question {
    gap: 18px;
    padding: 21px 0;
    text-align: left;
    font-size: 0.88rem;
    letter-spacing: 0.14em;
    line-height: 1.35;
  }

  .faq-answer p {
    font-size: 1.05rem;
  }

  .newsletter-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .newsletter-left {
    min-height: 540px;
    padding: 72px 24px;
  }

  .newsletter-left-inner {
    width: min(430px, 88%);
  }

  .newsletter-booth {
    max-height: 380px;
  }

  .newsletter-right {
    padding: 84px 24px;
  }

  .newsletter-content h2 {
    font-size: clamp(3.1rem, 12vw, 5rem);
  }

  .footer-section {
    padding: 74px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
    padding: 42px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-form {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 32px);
  }

  .site-header {
    padding: 16px;
  }

  .logo img {
    height: 46px;
  }

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

  .hero,
  .hero-inner {
    min-height: max(100svh, 820px);
  }

  .hero-copy {
    top: 105px;
    left: 16px;
    width: calc(100% - 32px);
  }

  .hero-slogan {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .booth-wrap {
    width: min(93vw, 390px);
    min-width: 0;
    bottom: -72px;
  }

  .hero-ctas {
    width: calc(100vw - 32px);
    bottom: 13%;
    flex-direction: column;
    gap: 9px;
  }

  .hero-btn {
    flex: none;
    width: 100%;
    height: 44px;
    font-size: 0.67rem;
  }

  .equipment-section,
  .about-section,
  .faq-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .equipment-header p {
    font-size: 1.05rem;
  }

  .equipment-object {
    width: min(78vw, 300px);
  }

  .about-media {
    height: 430px;
  }

  .about-strips {
    top: 12%;
    height: 74%;
    gap: 10px;
  }

  .strip-track {
    gap: 18px;
  }

  .about-content h2 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
  }

  .gallery-card {
    width: 230px;
    height: 310px;
  }

  .newsletter-left {
    min-height: 460px;
    padding: 58px 16px;
  }

  .newsletter-right {
    padding: 70px 20px;
  }

  .newsletter-content p {
    font-size: 1.08rem;
  }

  .footer-section {
    padding: 56px 14px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 36px 22px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-form button {
    width: 100%;
  }

  .footer-bottom {
    padding: 22px;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: 10px;
  }
}

@media (hover: none) {
  .gallery-marquee:hover .gallery-track {
    animation-play-state: running;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

:where(a, button, input):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.faq-question span {
  transition: transform 0.3s ease, color 0.35s ease;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

/* =========================================================
   RESPONSIVE FIX 2 — HERO CENTRIRANJE + VRAĆENE ANIMACIJE
   ========================================================= */

/* Oprema: ulazak elemenata pri skrolu, bez konflikta sa 3D tilt efektom */
.equipment-section.equipment-animate-ready .equipment-header {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.22, 1, .36, 1);
}

.equipment-section.equipment-animate-ready .equipment-object img {
  opacity: 0;
  transform: translateY(46px) scale(0.92);
  transition:
    opacity 1s ease 0.12s,
    transform 1.15s cubic-bezier(.22, 1, .36, 1) 0.12s,
    filter 0.35s ease;
}

.equipment-section.equipment-animate-ready .equipment-point {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.9s cubic-bezier(.22, 1, .36, 1);
}

.equipment-section.equipment-animate-ready .point-tablet,
.equipment-section.equipment-animate-ready .point-camera,
.equipment-section.equipment-animate-ready .point-screen {
  transform: translateX(-58px);
}

.equipment-section.equipment-animate-ready .point-software,
.equipment-section.equipment-animate-ready .point-printer,
.equipment-section.equipment-animate-ready .point-light {
  transform: translateX(58px);
}

.equipment-section.equipment-animate-ready .equipment-point::before,
.equipment-section.equipment-animate-ready .equipment-point::after {
  opacity: 0;
  transition: opacity 0.65s ease;
}

.equipment-section.equipment-animate-ready.is-visible .equipment-header,
.equipment-section.equipment-animate-ready.is-visible .equipment-object img,
.equipment-section.equipment-animate-ready.is-visible .equipment-point {
  opacity: 1;
  transform: translate(0) scale(1);
}

.equipment-section.equipment-animate-ready.is-visible .equipment-point::before,
.equipment-section.equipment-animate-ready.is-visible .equipment-point::after {
  opacity: 1;
}

.equipment-section.equipment-animate-ready.is-visible .point-tablet { transition-delay: 0.28s; }
.equipment-section.equipment-animate-ready.is-visible .point-software { transition-delay: 0.34s; }
.equipment-section.equipment-animate-ready.is-visible .point-camera { transition-delay: 0.44s; }
.equipment-section.equipment-animate-ready.is-visible .point-printer { transition-delay: 0.50s; }
.equipment-section.equipment-animate-ready.is-visible .point-screen { transition-delay: 0.60s; }
.equipment-section.equipment-animate-ready.is-visible .point-light { transition-delay: 0.66s; }

.equipment-section.equipment-animate-ready.is-visible .equipment-point::before,
.equipment-section.equipment-animate-ready.is-visible .equipment-point::after {
  transition-delay: 0.72s;
}

/* Vertikalni stripovi: ponovo neprekidno kretanje gore/dole */
.strip-track {
  animation-name: stripMoveUp;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.strip-track.reverse {
  animation-name: stripMoveDown;
  animation-duration: 17s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

@keyframes stripMoveUp {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, calc(-50% - 14px), 0); }
}

@keyframes stripMoveDown {
  from { transform: translate3d(0, calc(-50% - 14px), 0); }
  to { transform: translate3d(0, 0, 0); }
}

/* Telefon: hero je jedna centrirana vertikalna kompozicija */
@media (max-width: 600px) {
  .hero,
  .hero-inner {
    min-height: max(100svh, 790px);
    height: auto;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 106px 16px 30px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .hero-logo {
    width: min(92vw, 430px);
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-slogan {
    max-width: 100%;
    margin: 10px auto 0;
    padding: 0 8px;
    text-align: center;
    font-size: clamp(0.72rem, 3.25vw, 0.88rem);
    line-height: 1.35;
    letter-spacing: 0.15em;
  }

  .booth-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(82vw, 330px);
    min-width: 0;
    max-width: none;
    margin: -2px auto 0;
    transform: none;
  }

  .booth-visual {
    width: 100%;
    margin: 0 auto;
  }

  .hero-ctas {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(250px, 76vw);
    margin: -6px auto 0;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 9px;
  }

  .hero-btn {
    flex: none;
    width: 100%;
    height: 42px;
    padding: 0 12px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .equipment-section.equipment-animate-ready .point-tablet,
  .equipment-section.equipment-animate-ready .point-camera,
  .equipment-section.equipment-animate-ready .point-screen {
    transform: translateX(-28px);
  }

  .equipment-section.equipment-animate-ready .point-software,
  .equipment-section.equipment-animate-ready .point-printer,
  .equipment-section.equipment-animate-ready .point-light {
    transform: translateX(28px);
  }

  .equipment-section.equipment-animate-ready.is-visible .equipment-point {
    transform: translateX(0);
  }

  .strip-track {
    animation-duration: 12s;
  }

  .strip-track.reverse {
    animation-duration: 14s;
  }
}
/* =========================================
   ANIMACIJA TRAKICA – GORE / DOLE
========================================= */

.about-strips {
  overflow: hidden;
}

.strip-col {
  overflow: hidden;
}

.strip-track {
  --strip-gap: 28px;
  --strip-half-gap: 14px;

  display: flex;
  flex-direction: column;
  gap: var(--strip-gap);

  will-change: transform;
  backface-visibility: hidden;

  animation: stripIdeGore 14s linear infinite !important;
}

/* Srednja trakica ide u suprotnom smeru */
.strip-track.reverse {
  animation: stripIdeDole 16s linear infinite !important;
}

/* Mala razlika u brzini da pokret izgleda prirodnije */
.strip-col-1 .strip-track {
  animation-duration: 14s !important;
}

.strip-col-2 .strip-track {
  animation-duration: 16s !important;
}

.strip-col-3 .strip-track {
  animation-duration: 15s !important;
}

@keyframes stripIdeGore {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(
      0,
      calc(-50% - var(--strip-half-gap)),
      0
    );
  }
}

@keyframes stripIdeDole {
  from {
    transform: translate3d(
      0,
      calc(-50% - var(--strip-half-gap)),
      0
    );
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

/* Manji razmak i malo brža animacija na telefonu */
@media (max-width: 600px) {
  .strip-track {
    --strip-gap: 18px;
    --strip-half-gap: 9px;
  }

  .strip-col-1 .strip-track {
    animation-duration: 11s !important;
  }

  .strip-col-2 .strip-track {
    animation-duration: 13s !important;
  }

  .strip-col-3 .strip-track {
    animation-duration: 12s !important;
  }
}

/* =========================================================
   POPUP — REZERVACIJA TERMINA
========================================================= */

.booking-modal[hidden],
.booking-success[hidden] {
  display: none !important;
}

body.booking-modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 27, 17, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(930px, 100%);
  max-height: calc(100vh - 44px);
  overflow: hidden;
  border: 1px solid rgba(224, 205, 182, 0.82);
  background: #FAF8F4;
  color: #22311D;
  box-shadow: 0 30px 90px rgba(12, 18, 10, 0.38);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.34s cubic-bezier(.22, 1, .36, 1);
}

.booking-modal.is-open .booking-dialog {
  transform: translateY(0) scale(1);
}

.booking-dialog-scroll {
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #80754B #EDE4D8;
}

.booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid rgba(250, 248, 244, 0.45);
  background: rgba(250, 248, 244, 0.08);
  color: #FAF8F4;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.booking-close:hover {
  background: #FAF8F4;
  color: #22311D;
  transform: rotate(4deg);
}

.booking-modal-header {
  position: relative;
  padding: 52px 76px 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(224, 205, 182, 0.16), transparent 32%),
    linear-gradient(135deg, #22311D 0%, #35412D 100%);
  color: #FAF8F4;
}

.booking-modal-header::after {
  content: "potpisom.";
  position: absolute;
  right: 54px;
  bottom: -25px;
  font-family: 'Gracylin', cursive;
  font-size: clamp(5rem, 10vw, 8.5rem);
  line-height: 1;
  color: rgba(224, 205, 182, 0.09);
  pointer-events: none;
  white-space: nowrap;
}

.booking-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #E0CDB6;
}

.booking-modal-header h2 {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0;
  font-family: 'FogtwoNo5', Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FAF8F4;
}

.booking-modal-header p {
  position: relative;
  z-index: 1;
  max-width: 690px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.79);
}

.booking-form-content {
  padding: 46px 76px 54px;
  background:
    linear-gradient(rgba(250, 248, 244, 0.96), rgba(250, 248, 244, 0.96)),
    url("assets/backgrounds/hero-cream-texture.jpg") center/cover;
}

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

.booking-field {
  min-width: 0;
}

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

.booking-field label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #22311D;
}

.booking-field label span,
.booking-consent b {
  color: #80754B;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(34, 49, 29, 0.24);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.66);
  color: #22311D;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.04rem;
  line-height: 1.3;
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.booking-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #80754B 50%),
    linear-gradient(135deg, #80754B 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 23px,
    calc(100% - 15px) 23px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.booking-field textarea {
  min-height: 118px;
  resize: vertical;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(34, 49, 29, 0.48);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: #80754B;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(128, 117, 75, 0.1);
}

.booking-field small {
  display: block;
  margin-top: 8px;
  font-size: 0.94rem;
  line-height: 1.35;
  color: rgba(34, 49, 29, 0.66);
}

.booking-duration {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 13px 16px;
  border-left: 3px solid #80754B;
  background: rgba(224, 205, 182, 0.36);
}

.booking-duration span {
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34, 49, 29, 0.69);
}

.booking-duration strong {
  font-family: 'FogtwoNo5', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: right;
  color: #22311D;
}

.booking-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.booking-consent input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: #80754B;
}

.booking-consent span {
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(34, 49, 29, 0.78);
}

.booking-note {
  margin: -4px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(34, 49, 29, 0.14);
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.45;
  color: rgba(34, 49, 29, 0.63);
}

.booking-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.98rem;
  line-height: 1.4;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border: 1px solid rgba(130, 45, 45, 0.28);
  background: rgba(130, 45, 45, 0.08);
  color: #742b2b;
}

.booking-actions {
  display: flex;
  justify-content: flex-end;
}

.booking-submit,
.booking-success button {
  min-width: 220px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid #22311D;
  border-radius: 0;
  background: #22311D;
  color: #FAF8F4;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.28s ease, color 0.28s ease, opacity 0.28s ease;
}

.booking-submit:hover,
.booking-success button:hover {
  background: transparent;
  color: #22311D;
}

.booking-submit:disabled {
  opacity: 0.58;
  cursor: wait;
}

.booking-success {
  min-height: 430px;
  padding: 80px 54px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(224, 205, 182, 0.26), transparent 42%),
    #FAF8F4;
}

.booking-success > span {
  display: block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #80754B;
}

.booking-success h3 {
  margin: 0;
  font-family: 'FogtwoNo5', Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1;
  color: #22311D;
}

.booking-success p {
  max-width: 520px;
  margin: 24px auto 34px;
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(34, 49, 29, 0.72);
}

@media (max-width: 760px) {
  .booking-modal {
    place-items: end center;
    padding: 0;
  }

  .booking-dialog {
    width: 100%;
    max-height: 94vh;
    border-width: 1px 0 0;
  }

  .booking-dialog-scroll {
    max-height: 94vh;
  }

  .booking-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .booking-modal-header {
    padding: 52px 24px 34px;
  }

  .booking-modal-header h2 {
    max-width: calc(100% - 28px);
    font-size: clamp(2.55rem, 12vw, 3.9rem);
  }

  .booking-modal-header p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .booking-modal-header::after {
    right: 12px;
    bottom: -12px;
    font-size: 5.2rem;
  }

  .booking-form-content {
    padding: 30px 20px 38px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .booking-field-full {
    grid-column: auto;
  }

  .booking-duration {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .booking-duration strong {
    text-align: left;
  }

  .booking-actions {
    justify-content: stretch;
  }

  .booking-submit,
  .booking-success button {
    width: 100%;
    min-width: 0;
  }

  .booking-success {
    min-height: 390px;
    padding: 70px 24px 50px;
  }
}
