:root {
  --bg: #f7f3ef;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #161616;
  --muted: #67615c;
  --accent: #e34b4c;
  --line: rgba(22, 22, 22, 0.09);
  --shadow: 0 24px 80px rgba(20, 18, 18, 0.09);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(227, 75, 76, 0.08), transparent 28%),
    linear-gradient(180deg, #fcfaf7 0%, var(--bg) 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

body.loader-ready {
  overflow: hidden;
}

html.nav-open,
body.nav-open {
  overflow: hidden;
  height: 100dvh;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 85;
  background: linear-gradient(90deg, rgba(247, 243, 239, 0.1), rgba(227, 75, 76, 0.1));
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  visibility: visible;
  pointer-events: all;
}

.site-loader.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.site-loader__bg {
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 1;
}

.site-loader__inner {
  position: relative;
  z-index: 1;
  width: min(360px, calc(100vw - 3rem));
  padding: 2rem;
  opacity: 0;
}

.site-loader img {
  width: 100%;
  display: block;
}

/* 1) logo fade in nakon 0.5s */
.site-loader.is-logo-enter .site-loader__inner {
  animation: loaderLogoIn 1s ease forwards;
}

/* 2) bg fade out */
.site-loader.is-bg-exit .site-loader__bg {
  animation: loaderBgOut 1s ease forwards;
}

/* 3) logo fade out */
.site-loader.is-logo-exit .site-loader__inner {
  animation: loaderLogoOut 0.7s ease forwards;
}

@keyframes loaderLogoIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderBgOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes loaderLogoOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.98);
  }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgb(245 239 233);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(22, 22, 22, 0.06);
}

.nav-wrap {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    background-color: #f5efe9;
}

.brand img,
.footer-logo {
  width: clamp(180px, 18vw, 250px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.site-nav > a,
.nav-dropdown__toggle {
  position: relative;
  font-size: 0.96rem;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.site-nav > a::after,
.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.35s ease;
}

.site-nav > a:hover::after,
.site-nav > a.active::after,
.nav-dropdown.active .nav-dropdown__toggle::after,
.nav-dropdown:hover .nav-dropdown__toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  z-index: 5;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  z-index: 20;
  min-width: 300px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  position: relative;
  z-index: 95;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text);
  margin: 6px auto;
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero {
  min-height: 91vh;
}

.page-hero {
  padding: 6rem 0 3rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(247, 243, 239, 0.96) 0%, rgba(247, 243, 239, 0.8) 48%, rgba(247, 243, 239, 0.2) 100%),
    url("../img/RJP_20260317_Studio_Promocija_0601.jpg") center/cover no-repeat;
}

.hero-slideshow,
.hero-overlay {
  position: fixed;
  inset: 88px 0 auto 0;
  height: 100%;
}

.hero-slideshow {
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 1.4s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.48) 0%, rgba(8, 8, 8, 0.24) 38%, rgba(8, 8, 8, 0.62) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.52) 0%, rgba(10, 10, 10, 0.18) 44%, rgba(10, 10, 10, 0.28) 100%);
}

.hero-fixed-inner {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  z-index: 3;
  min-height: calc(91vh - 88px);
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.hero-copy-fixed {
  max-width: 920px;
  color: #fff;
}

.hero-copy-fixed h1,
.hero-copy-fixed .lead {
  color: #fff;
}

.hero-copy-fixed h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.hero-eyebrow {
  color: #ffd0d0;
}

.hero-lead {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.6rem 0;
}

.hero-stat-line span,
.eyebrow {
  display: block;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-intro,
.hero-intro-delay,
.hero-intro-delay-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s ease forwards;
}

.hero-intro-delay {
  animation-delay: 0.2s;
}

.hero-intro-delay-2 {
  animation-delay: 0.4s;
}

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

.section {
  position: relative;
  z-index: 6;
  padding: 5rem 0;
  background: var(--bg);
}

.section-floating {
  padding-top: 5.8rem;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  margin-top: -2px;
}

.section-tinted {
  background:
    linear-gradient(180deg, rgba(239, 232, 225, 0.86), rgba(247, 243, 239, 0.45)),
    url("../img/RJP_20260317_Studio_Promocija_0728.jpg") center/cover fixed;
}

.section-heading,
.text-block,
.faq-list,
.stack-list {
  display: grid;
  gap: 1rem;
}

.intro-grid,
.split-grid,
.cards-two,
.footer-grid,
.service-grid,
.blog-grid,
.article-layout {
  display: grid;
  gap: 6rem;
}

.intro-grid,
.split-grid,
.cards-two,
.article-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
}

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

.partner-marquee {
  overflow: hidden;
  padding: 0.75rem 0;
}

