/* ============================================
   Pohrebníctvo Padarasová — style.css
   Premium Design System (Fiamčík-inspired)
   ============================================ */

/* --- Design Tokens --- */
:root {
  --dark: #0a0a0a;
  --dark-medium: #141414;
  --dark-soft: #1a1a1a;
  --accent: rgba(255,255,255,0.08);
  --accent-border: rgba(255,255,255,0.1);
  --accent-glow: rgba(255,255,255,0.05);
  --text: #334155;
  --heading: #1e293b;
  --light-bg: #f7f7f8;
  --border: #e2e2e5;
  --transition: .4s cubic-bezier(.4,0,.2,1);
  --radius: 16px;
  --radius-sm: 10px;
}

/* --- Font --- */
@font-face {
  font-family: 'Neulis alt';
  src: url('../fonts/NeulisAlt-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neulis alt';
  src: url('../fonts/NeulisAlt-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- Selection --- */
::selection {
  background: #000;
  color: #fff;
}

.cta ::selection,
.footer__inner ::selection,
.memorial__overlay ::selection,
.section--dark ::selection {
  background: #fff;
  color: #000;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Neulis alt', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  color: var(--heading);
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Keyframes --- */
@keyframes btnFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes borderShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes auroraDrift {
  0% { transform: translateX(-3%) translateY(0); }
  50% { transform: translateX(2%) translateY(-2%); }
  100% { transform: translateX(3%) translateY(-1%); }
}

@keyframes wordRotate {
  0%   { opacity: 0; transform: translateY(100%); }
  5%   { opacity: 1; transform: translateY(0); }
  28%  { opacity: 1; transform: translateY(0); }
  33%  { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 0; transform: translateY(-100%); }
}

/* --- Section Variants --- */
.section--dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #050505 0%, var(--dark) 40%, var(--dark-medium) 70%, #050505 100%);
  color: #fff;
}

.section--dark::after {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(200,200,200,0.03), transparent 60%);
  animation: auroraDrift 20s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.section--dark .container {
  position: relative;
  z-index: 2;
}

.section--dark h2,
.section--dark h3,
.section--dark .services__title,
.section--dark .about__text,
.section--dark .blog-opustili__heading {
  color: #fff;
}

.section--dark p,
.section--dark .services__desc,
.section--dark .values__desc,
.section--dark .pricing__desc,
.section--dark .pricing__list,
.section--dark .about-page__text p {
  color: rgba(255,255,255,0.8);
}

.section--subtle {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0,0,0,0.02) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(0,0,0,0.015) 0%, transparent 50%),
    var(--light-bg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Neulis alt', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
  text-align: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: none;
}

.btn:hover::before {
  animation: shimmer .7s ease forwards;
}

.btn:hover {
  animation: btnFloat 1s ease-in-out infinite;
}

.btn--dark {
  background: #000;
  color: #fff;
  border-color: #fff;
}

.btn--green {
  background: #000;
  color: #fff;
  border-color: #fff;
  font-size: 1.1rem;
  padding: 14px 32px;
}

.btn--outline {
  background: #fff;
  color: #000;
  border-color: #000;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* --- Navigation — Desktop --- */
.nav--desktop {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.nav--desktop .nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 64px;
}

.nav--desktop .nav__links {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 0;
}

.nav--desktop .nav__links li {
  flex: 1;
  text-align: center;
}

.nav--desktop .nav__link {
  color: #A3A3A3;
  font-size: 18px;
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav--desktop .nav__link:hover {
  color: #fff;
  background: #000;
}

.nav--desktop .nav__link.active {
  color: #000;
}

.nav--desktop .nav__link.active:hover {
  color: #fff;
}

/* --- Navigation — Mobile --- */
.nav--mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  flex-direction: row;
}

.nav__cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__cell--phone {
  flex: 0 0 20%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.nav__cell--logo {
  flex: 0 0 60%;
  background: #fff;
  padding: 0;
}

.nav__cell--logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.nav__logo-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav__cell--menu {
  flex: 0 0 20%;
  background: linear-gradient(135deg, #333 0%, #000 100%);
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav__cell--menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__cell--menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__cell--menu.open span:nth-child(2) {
  opacity: 0;
}

.nav__cell--menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__inner {
  padding: 80px 32px 40px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 30px;
}

.mobile-menu__link {
  display: block;
  padding: 14px 16px;
  color: #A3A3A3;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 8px;
  transition: color 0.2s;
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
  color: #fff;
}

.mobile-menu__cta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 24px;
  justify-content: center;
}

.mobile-menu__cta .btn {
  width: auto;
  font-size: 1rem;
  padding: 8px 16px;
}

.cta__location--menu {
  border: 1px solid #333;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

/* Mobile overlay — not needed, fullscreen menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* --- Hero --- */
.hero {
  margin-top: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 420px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.hero__side {
  flex: 0 0 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fff;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero__side--left {
  justify-content: flex-end;
  padding-right: 2px;
  transform: translateX(50%);
}

.hero__side--right {
  justify-content: flex-start;
  padding-left: 2px;
  transform: translateX(-50%);
}

.hero__side.hero-revealed {
  opacity: 1;
  transform: translateX(0);
}

.hero__side-img {
  width: 100%;
  max-width: 300px;
  object-fit: cover;
  box-shadow: none;
}

.hero__side--left .hero__side-img {
  border-radius: var(--radius) 0 0 var(--radius);
}

.hero__side--right .hero__side-img {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hero__side-wrap {
  position: relative;
}

.hero__side-text {
  position: absolute;
  bottom: -10px;
  right: -20px;
  background: rgba(255,255,255,0.95);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--heading);
  max-width: 200px;
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 5;
}

.hero__video-wrap {
  flex: 0 0 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__triangle {
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
}

.hero__triangle--top {
  top: 0;
  transform: rotate(180deg);
}

.hero__triangle--bottom {
  bottom: 0;
}

/* --- Animated Headline --- */
.headline {
  padding: 20px 0 16px;
  text-align: center;
}

.headline__h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--heading);
}

.headline__rotating {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  overflow: hidden;
  height: 1.3em;
  width: 280px;
  text-align: left;
}

.headline__word {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #000;
  font-weight: 300;
  opacity: 0;
  transform: translateY(100%);
  animation: wordRotate 7.5s infinite;
}

.headline__word:nth-child(1) { animation-delay: 0s; }
.headline__word:nth-child(2) { animation-delay: 2.5s; }
.headline__word:nth-child(3) { animation-delay: 5s; }

/* --- CTA Bar --- */
.cta {
  padding: 28px 0;
  background: linear-gradient(160deg, #050505 0%, var(--dark) 40%, var(--dark-medium) 70%, #050505 100%);
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(200,200,200,0.03), transparent 60%);
  animation: auroraDrift 20s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.cta__col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__heading {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.cta__location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.cta__location:hover {
  color: #fff;
  transform: translateY(-2px);
}

.cta__time {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}

.cta__address-text {
  font-size: 0.9rem;
  font-weight: 300;
}

.cta__icon {
  flex-shrink: 0;
}

/* --- Pricing --- */
.pricing {
  padding: 60px 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing__card {
  background:
    radial-gradient(ellipse at top left, rgba(0,0,0,0.02) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(255,255,255,0.94));
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all .5s cubic-bezier(.4,0,.2,1);
  position: relative;
}

.pricing__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2), transparent);
  transform: scaleX(0);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  z-index: 5;
}
.pricing__card:hover::before {
  transform: scaleX(1);
}

.pricing__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.1);
}

.pricing__img-wrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.pricing__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pricing__card:hover .pricing__img {
  transform: scale(1.05);
}

.pricing__body {
  padding: 10px 20px 24px;
  text-align: left;
}

.pricing__title {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.pricing__price {
  font-size: 1.4rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 12px;
}

.pricing__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 12px;
}

.pricing__desc {
  color: #555;
  font-size: 0.9rem;
}

.pricing__list {
  color: #555;
  font-size: 0.9rem;
  text-align: left;
}

.pricing__list li {
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.pricing__list li::before {
  content: "\2013";
  position: absolute;
  left: 0;
}

.pricing__btn {
  margin-top: 16px;
  width: 100%;
}

/* --- Section Divider --- */
.divider {
  padding: 40px 0;
}

.divider__line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider__line::before,
.divider__line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider__text {
  padding: 0 24px;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--heading);
  white-space: nowrap;
  text-align: center;
}

/* --- Blog + Opustili nas --- */
.blog-opustili {
  padding: 40px 0 60px;
}

.blog-opustili__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.blog-opustili__blog-btn {
  margin-top: 16px;
  width: 100%;
}

.blog-opustili__heading {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 20px;
}

/* Blog Card */
.blog-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.blog-card--horizontal {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 0;
  background:
    radial-gradient(ellipse at top left, rgba(0,0,0,0.02) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.93));
  border: 1px solid var(--border);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.blog-card--horizontal:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.blog-card--horizontal .blog-card__image {
  flex: 0 0 45%;
  overflow: hidden;
}

.blog-card--horizontal .blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card--horizontal:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card--horizontal .blog-card__content {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card--small {
  min-height: 0;
}

.blog-card__overlay {
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 30px 24px 24px;
  width: 100%;
  color: #fff;
}

.blog-card__title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--heading);
  margin-bottom: 10px;
}

.blog-card__title--small {
  font-size: 1rem;
  color: #fff;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}

.blog-card__overlay .blog-card__title {
  color: #fff;
}

.blog-card__overlay .blog-card__excerpt {
  color: #ddd;
}

/* Memorial Card */
.memorial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.memorial__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
}

.memorial__card--small {
  min-height: 0;
}

.memorial__overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0,0,0,0.35);
  color: #fff;
}

.memorial__top {
  display: flex;
  align-items: flex-start;
}

.memorial__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.memorial__name {
  font-size: 1.15rem;
  font-weight: 900;
}

.memorial__age {
  font-size: 1.05rem;
  font-weight: 300;
}

.memorial__date {
  font-size: 1.05rem;
  font-weight: 900;
}

.memorial__btn {
  width: 100%;
}

/* --- Services --- */
.services {
  padding: 40px 0 60px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.services__card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.section--dark .services__card:hover {
  box-shadow: 0 12px 32px rgba(255,255,255,0.06);
}

.services__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  position: relative;
}

.services__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border-radius: var(--radius);
}

.services__card:hover .services__img-wrap::after {
  opacity: 1;
}

.services__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.services__card:hover .services__img {
  transform: scale(1.06);
}

.services__title {
  color: var(--heading);
  font-size: 1.15rem;
  font-weight: 300;
  padding: 12px 4px 0;
}

.services__desc {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 4px 4px 0;
  line-height: 1.5;
}

.services__cta {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.services--page {
  padding: 60px 0 80px;
}

/* --- Page Header --- */
.page-header {
  background: linear-gradient(135deg, #000 0%, #1a1a2e 50%, #0a0a0a 100%);
  color: #fff;
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(200,200,200,0.03), transparent 60%);
  animation: auroraDrift 20s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header__title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: relative;
  color: #fff;
}

.page-header__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
}

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero__heading {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--heading);
}