.partner-marquee__track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  width: max-content;
  animation: marquee 34s linear infinite;
  padding: 1.35rem 1.75rem;
}

.partner-logo-card {
    width: clamp(210px, 18vw, 280px);
    min-height: 97px;
    padding: 0.75rem 1rem;
    border-radius: 22px;
    display: grid;
    place-items: center;
    gap: 0.7rem;
    /* background: rgba(255, 255, 255, 0.76); */
    /* border: 1px solid var(--line); */
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.partner-logo-card:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

.partner-logo-card__image {
    width: 100%;
    max-width: 189px;
    height: 128px;
    object-fit: contain;
    object-position: center;
}

.partner-logo-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0.75rem 1rem;
  border: 1px dashed rgba(22, 22, 22, 0.18);
  border-radius: 18px;
  color: var(--text);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.partner-logo-card__name {
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: center;
  color: var(--text);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.info-card,
.service-card,
.blog-card,
.cta-box,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-card,
.service-card,
.blog-card,
.cta-box {
  padding: 1.65rem;
}

.service-card {
  min-height: 260px;
  transition: transform 0.35s ease, border-color 0.35s ease;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  gap: 0.9rem;
}

.service-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 75, 76, 0.28);
}

.service-card > span {
  display: block;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.service-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  border: 1px dashed rgba(227, 75, 76, 0.4);
  background: rgba(227, 75, 76, 0.05);
  display: grid;
  place-items: center;
}

.service-card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(44%) sepia(57%) saturate(1260%) hue-rotate(322deg) brightness(97%) contrast(86%);
}

.service-grid .service-card:nth-child(4) {
  grid-column: 1 / 2;
  transform: translateX(50%);
}

.service-grid .service-card:nth-child(5) {
  grid-column: 2 / 3;
  transform: translateX(50%);
}

.image-stack img,
.blog-card__image,
.article-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.image-stack img,
.article-cover {
  min-height: 520px;
}

.blog-card__image {
  min-height: 260px;
  margin-bottom: 1rem;
}

.blog-grid--home .blog-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 240px 1fr;
}

.blog-grid--home .blog-card__image {
  height: 240px;
  min-height: 240px;
  margin-bottom: 0;
  border-radius: 0;
  object-fit: cover;
}

.blog-grid--home .blog-card__body {
  padding: 1.45rem 1.55rem 1.6rem;
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: "Futura PT", Futura, "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.72rem);
}

.lead,
.narrow {
  max-width: 62ch;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
}