/* --- About Page --- */
.about-page {
  padding: 60px 0;
}

.about-page__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.about-page__img-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}

.about-page__img {
  width: 100%;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}

.about-page__img-wrap:hover .about-page__img {
  transform: scale(1.03);
}

.about-page__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-page__heading {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--heading);
}

.about-page__text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
}

/* --- Values --- */
.values {
  padding: 60px 0;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.values__card {
  text-align: center;
  padding: 36px 24px;
  background:
    radial-gradient(ellipse at top left, rgba(0,0,0,0.015) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(0,0,0,0.01) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.93));
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* Animated gradient top line */
.values__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #888, #fff, #888);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.values__card:hover::before {
  transform: scaleX(1);
  animation: borderShift 2s ease infinite;
}

.values__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.12);
}

/* Values in dark sections — glass morphism */
.section--dark .values__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--accent-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section--dark .values__card:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: 0 12px 32px rgba(255,255,255,0.04);
}

.section--dark .values__icon {
  color: #fff;
}

.section--dark .values__title {
  color: #fff;
}

.section--dark .values__desc {
  color: rgba(255,255,255,0.7);
}

/* Icon morphing on hover */
.values__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0,0,0,0.03), rgba(0,0,0,0.06));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s cubic-bezier(.34,1.56,.64,1);
}
.values__card:hover .values__icon {
  background: linear-gradient(135deg, #222, #444);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.values__card:hover .values__icon svg {
  stroke: #fff;
}

.values__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--heading);
  margin-bottom: 8px;
}