.text-block,
.rich-content,
.faq-answer p,
.contact-form label,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.button,
.button-secondary,
.text-link {
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.button-light {
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.button:hover,
.button-secondary:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.4rem;
  border: 0;
  /* background: transparent; */
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 1.4rem 0;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 1.35rem;
}

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.faq-filter {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.faq-filter.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.95rem 1rem;
}

.form-message {
  padding: 0.95rem 1rem;
  border-radius: 16px;
}

.form-message.is-success {
  background: rgba(44, 155, 92, 0.12);
  color: #257a49;
}

.form-message.is-error {
  background: rgba(227, 75, 76, 0.12);
  color: #9e2e2f;
}

.stack-link {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 0.35rem;
}

.hero-highlights-section {
  padding-top: 2rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-highlight-card {
  padding: 1.45rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.55rem;
}

.highlight-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(227, 75, 76, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-highlight-card span {
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-highlight-card strong {
  font-size: 1.1rem;
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.site-footer {
    position: relative;
    z-index: 6;
    padding: 3.2rem 0 1.4rem;
    border-top: 1px solid rgba(22, 22, 22, 0.06);
    background: radial-gradient(circle at top right, rgba(227, 75, 76, 0.08), transparent 22%), linear-gradient(180deg, #f5efe9 0%, #f5efe9 100%);
}

.floating-instagram {
  position: fixed;
  right: 0.35rem;
  bottom: 1.4rem;
  z-index: 999;
  display: flex;
  align-items: end;
  gap: 0.8rem;
}

body.nav-open .floating-instagram,
html.nav-open .floating-instagram {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floating-instagram__button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  flex: 0 0 auto;
}

.floating-instagram__button img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.floating-instagram__message {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.floating-instagram__message.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-instagram__message {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 1rem 1.15rem;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  max-width: 280px;
}

.floating-instagram__message::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 18px;
  transform: rotate(45deg);
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.96);
}

.floating-instagram__message strong {
  display: block;
  margin: 0 0 0.25rem;
  font-size: 0.96rem;
  line-height: 1.3;
  color: var(--text);
}

.floating-instagram__message span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

@media (max-width: 840px) {
  .floating-instagram {
    right: 0.7rem;
    bottom: 1rem;
  }

  .floating-instagram__message {
    max-width: 220px;
    padding: 0.9rem 1rem;
  }
}

.site-footer h3 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.footer-grid {
  grid-template-columns: minmax(360px, 1.7fr) repeat(3, max-content);
  align-items: center;
  justify-content: space-between;
}

.footer-brand-block,
.footer-column {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
}

.footer-brand-block {
  justify-items: start;
  text-align: left;
  padding-left: 0;
  margin-left: calc(-2.5rem - 10px);
}

.footer-brand-block .footer-logo {
  width: clamp(260px, 23vw, 340px);
}

.footer-brand-block p {
  width: clamp(260px, 23vw, 340px);
  text-align: center;
}

.footer-column {
  justify-self: end;
}

.footer-faq-item {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
  width: 100%;
  max-width: 320px;
}

.footer-faq-item .faq-question {
  padding: 1rem 1.1rem;
}

.footer-faq-item .faq-answer p {
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
}

.footer-social-link {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-contact-link {
  font-size: 1.02rem;
}

.footer-brand-block p,
.footer-column p,
.footer-column a,
.footer-column span {
  margin: 0;
}

.footer-column span {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 22, 22, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 700;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-company-list {
  display: grid;
  gap: 0.55rem;
}

.contact-company-list p {
  margin: 0;
}

.map-embed {
  border-radius: 26px;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
}


@media (max-width: 1080px) {
  .service-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-highlights,
  .intro-grid,
  .split-grid,
  .cards-two,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2rem;
    justify-items: center;
  }

  .footer-brand-block,
  .footer-column {
    justify-self: center;
    justify-items: center;
    text-align: center;
    margin-left: 0;
    padding-left: 0;
  }

  .footer-brand-block p,
  .footer-brand-block .footer-logo {
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 840px) {
  body {
    padding-top: 88px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    width: min(380px, 86vw);
    min-height: 100dvh;
    height: 100dvh;
    z-index: 140;
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 1.2rem;
    padding: 6.75rem 1.9rem 2.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    flex-wrap: nowrap;
    background:
      radial-gradient(circle at top right, rgba(227, 75, 76, 0.14), transparent 26%),
      linear-gradient(180deg, rgba(255, 252, 249, 0.98) 0%, rgba(247, 243, 239, 0.98) 100%);
    border-left: 1px solid rgba(22, 22, 22, 0.08);
    box-shadow: -30px 0 80px rgba(20, 18, 18, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.35s ease, transform 0.45s ease, visibility 0.35s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav > a,
  .nav-dropdown__toggle {
    font-size: 1.35rem;
    text-align: left;
    color: var(--text);
    width: 100%;
    padding: 0.15rem 0;
  }

  .site-nav > a,
  .nav-dropdown {
    width: 100%;
  }

  .site-nav > a::after,
  .nav-dropdown__toggle::after {
    bottom: -0.3rem;
    background: var(--accent);
  }

  .nav-dropdown {
    display: grid;
    justify-items: stretch;
  }

  .nav-dropdown__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.nav-dropdown__menu {
    position: static;
    min-width: 0;
    margin-top: 0.9rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    background: transparent;
    border: 0;
    padding: 0.25rem 0 0 0.75rem;
    justify-items: stretch;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .nav-dropdown__menu a {
    display: block;
    text-align: left;
    font-size: 1rem;
    color: var(--muted);
  }

  .hero {
    min-height: auto;
  }

  .hero-slideshow,
  .hero-overlay {
    position: absolute;
    inset: 0;
    height: auto;
  }

  .hero-fixed-inner {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    margin: 0;
    min-height: calc(100svh - 88px);
    padding-top: 2rem;
  }

  .hero-copy-fixed {
    max-width: 100%;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-highlight-card {
    justify-items: center;
    text-align: center;
  }

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

  .service-grid .service-card:nth-child(4),
  .service-grid .service-card:nth-child(5) {
    grid-column: auto;
    transform: none;
  }

  .service-card,
  .blog-card,
  .partners-card {
    width: 100%;
  }

  .partner-logo-card {
    width: 180px;
    min-height: 78px;
  }

  .floating-instagram {
    right: 0.2rem;
    bottom: 1rem;
  }

  .partner-logo-card__image,
  .partner-logo-card__placeholder {
    height: 58px;
    min-height: 58px;
  }

  .image-stack img,
  .article-cover {
    min-height: 340px;
  }

  .footer-faq-item {
    max-width: 100%;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .footer-grid {
    gap: 1.6rem;
  }

  .footer-brand-block,
  .footer-column,
  .footer-socials {
    justify-items: center;
    justify-self: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
  }

  .footer-contact-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }
}