.values__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
}

/* --- Rebrand --- */
.rebrand {
  padding: 60px 0;
}

.rebrand__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.rebrand__heading {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--heading);
  margin-bottom: 16px;
}

.rebrand__content p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.rebrand__cta {
  margin-top: 24px;
}

/* --- Content Section (co-robit, etc.) --- */
.content-section {
  padding: 40px 0;
}

.content-section h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--heading);
  margin-bottom: 16px;
}

.content-section h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--heading);
  margin-bottom: 8px;
}

.content-section p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}

.content-section ul,
.content-section ol {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 20px;
}

.content-section li {
  padding: 4px 0;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-grid iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius);
}

/* --- Blog Page Grid --- */
.blog-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.blog-page__grid .blog-card--horizontal {
  flex-direction: column;
}

.blog-page__grid .blog-card--horizontal .blog-card__image {
  flex: none;
  max-height: 240px;
}

/* --- About --- */
.about {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

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

.about__img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.about__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

/* --- Reviews --- */
.reviews {
  margin-bottom: 30px;
  position: relative;
}

.reviews__slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.reviews__track {
  display: flex;
  transition: transform 0.4s ease;
}

.reviews__card {
  flex: 0 0 50%;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  margin-right: 16px;
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}

.reviews__card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Reviews in dark sections — glass morphism */
.section--dark .reviews__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--accent-border);
}

.section--dark .reviews__name {
  color: #fff;
}

.section--dark .reviews__text {
  color: rgba(255,255,255,0.8);
}

.reviews__name {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--heading);
}

.reviews__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.reviews__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.reviews__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  color: var(--heading);
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.reviews__arrow svg {
  width: 28px;
  height: 28px;
}

.reviews__arrow--prev {
  margin-left: -24px;
}

.reviews__arrow--next {
  margin-right: -24px;
}

.reviews__arrow:hover {
  background: #fff;
  border-color: #999;
  transform: scale(1.1);
}

/* --- Gallery --- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  pointer-events: none;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

/* --- Back to top --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #333;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
  padding: 8px;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2001;
}

.lightbox__arrow:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox__arrow--prev {
  left: 16px;
}

.lightbox__arrow--next {
  right: 16px;
}

/* --- Footer --- */
.footer {
  position: relative;
  margin-top: 100px;
}

.footer__triangle {
  display: block;
  width: 100%;
  height: 100px;
}

.footer__inner {
  background: #000;
  padding: 20px 0 40px;
  margin-top: -40px;
  position: relative;
  overflow: hidden;
}

.footer__inner > .container {
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: end;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col .memorial__card,
.footer__col .blog-card {
  height: 320px;
}

.footer__heading {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
}

.footer__subheading {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  margin-top: 10px;
}

.footer__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}

.footer__buttons .btn {
  width: auto;
  font-size: 1.2rem;
  padding: 8px 20px;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}

.footer__social-btn {
  display: inline-flex;
  width: auto;
  font-size: 1.1rem;
  padding: 8px 20px;
}

.footer__logo {
  width: 100%;
  margin-top: 16px;
  align-self: center;
}

.cta__location--footer {
  border: 1px solid #333;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.footer__credit {
  background: #000;
  text-align: center;
  padding: 16px;
  color: #666;
  font-size: 0.85rem;
}

.footer__credit a {
  color: #999;
  text-decoration: underline;
}

.footer__credit a:hover {
  color: #fff;
}

/* --- Page Banner (subpage hero with bg image) --- */
.page-banner {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-banner__overlay .container {
  text-align: center;
}

.page-banner__title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.page-banner__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  margin: 16px auto 0;
}

.page-banner__subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* --- Highlight Band --- */
.highlight-band {
  padding: 60px 0;
  background: linear-gradient(160deg, #0d1117 0%, #1a1e2e 40%, #0d1117 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.highlight-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.highlight-band::after {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 60% at 30% 40%, rgba(255,255,255,0.03), transparent 60%),
    radial-gradient(ellipse 40% 50% at 70% 60%, rgba(200,200,200,0.02), transparent 60%);
  animation: auroraDrift 20s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.highlight-band .container {
  position: relative;
  z-index: 2;
}

.highlight-band__text {
  font-size: 1.35rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
  font-style: italic;
}

/* --- Animate on Scroll --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.fade-in-right {
  transform: translateX(40px);
}

.animate-on-scroll.fade-in-left {
  transform: translateX(-40px);
}

.animate-on-scroll.fade-in-up {
  transform: translateY(30px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- General Polish --- */
.pricing,
.services,
.services--page,
.values,
.about-page,
.rebrand,
.content-section,
.blog-opustili {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* --- Floating Orbs --- */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 1;
}
.orb--1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  animation: orbFloat1 18s ease-in-out infinite;
}
.orb--2 {
  width: 300px;
  height: 300px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(200,200,210,0.05) 0%, transparent 70%);
  animation: orbFloat2 22s ease-in-out infinite;
}
.orb--3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 40%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  animation: orbFloat1 25s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-25px, 30px) scale(1.15); }
  66% { transform: translate(35px, -15px) scale(0.85); }
}

/* --- Stats Band --- */
.stats {
  padding: 60px 0;
  background: linear-gradient(160deg, #050505 0%, #0a0a0a 40%, #111 70%, #050505 100%);
  position: relative;
  overflow: hidden;
}

.stats .container {
  position: relative;
  z-index: 2;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats__card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.4,0,.2,1);
}

.stats__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  background-size: 200% 100%;
  animation: borderShift 4s ease infinite;
}

.stats__card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Shimmer sweep on hover */
.stats__card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: none;
}
.stats__card:hover::after {
  animation: shimmer .8s ease forwards;
}

.stats__number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}

/* --- Glass CTA Cards --- */
.cta-glass {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.cta-glass__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .5s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

/* Bottom glow line on hover */
.cta-glass__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: scaleX(0);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.cta-glass__card:hover::after { transform: scaleX(1); }

.cta-glass__card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.cta-glass__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-glass__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

.cta-glass__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}

/* --- Section Glow Line --- */
.glow-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  margin: 0 auto 24px;
}
.glow-line--dark {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.15), transparent);
}

/* --- Enhanced Dark Section Text --- */
.section--dark .services__title,
.section--dark .services__desc,
.section--dark .divider__text,
.section--dark .divider__line::before,
.section--dark .divider__line::after {
  color: rgba(255,255,255,0.7);
}
.section--dark .divider__line::before,
.section--dark .divider__line::after {
  background: rgba(255,255,255,0.15);
}
.section--dark .services__cta .btn--dark {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.section--dark .services__cta .btn--green {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* === NEW LAYOUT PATTERNS === */

/* --- Split Row (alternating image/text) --- */
.split-row {
  padding: 70px 0;
}
.split-row__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.split-row--reverse .split-row__inner {
  direction: rtl;
}
.split-row--reverse .split-row__inner > * {
  direction: ltr;
}
.split-row__img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.split-row__img img {
  width: 100%;
  display: block;
  transition: transform .6s ease;
}
.split-row__img:hover img {
  transform: scale(1.04);
}
.split-row__text h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--heading);
  margin-bottom: 16px;
}
.split-row__text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 14px;
}
.split-row__text p strong {
  font-weight: 900;
  color: var(--heading);
}

/* --- Photo Strip --- */
.photo-strip {
  padding: 40px 0;
  overflow: hidden;
}
.photo-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-strip__item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.photo-strip__item:hover img {
  transform: scale(1.06);
}

/* --- Immersive Image Section --- */
.immersive {
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.immersive__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  display: flex;
  align-items: center;
}
.immersive__title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  max-width: 550px;
}
.immersive__text {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 550px;
  font-style: italic;
}

/* --- Feature Dark Section (glass cards on dark bg) --- */
.feature-dark {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.feature-dark__heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.feature-dark__sub {
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.feature-dark__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-dark__card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.4,0,.2,1);
}
.feature-dark__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.feature-dark__card:hover::before {
  transform: scaleX(1);
  animation: borderShift 2s ease infinite;
}
.feature-dark__card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-dark__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s cubic-bezier(.34,1.56,.64,1);
}
.feature-dark__card:hover .feature-dark__icon {
  background: rgba(255,255,255,0.12);
  transform: scale(1.1) rotate(-5deg);
}
.feature-dark__icon svg {
  stroke: rgba(255,255,255,0.7);
}
.feature-dark__card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.feature-dark__card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* --- Intro Centered --- */
.intro-centered {
  padding: 60px 0;
  text-align: center;
}
.intro-centered__text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
}

/* --- Two Column Photo + List --- */
.photo-list {
  padding: 60px 0;
}
.photo-list__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.photo-list__img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.photo-list__img img {
  width: 100%;
  display: block;
}
.photo-list__content h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--heading);
  margin-bottom: 16px;
}
.photo-list__content ul {
  list-style: none;
  padding: 0;
}
.photo-list__content li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.photo-list__content li:last-child {
  border-bottom: none;
}
.photo-list__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--heading);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-glass { grid-template-columns: 1fr; }
  .split-row__inner { grid-template-columns: 1fr; gap: 30px; }
  .split-row--reverse .split-row__inner { direction: ltr; }
  .feature-dark__grid { grid-template-columns: repeat(2, 1fr); }
  .photo-list__inner { grid-template-columns: 1fr; }

  .nav--desktop {
    display: none;
  }

  .nav--mobile {
    display: flex;
  }

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

  .about-page__intro {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-header {
    padding: 100px 0 40px;
  }

  .page-header__title {
    font-size: 1.8rem;
  }

  .hero {
    margin-top: 60px;
    flex-wrap: wrap;
    min-height: auto;
    height: auto;
    overflow: hidden;
  }

  .hero__video-wrap {
    flex: 0 0 auto;
    width: 100%;
    height: 250px;
    order: 1;
  }

  .hero__side {
    display: flex;
    flex: 0 0 50%;
    padding: 10px;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    order: 2;
    justify-content: center;
  }

  .hero__side--left {
    transform: translateX(-60px);
  }

  .hero__side--right {
    transform: translateX(60px);
  }

  .hero__side.hero-revealed {
    opacity: 1;
    transform: translateX(0);
  }

  .hero__side--left {
    padding-right: 5px;
  }

  .hero__side--right {
    padding-left: 5px;
  }

  .hero__side-img {
    max-width: 100%;
    border-radius: 12px;
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about__right {
    width: 100%;
    overflow: hidden;
  }

  .reviews {
    overflow: hidden;
  }

  .reviews__card {
    flex: 0 0 100%;
    margin-right: 0;
    box-sizing: border-box;
  }

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

  .headline__h1 {
    font-size: 1.6rem;
  }

  .headline__rotating {
    width: 200px;
  }
}

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__number { font-size: 2rem; }
  .stats__card { padding: 24px 16px; }
  .photo-strip__grid { grid-template-columns: 1fr; }
  .feature-dark__grid { grid-template-columns: 1fr; }
  .immersive { min-height: 260px; background-attachment: scroll; }
  .immersive__title { font-size: 1.3rem; }

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

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

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

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

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

  .page-hero__heading {
    font-size: 1.6rem;
  }

  .page-banner {
    min-height: 240px;
    background-attachment: scroll;
  }

  .page-banner__title {
    font-size: 1.8rem;
  }

  .page-banner__subtitle {
    font-size: 1rem;
  }

  .highlight-band__text {
    font-size: 1.1rem;
  }

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

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__card {
    flex: 0 0 100%;
  }

  .page-header {
    padding: 120px 0 40px;
  }

  .page-header__title {
    font-size: 1.6rem;
  }

  .page-header__subtitle {
    font-size: 0.95rem;
  }

  .headline__h1 {
    font-size: 1.3rem;
  }

  .headline__rotating {
    display: block;
    width: 100%;
    text-align: center;
    height: 1.4em;
  }

  .hero__video-wrap {
    height: 250px;
  }

  .blog-card--horizontal {
    flex-direction: column;
  }

  .blog-card--horizontal .blog-card__image {
    flex: none;
    max-height: 220px;
  }

  .divider__text {
    font-size: 0.95rem;
  }

  .about {
    padding: 30px 0;
    overflow: hidden;
  }

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

  .about__img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .about__text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .about__right {
    width: 100%;
    overflow: hidden;
  }

  .reviews {
    width: 100%;
    overflow: hidden;
  }

  .reviews__slider {
    width: 100%;
    overflow: hidden;
  }

  .reviews__card {
    flex: 0 0 100%;
    padding: 20px;
    margin-right: 0;
    box-sizing: border-box;
  }

  .reviews__arrow {
    width: 36px;
    height: 36px;
  }

  .reviews__arrow svg {
    width: 20px;
    height: 20px;
  }

  .reviews__arrow--prev {
    margin-left: 4px;
  }

  .reviews__arrow--next {
    margin-right: 4px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .gallery__item {
    border-radius: 8px;
  }

  .gallery__img {
    border-radius: 8px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__col .memorial__card,
  .footer__col .blog-card {
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

/* --- Contact Form --- */
.contact-form-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form__group {
  margin-bottom: 0;
}

.contact-form__group:last-child:not(.contact-form__row .contact-form__group) {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.contact-form__input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form__input::placeholder {
  color: rgba(255,255,255,0.3);
}

.contact-form__input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
}

select.contact-form__input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.contact-form__input option {
  background: #1a1a1a;
  color: #fff;
}

.contact-form__textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form__submit {
  min-width: 220px;
  font-size: 1.05rem;
  padding: 16px 40px;
}

.contact-form__message {
  display: none;
  text-align: center;
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.contact-form__message.success {
  display: block;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
}

.contact-form__message.error {
  display: block;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
}

@media (max-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form__row .contact-form__group {
    margin-bottom: 20px;
  }
  .contact-form-section {
    padding: 60px 0;
  }
}
