/* =========================
   1. RESET / PAMATS
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: white;
  background-color: #1f1a17;
  overflow-x: hidden;
}

/* =========================
   2. HEADER
   ========================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  z-index: 1000;
  overflow: visible;
  background: #3b2a1d;
  border-bottom: 1px solid rgba(255, 230, 180, 0.35);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.topbar-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.topbar-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(35, 20, 10, 0.58),
    rgba(90, 60, 20, 0.30),
    rgba(35, 20, 10, 0.58)
  );
}

.nav-container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 30px;
  flex-wrap: nowrap;
}

/* =========================
   3. LOGO
   ========================= */
.site-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 80px;
  overflow: hidden;
  text-decoration: none;
  flex: 0 0 auto;
  z-index: 5;
  opacity: 0;
  transform: translateY(-30px);
  animation: logoDrop 1.6s ease-out forwards;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 8px rgba(212, 175, 55, 0.12));
}

.logo-shine {
  position: absolute;
  top: -20%;
  left: -120%;
  width: 65%;
  height: 140%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 230, 150, 0) 25%,
    rgba(255, 225, 120, 0.16) 40%,
    rgba(255, 245, 200, 0.50) 50%,
    rgba(212, 175, 55, 0.30) 60%,
    rgba(255, 230, 150, 0) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  filter: blur(1px);
  animation: logoShine 3.8s ease-in-out 1.8s infinite;
}

/* =========================
   4. NAVIGATION
   ========================= */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 14px;
  margin-left: 20px;
  flex-wrap: wrap;
  overflow: visible;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #f5f1e8;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.45px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.30);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0),
    rgba(212, 175, 55, 0.95),
    rgba(212, 175, 55, 0)
  );
  transform: scaleX(0.25);
  transform-origin: center;
  opacity: 0.65;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.main-nav a::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 55%;
  height: 320%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(24deg);
  transition: left 0.65s ease;
  pointer-events: none;
}

.main-nav a:hover,
.main-nav a.active {
  transform: translateY(-2px);
  color: #fffaf0;
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    0 0 18px rgba(212, 175, 55, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.main-nav a:hover::before {
  left: 120%;
}

/* =========================
   5. LANGUAGE SWITCH
   ========================= */
.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: 16px;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff8e7;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background-color 0.3s;
  white-space: nowrap;
  line-height: 1;
}

.lang:hover,
.lang.active {
  background-color: rgba(255, 255, 255, 0.16);
}

.flag-wrap {
  width: 22px;
  height: 14px;
  min-width: 22px;
  min-height: 14px;
  max-width: 22px;
  max-height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.flag-icon {
  width: 22px;
  height: 14px;
  min-width: 22px;
  min-height: 14px;
  max-width: 22px;
  max-height: 14px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.lang img,
.lang:hover img,
.lang.active img {
  transform: none !important;
  scale: 1 !important;
}

/* =========================
   6. MOBILE MENU BUTTON
   ========================= */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 auto;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.28);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #f5f1e8;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   7. BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fffaf1;
  background: linear-gradient(
    to right,
    rgba(80, 50, 20, 0.48),
    rgba(130, 90, 30, 0.36)
  );
  border: 1px solid rgba(255, 226, 160, 0.55);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 245, 220, 0.18);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 245, 220, 0.22);
}

/* =========================
   8. HERO
   ========================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 130px 60px 60px;
  background: #15100d;
}

.hero-base-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.62) contrast(1.02) saturate(1.02);
}

.hero-right-image-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.hero-right-image {
  width: 54%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 52%,
    rgba(0, 0, 0, 0.88) 66%,
    rgba(0, 0, 0, 0.52) 80%,
    rgba(0, 0, 0, 0.18) 92%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 52%,
    rgba(0, 0, 0, 0.88) 66%,
    rgba(0, 0, 0, 0.52) 80%,
    rgba(0, 0, 0, 0.18) 92%,
    rgba(0, 0, 0, 0) 100%
  );
  filter:
    brightness(0.95)
    contrast(1.04)
    saturate(0.96)
    blur(0.2px);
}

.hero-blend-mist {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 20%, rgba(255, 255, 255, 0.08), transparent 12%),
    radial-gradient(circle at 58% 35%, rgba(255, 244, 214, 0.10), transparent 13%),
    radial-gradient(circle at 60% 50%, rgba(212, 175, 55, 0.08), transparent 11%),
    radial-gradient(circle at 57% 68%, rgba(255, 244, 214, 0.10), transparent 12%),
    radial-gradient(circle at 61% 82%, rgba(255, 255, 255, 0.07), transparent 10%),
    linear-gradient(
      to right,
      rgba(20, 14, 10, 0.00) 0%,
      rgba(20, 14, 10, 0.02) 35%,
      rgba(255, 240, 205, 0.05) 50%,
      rgba(255, 240, 205, 0.09) 58%,
      rgba(212, 175, 55, 0.06) 64%,
      rgba(20, 14, 10, 0.00) 100%
    );
  filter: blur(14px);
  opacity: 0.95;
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(12, 8, 6, 0.54) 0%,
      rgba(12, 8, 6, 0.28) 24%,
      rgba(12, 8, 6, 0.10) 52%,
      rgba(12, 8, 6, 0.18) 74%,
      rgba(12, 8, 6, 0.34) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 6;
  max-width: 700px;
}

.hero-content-left {
  opacity: 0;
  transform: translateX(-90px);
  animation: heroSlideIn 1.8s ease-out 0.25s forwards;
}

.hero-shine {
  position: absolute;
  top: -8%;
  left: -30%;
  width: 34%;
  height: 120%;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 226, 150, 0) 25%,
    rgba(255, 221, 120, 0.14) 40%,
    rgba(255, 246, 210, 0.38) 50%,
    rgba(212, 175, 55, 0.22) 62%,
    rgba(255, 226, 150, 0) 78%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-24deg);
  filter: blur(2px);
  animation: heroTextShine 4.6s ease-in-out 1.9s infinite;
}

.hero-subtitle {
  display: inline-block;
  margin-bottom: 18px;
  color: #e5c27a;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-content h1 {
  position: relative;
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  color: #fff6e8;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.30),
    0 0 22px rgba(212, 175, 55, 0.07);
}

.hero-content p {
  position: relative;
  z-index: 3;
  max-width: 560px;
  font-size: 1.03rem;
  line-height: 1.85;
  margin-bottom: 34px;
  color: rgba(255, 245, 232, 0.92);
}

/* =========================
   9. GAIŠIE LUKSUSA FONI
   ========================= */
.services-section,
.material-section,
.simple-material-left,
.premium-presence-section,
.info-section,
.alt-section,
.contacts-section {
  position: relative;
  color: #2f241d;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
  overflow: hidden;
}

.services-section::before,
.material-section::before,
.premium-presence-section::before,
.info-section::before,
.alt-section::before,
.contacts-section::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.38), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
  animation: luxuryAuraFlow 18s ease-in-out infinite alternate;
}

.services-section::after,
.material-section::after,
.premium-presence-section::after,
.info-section::after,
.alt-section::after,
.contacts-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 18%,
      rgba(255, 255, 255, 0.22) 30%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.65;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.services-shell,
.material-shell,
.premium-presence-inner,
.section-box {
  position: relative;
  z-index: 2;
}

.services-shell::before,
.material-shell::before,
.premium-presence-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: radial-gradient(rgba(80, 52, 25, 0.55) 0.6px, transparent 0.6px);
  background-size: 10px 10px;
  mix-blend-mode: multiply;
}

/* =========================
   10. MĀJASLAPAS SERVICES SECTION
   ========================= */
.services-section {
  padding: 85px 20px 35px;
}

.services-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.services-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-eyebrow,
.material-eyebrow,
.service-number,
.premium-mini-label {
  color: #a97a1f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.services-heading h2,
.premium-presence-text h2,
.section-box h2,
.service-mini-content h3,
.catalog-card h3,
.info-card h3 {
  color: #342317;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px rgba(188, 146, 58, 0.06);
}

.services-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 14px;
}

.services-heading p,
.service-mini-content p,
.section-box p,
.section-intro,
.material-text-left,
.premium-presence-text p,
.catalog-card p,
.info-card p {
  color: rgba(62, 44, 31, 0.84);
}

.services-heading p {
  font-size: 1rem;
  line-height: 1.8;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-mini-card {
  min-height: 370px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(173, 132, 45, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 241, 0.58)),
    rgba(248, 242, 232, 0.88);
  box-shadow:
    0 18px 40px rgba(90, 64, 40, 0.10),
    0 2px 10px rgba(255, 255, 255, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.service-mini-card:hover {
  transform: translateY(-8px);
  border-color: rgba(173, 132, 45, 0.30);
  box-shadow:
    0 30px 58px rgba(90, 64, 40, 0.14),
    0 0 28px rgba(212, 175, 55, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.service-mini-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #eadfce;
}

.service-mini-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(72, 48, 30, 0.08) 60%,
    rgba(72, 48, 30, 0.18) 100%
  );
  pointer-events: none;
}

.service-mini-media video,
.service-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.84) contrast(1.04) saturate(1.02);
  transition: transform 1.3s ease;
}

.service-mini-card:hover .service-mini-media video,
.service-mini-card:hover .service-mini-media img {
  transform: scale(1.06);
}

.service-mini-content {
  padding: 22px 20px 24px;
  text-align: left;
}

.service-number {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.service-mini-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  line-height: 1.02;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-mini-content p {
  font-size: 0.94rem;
  line-height: 1.7;
}

/* =========================
   11. FLOATING IMAGE
   ========================= */
.floating-image {
  animation: gentleFloat 12s ease-in-out infinite;
  transform: scale(1.05);
  will-change: transform;
}

/* =========================
   12. MATERIAL SECTION
   ========================= */
.material-section {
  padding: 26px 20px 95px;
}

.simple-material-left {
  padding: 0 20px 0 !important;
}

.text-only-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto !important;
  text-align: center !important;
}

.simple-material-left .material-shell {
  margin: 0 auto !important;
}

.text-only-shell .material-eyebrow {
  display: inline-block;
  margin: 0 auto 14px !important;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.material-title-mask {
  max-width: 860px;
  margin: 0 auto 22px;
}

.centered-title-mask {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 22px !important;
}

.material-svg-title,
.centered-title-mask .material-svg-title {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto !important;
}

.svg-title-line1,
.svg-title-line2 {
  fill: white;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 68px;
}

.title-video-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.centered-material-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto !important;
  text-align: center !important;
}

.centered-material-text {
  max-width: 760px;
  margin: 0 auto !important;
  text-align: center !important;
}

.material-text-left {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.9;
}

.material-plain-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #342317;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px rgba(188, 146, 58, 0.06);
}

/* =========================
   13. PREMIUM PRESENCE SECTION
   ========================= */
.premium-presence-section {
  position: relative;
  padding: 0 20px 90px !important;
  overflow: hidden;
}

.premium-presence-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.premium-presence-text {
  max-width: 650px;
  margin: 0;
  padding: 0;
  justify-self: start;
}

.premium-mini-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: luxuryPulseGlow 5.5s ease-in-out infinite;
}

.premium-presence-text h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.premium-presence-text p {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   14. LUXURY IMAGE COMPOSITION
   ========================= */
.luxury-image-composition {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 520px;
  margin-left: auto;
  justify-self: end;
}

.luxury-image {
  position: absolute;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.78)),
    linear-gradient(180deg, #e9dcc7, #f6efe5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    0 24px 60px rgba(77, 53, 30, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(185, 145, 68, 0.16);
  overflow: hidden;
  opacity: 0;
  transform: translateX(80px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 1.4s ease,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.4s ease,
    box-shadow 0.45s ease;
}

.luxury-image-composition.is-visible .luxury-image {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.luxury-image-composition.is-visible .luxury-image-1 { transition-delay: 0.15s; }
.luxury-image-composition.is-visible .luxury-image-2 { transition-delay: 0.35s; }
.luxury-image-composition.is-visible .luxury-image-3 { transition-delay: 0.55s; }
.luxury-image-composition.is-visible .luxury-image-4 { transition-delay: 0.75s; }

.luxury-image-1 {
  top: 0;
  left: 40px;
  width: 220px;
  height: 270px;
  border-radius: 42px 26px 54px 24px / 34px 40px 50px 28px;
  animation: luxuryFloatA 8s ease-in-out infinite;
  background-image: url("kadiķis.JPEG");
}

.luxury-image-2 {
  top: 54px;
  right: 0;
  width: 230px;
  height: 180px;
  border-radius: 30px 50px 26px 46px / 46px 30px 42px 28px;
  animation: luxuryFloatB 10s ease-in-out infinite;
  background-image: url("lampa.JPEG");
}

.luxury-image-3 {
  left: 0;
  bottom: 20px;
  width: 210px;
  height: 170px;
  border-radius: 50px 28px 42px 26px / 34px 48px 32px 46px;
  animation: luxuryFloatC 9s ease-in-out infinite;
  background-image: url("pakaramais.JPEG");
}

.luxury-image-4 {
  right: 18px;
  bottom: 0;
  width: 250px;
  height: 240px;
  border-radius: 28px 52px 34px 48px / 48px 32px 46px 30px;
  animation: luxuryFloatD 11s ease-in-out infinite;
  background-image: url("kadiķu panelis pirtī.JPEG");
}

.luxury-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 38%);
  pointer-events: none;
}

.luxury-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(32, 20, 12, 0.40) 0%,
    rgba(32, 20, 12, 0.12) 32%,
    rgba(32, 20, 12, 0.00) 58%
  );
  pointer-events: none;
}

.luxury-image:hover {
  box-shadow:
    0 30px 74px rgba(77, 53, 30, 0.20),
    0 0 24px rgba(212, 175, 55, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.luxury-image-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #fffaf2;
  background: rgba(36, 24, 15, 0.42);
  border: 1px solid rgba(255, 235, 190, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   15. WHY JUNIPER SECTION
   ========================= */
.why-juniper-section {
  position: relative;
  padding: 95px 20px;
  overflow: hidden;
  color: #2f241d;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.why-juniper-section::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.38), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
  animation: luxuryAuraFlow 18s ease-in-out infinite alternate;
}

.why-juniper-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 18%,
      rgba(255, 255, 255, 0.22) 30%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.65;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.why-juniper-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.why-juniper-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.why-juniper-text h2 {
  margin: 0 0 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #342317;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px rgba(188, 146, 58, 0.06);
}

.why-juniper-description {
  max-width: 760px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.95;
  color: rgba(62, 44, 31, 0.86);
  text-align: center;
}

.why-juniper-points {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 34px;
  align-items: start;
}

.why-point {
  text-align: left;
}

.why-point h3 {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 600;
  color: #342317;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px rgba(188, 146, 58, 0.06);
}

.why-point p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(62, 44, 31, 0.86);
}

.why-juniper-cta {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

/* =========================
   15.1 KADIĶA STĀSTA SEKCIJA
   ========================= */
.juniper-story-section {
  position: relative;
  padding: 90px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.juniper-story-section::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.38), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
  animation: luxuryAuraFlow 18s ease-in-out infinite alternate;
}

.juniper-story-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 18%,
      rgba(255, 255, 255, 0.22) 30%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.65;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.juniper-story-section > * {
  position: relative;
  z-index: 2;
}

.juniper-story-row {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.juniper-story-text {
  max-width: 680px;
}

.juniper-story-text h2 {
  margin: 0 0 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  font-weight: 600;
  color: #342317;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px rgba(188, 146, 58, 0.06);
}

.juniper-story-text p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(62, 44, 31, 0.88);
}

.juniper-story-text p:last-child {
  margin-bottom: 0;
}

.juniper-story-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  justify-items: end;
}

.juniper-story-image {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 241, 0.58)),
    rgba(248, 242, 232, 0.88);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 20px 42px rgba(90, 64, 40, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.juniper-story-image.large {
  width: 100%;
  max-width: 420px;
  height: 280px;
}

.juniper-story-image.small {
  width: 82%;
  max-width: 320px;
  height: 210px;
  margin-right: 40px;
}

.juniper-story-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%),
    linear-gradient(to top, rgba(32, 20, 12, 0.14), rgba(32, 20, 12, 0) 58%);
}

.juniper-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.97) contrast(1.03) saturate(0.98);
  transition: transform 1.2s ease;
}

.juniper-story-image:hover img {
  transform: scale(1.05);
}

/* =========================
   16. UNIVERSĀLĀS INFO / GALLERY / ETC
   ========================= */
.info-section {
  padding: 80px 20px;
}

.section-box,
.catalog-card,
.info-card,
.partner-item,
.gallery-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.80), rgba(255, 249, 241, 0.58));
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 20px 42px rgba(90, 64, 40, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  color: #3a2a1d;
}

.section-box {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
}

.section-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.7rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.section-box p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.section-intro {
  margin-bottom: 28px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.info-card {
  border-radius: 14px;
  padding: 24px 20px;
  text-align: left;
}

.info-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-family: 'Cormorant Garamond', serif;
}

.info-card p {
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  min-height: 180px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c523d;
  font-weight: bold;
  letter-spacing: 1px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.partner-item {
  min-height: 100px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.catalog-card {
  border-radius: 14px;
  padding: 20px;
  text-align: left;
}

.catalog-image {
  height: 180px;
  border-radius: 12px;
  margin-bottom: 16px;
  background:
    linear-gradient(rgba(80, 55, 35, 0.20), rgba(35, 22, 14, 0.10)),
    linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c523d;
  font-weight: bold;
}

.catalog-card h3 {
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
}

.catalog-card p {
  line-height: 1.6;
  margin-bottom: 14px;
}

.catalog-price {
  display: inline-block;
  color: #a97a1f;
  font-weight: bold;
  font-size: 1.05rem;
}

/* =========================
   17. SERVICES PAGE HERO
   ========================= */
.services-page-hero {
  position: relative;
  padding: 150px 20px 90px;
  color: #2f241d;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
  overflow: hidden;
}

.services-page-hero::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.38), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
  animation: luxuryAuraFlow 18s ease-in-out infinite alternate;
}

.services-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 18%,
      rgba(255, 255, 255, 0.22) 30%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.65;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

/* partneru hero konfliktu novēršanai šīs klases attiecas uz services hero, nevis partneru hero */
.hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  margin: 0 auto 22px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8vw, 122px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff6e8;
  margin-bottom: 26px;
  text-align: center;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.28),
    0 8px 22px rgba(0,0,0,0.20);
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.95;
  color: rgba(255, 244, 228, 0.96);
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.24);
}

/* =========================
   18. SERVICES PREMIUM LIST
   ========================= */
.services-premium-list {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 42px auto 0;
  display: grid;
  gap: 22px;
}

.services-premium-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(173, 132, 45, 0.12);
}

.services-premium-text {
  max-width: 520px;
}

.services-premium-text h3 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.05;
  font-weight: 600;
  color: #342317;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px rgba(188, 146, 58, 0.05);
}

.services-premium-text p {
  margin: 0 0 10px;
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(62, 44, 31, 0.86);
}

.services-premium-meta {
  font-size: 0.7rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9b7430;
}

.services-premium-image {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 241, 0.58)),
    rgba(248, 242, 232, 0.88);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 16px 32px rgba(90, 64, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.services-premium-image::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%),
    linear-gradient(to top, rgba(32, 20, 12, 0.18), rgba(32, 20, 12, 0.00) 55%);
  z-index: 2;
}

.services-premium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.03) saturate(0.98);
  transition: transform 1.2s ease;
}

.services-premium-row:hover .services-premium-image img {
  transform: scale(1.04);
}

/* =========================
   19. SERVICES DUAL IMAGE ROWS
   ========================= */
.services-dual-section {
  position: relative;
  padding: 10px 20px 100px;
  color: #2f241d;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
  overflow: hidden;
}

.services-dual-section::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.38), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
  animation: luxuryAuraFlow 18s ease-in-out infinite alternate;
}

.services-dual-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 18%,
      rgba(255, 255, 255, 0.22) 30%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.65;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.services-dual-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
}

.services-dual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(173, 132, 45, 0.12);
}

.services-dual-text {
  max-width: 520px;
}

.services-dual-text h2 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
  font-weight: 600;
  color: #342317;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px rgba(188, 146, 58, 0.06);
}

.services-dual-text p {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.82;
  color: rgba(62, 44, 31, 0.86);
}

.services-dual-meta {
  font-size: 0.74rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9b7430;
}

.services-dual-images {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
}

.services-dual-image {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 241, 0.58)),
    rgba(248, 242, 232, 0.88);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 20px 42px rgba(90, 64, 40, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.services-dual-image.large {
  height: 260px;
}

.services-dual-image.small {
  height: 180px;
  transform: translateY(24px);
}

.services-dual-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 42%),
    linear-gradient(to top, rgba(32, 20, 12, 0.14), rgba(32, 20, 12, 0) 58%);
}

.services-dual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.97) contrast(1.03) saturate(0.98);
  transition: transform 1.2s ease;
}

.services-dual-row:hover .services-dual-image img {
  transform: scale(1.04);
}

/* =========================
   20. SERVICES OVERLAY FLOW SECTION
   ========================= */
.services-overlay-section {
  position: relative;
  padding: 30px 20px 110px;
  color: #2f241d;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
  overflow: hidden;
}

.services-overlay-section::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.38), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
  animation: luxuryAuraFlow 18s ease-in-out infinite alternate;
}

.services-overlay-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 18%,
      rgba(255, 255, 255, 0.22) 30%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.65;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.services-overlay-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  min-height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-overlay-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  display: flex;
  gap: 34px;
  width: max-content;
  transform: translateY(-50%);
  animation: overlayFlow 26s linear infinite;
  z-index: 1;
}

.services-overlay-image {
  position: relative;
  width: 420px;
  height: 260px;
  flex: 0 0 auto;
  overflow: hidden;
  filter:
    drop-shadow(0 18px 34px rgba(120, 92, 52, 0.10))
    drop-shadow(0 0 18px rgba(212, 175, 55, 0.08));
  -webkit-mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 58%,
    rgba(0, 0, 0, 0.92) 70%,
    rgba(0, 0, 0, 0.55) 82%,
    rgba(0, 0, 0, 0.10) 94%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 58%,
    rgba(0, 0, 0, 0.92) 70%,
    rgba(0, 0, 0, 0.55) 82%,
    rgba(0, 0, 0, 0.10) 94%,
    rgba(0, 0, 0, 0) 100%
  );
}

.services-overlay-image:nth-child(2n) {
  margin-top: 34px;
}

.services-overlay-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(to top, rgba(32, 20, 12, 0.12), rgba(32, 20, 12, 0) 58%);
}

.services-overlay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.98) contrast(1.03) saturate(0.98);
}

.services-overlay-text {
  position: relative;
  z-index: 5;
  max-width: 720px;
  text-align: center;
  padding: 34px 30px;
}

.services-overlay-text::before {
  content: "";
  position: absolute;
  inset: -18px -24px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at center,
      rgba(247, 239, 227, 0.98) 0%,
      rgba(247, 239, 227, 0.96) 34%,
      rgba(247, 239, 227, 0.88) 52%,
      rgba(247, 239, 227, 0.55) 70%,
      rgba(247, 239, 227, 0.14) 86%,
      rgba(247, 239, 227, 0) 100%
    );
  filter: blur(10px);
}

.services-overlay-text h2 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  font-weight: 600;
  color: #342317;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.96),
    0 0 14px rgba(255, 247, 235, 0.98),
    0 8px 22px rgba(188, 146, 58, 0.06);
}

.services-overlay-text p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(62, 44, 31, 0.92);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 12px rgba(255, 247, 235, 0.96);
}

/* =========================
   21. ABOUT / PAR MUMS LAPA
   ========================= */
.empty-luxury-page {
  min-height: 100vh;
  padding-top: 74px;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.about-video-section {
  padding: 0 20px 90px;
  background: transparent;
}

.about-video-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 20px 42px rgba(90, 64, 40, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.about-video-wrap video {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-video-background-section {
  position: relative;
  min-height: 760px;
  padding: 170px 20px 120px;
  overflow: hidden;
  background: transparent;
}

.about-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9) contrast(1.02) saturate(0.95);
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(253, 249, 242, 0.72) 0%,
      rgba(247, 239, 227, 0.58) 28%,
      rgba(241, 230, 214, 0.46) 56%,
      rgba(241, 230, 214, 0.72) 100%
    );
}

.plain-luxury-text {
  position: relative;
  z-index: 3;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 36px;
}

.plain-luxury-text::before {
  content: "";
  position: absolute;
  inset: -24px -30px;
  z-index: -1;
  background:
    radial-gradient(
      circle at center,
      rgba(247, 239, 227, 0.94) 0%,
      rgba(247, 239, 227, 0.84) 42%,
      rgba(247, 239, 227, 0.42) 76%,
      rgba(247, 239, 227, 0) 100%
    );
  filter: blur(14px);
}

.plain-luxury-text .section-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b2832f;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.plain-luxury-text h1 {
  margin: 0 0 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(
    180deg,
    #c79a3b 0%,
    #a97822 38%,
    #7f5a1f 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.plain-luxury-text p {
  max-width: 920px;
  margin: 0 auto 26px;
  font-size: 1.12rem;
  line-height: 2;
  color: rgba(110, 79, 38, 0.95);
  text-align: center;
}

.plain-luxury-text p:last-child {
  margin-bottom: 0;
}

/* =========================
   PAR MUMS - RAŽOTĀJA BLOKS
   ========================= */
.about-manufacturer-section {
  position: relative;
  padding: 30px 20px 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.about-manufacturer-section::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.38), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
  animation: luxuryAuraFlow 18s ease-in-out infinite alternate;
}

.about-manufacturer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 18%,
      rgba(255, 255, 255, 0.22) 30%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.65;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.about-manufacturer-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.about-manufacturer-text {
  max-width: 690px;
}

.about-manufacturer-text h2 {
  margin: 0 0 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  font-weight: 600;
  color: #342317;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px rgba(188, 146, 58, 0.06);
}

.about-manufacturer-text p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(62, 44, 31, 0.88);
}

.about-manufacturer-text p:last-child {
  margin-bottom: 0;
}

.about-manufacturer-video-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.about-manufacturer-video-box {
  position: relative;
  width: 100%;
  max-width: 470px;
  height: 620px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 241, 0.58)),
    rgba(248, 242, 232, 0.88);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 24px 54px rgba(90, 64, 40, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.about-manufacturer-video-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%),
    linear-gradient(to top, rgba(32, 20, 12, 0.16), rgba(32, 20, 12, 0) 56%);
}

.about-manufacturer-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.03) saturate(0.98);
}

/* =========================
   22. PIEGĀDES BLOKS
   ========================= */
.simple-delivery-section {
  min-height: auto;
  padding: 90px 20px 110px;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.simple-delivery-section .plain-luxury-text {
  max-width: 980px;
}

.simple-delivery-section h2 {
  margin: 0 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  font-weight: 600;
  color: #342317;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px rgba(188, 146, 58, 0.06);
}

.simple-delivery-section p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.95;
  color: rgba(92, 66, 36, 0.92);
  text-align: center;
}

/* =========================
   23. REVEAL ANIMĀCIJAS
   ========================= */
.reveal-left {
  opacity: 0;
  transform: translateX(-120px);
  transition:
    opacity 1.9s ease,
    transform 1.9s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform, opacity;
}

.reveal-left.is-visible,
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(120px);
  transition:
    opacity 1.9s ease,
    transform 1.9s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform, opacity;
}

.reveal-right.is-visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1.6s ease,
    transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform, opacity;
}

.reveal-up.is-visible,
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slow-delay-1 { transition-delay: 0.15s; }
.slow-delay-2 { transition-delay: 0.55s; }
.slow-delay-3 { transition-delay: 0.95s; }
.slow-delay-4 { transition-delay: 1.35s; }
.slow-delay-5 { transition-delay: 1.75s; }

/* =========================
   24. KEYFRAMES
   ========================= */
@keyframes logoDrop {
  0% {
    opacity: 0;
    transform: translateY(-32px);
  }
  60% {
    opacity: 1;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoShine {
  0% {
    left: -120%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  45% {
    left: 130%;
    opacity: 0.95;
  }
  100% {
    left: 130%;
    opacity: 0;
  }
}

@keyframes heroSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-90px);
  }
  70% {
    opacity: 1;
    transform: translateX(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroTextShine {
  0% {
    left: -30%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  46% {
    left: 102%;
    opacity: 0.9;
  }
  100% {
    left: 102%;
    opacity: 0;
  }
}

@keyframes gentleFloat {
  0% {
    transform: scale(1.05) translateX(0) translateY(0);
  }
  25% {
    transform: scale(1.07) translateX(-4px) translateY(-3px);
  }
  50% {
    transform: scale(1.08) translateX(3px) translateY(-5px);
  }
  75% {
    transform: scale(1.07) translateX(-2px) translateY(2px);
  }
  100% {
    transform: scale(1.05) translateX(0) translateY(0);
  }
}

@keyframes luxuryAuraFlow {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 1.5%, 0) scale(1.05);
  }
}

@keyframes luxurySilkSweep {
  0% {
    transform: translateX(-130%) skewX(-14deg);
    opacity: 0;
  }
  18% {
    opacity: 0.55;
  }
  48% {
    transform: translateX(115%) skewX(-14deg);
    opacity: 0.65;
  }
  100% {
    transform: translateX(115%) skewX(-14deg);
    opacity: 0;
  }
}

@keyframes luxuryPulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }
  50% {
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.10);
  }
}

@keyframes luxuryFloatA {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-2px) translateY(-6px); }
}

@keyframes luxuryFloatB {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(2px) translateY(-4px); }
}

@keyframes luxuryFloatC {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-1px) translateY(-5px); }
}

@keyframes luxuryFloatD {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(2px) translateY(-3px); }
}

@keyframes overlayFlow {
  0% {
    transform: translateY(-50%) translateX(-24%);
  }
  100% {
    transform: translateY(-50%) translateX(0%);
  }
}

/* =========================
   25. JURIDISKAIS FOOTER
   ========================= */
.legal-footer {
  position: relative;
  padding: 38px 20px 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
  border-top: 1px solid rgba(173, 132, 45, 0.14);
}

.legal-footer::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.38), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
  animation: luxuryAuraFlow 18s ease-in-out infinite alternate;
}

.legal-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 18%,
      rgba(255, 255, 255, 0.22) 30%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.65;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.legal-footer-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.legal-footer-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(82, 58, 33, 0.88);
}

.legal-footer-text strong {
  color: #7a5822;
  font-weight: 600;
}

.legal-footer-links {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.legal-footer-links a {
  color: #9b7430;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.legal-footer-links a:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

/* =========================
   26. PARTNERU LAPA
   ========================= */
.partners-luxury-page {
  min-height: 100vh;
  padding-top: 74px;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.partners-luxury-hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 90px;
  overflow: hidden;
  background: #15100d;
}

.partners-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
  filter: brightness(0.50) contrast(1.03) saturate(0.96);
}

.partners-luxury-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(12, 8, 6, 0.66) 0%,
      rgba(12, 8, 6, 0.48) 30%,
      rgba(12, 8, 6, 0.34) 60%,
      rgba(12, 8, 6, 0.40) 100%
    );
}

.partners-luxury-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 24%, rgba(255,255,255,0.08), transparent 14%),
    radial-gradient(circle at 58% 52%, rgba(212,175,55,0.10), transparent 16%),
    linear-gradient(
      115deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.06) 22%,
      rgba(255,255,255,0.12) 34%,
      rgba(255,255,255,0.04) 44%,
      rgba(255,255,255,0) 56%
    );
}

.partners-luxury-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.partners-luxury-textbox {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.partners-luxury-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 22px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #f1d39b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255, 226, 160, 0.20);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.partners-luxury-inner h1 {
  margin: 0 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8vw, 122px);
  line-height: 0.95;
  font-weight: 600;
  color: #fff6e8;
  letter-spacing: -0.03em;
  text-align: center;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(212, 175, 55, 0.07);
}

.partners-luxury-inner p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.95;
  color: rgba(255, 244, 228, 0.96);
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

/* =========================
   27. PARTNERU SADARBĪBAS BLOKS
   ========================= */
.partners-collab-section {
  position: relative;
  padding: 36px 20px 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.partners-collab-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.partners-collab-text {
  max-width: 700px;
}

.partners-collab-text h2 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  font-weight: 600;
  color: #342317;
  letter-spacing: -0.01em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.60),
    0 10px 24px rgba(188, 146, 58, 0.07);
}

.partners-collab-text p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.82;
  color: rgba(73, 52, 33, 0.90);
}

.partners-collab-text p:last-child {
  margin-bottom: 0;
}

.partners-collab-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  justify-items: end;
}

.partners-collab-image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 241, 0.62)),
    rgba(248, 242, 232, 0.90);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 24px 54px rgba(90, 64, 40, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.partners-collab-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%),
    linear-gradient(to top, rgba(32, 20, 12, 0.14), rgba(32, 20, 12, 0) 58%);
}

.partners-collab-image.large {
  width: 100%;
  max-width: 430px;
  height: 290px;
}

.partners-collab-image.small {
  width: 82%;
  max-width: 320px;
  height: 220px;
  margin-right: 36px;
}

.partners-collab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.98) contrast(1.03) saturate(0.98);
  transition: transform 1.2s ease;
}

.partners-collab-image:hover img {
  transform: scale(1.05);
}

/* =========================
   28. PARTNERU PRODUKTU BLOKS
   ========================= */
.partners-products-section {
  position: relative;
  padding: 20px 20px 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.partners-products-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.partners-products-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  justify-items: start;
}

.partners-products-image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 241, 0.62)),
    rgba(248, 242, 232, 0.90);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 24px 54px rgba(90, 64, 40, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.partners-products-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%),
    linear-gradient(to top, rgba(32, 20, 12, 0.14), rgba(32, 20, 12, 0) 58%);
}

.partners-products-image.large {
  width: 100%;
  max-width: 430px;
  height: 290px;
}

.partners-products-image.small {
  width: 82%;
  max-width: 320px;
  height: 220px;
  margin-left: 36px;
}

.partners-products-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.98) contrast(1.03) saturate(0.98);
  transition: transform 1.2s ease;
}

.partners-products-image:hover img {
  transform: scale(1.05);
}

.partners-products-text {
  max-width: 700px;
}

.partners-products-text h2 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  font-weight: 600;
  color: #342317;
  letter-spacing: -0.01em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.60),
    0 10px 24px rgba(188, 146, 58, 0.07);
}

.partners-products-text p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.82;
  color: rgba(73, 52, 33, 0.90);
}

.partners-products-text p:last-child {
  margin-bottom: 0;
}

/* =========================
   29. B2B BLOKS
   ========================= */
.partners-b2b-section {
  position: relative;
  padding: 12px 20px 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.partners-b2b-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 36px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 241, 0.62)),
    rgba(248, 242, 232, 0.90);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 24px 54px rgba(90, 64, 40, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.partners-b2b-text h2 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  font-weight: 600;
  color: #342317;
  letter-spacing: -0.01em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.60),
    0 10px 24px rgba(188, 146, 58, 0.07);
}

.partners-b2b-text p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.82;
  color: rgba(73, 52, 33, 0.90);
}

.partners-b2b-text p:last-child {
  margin-bottom: 0;
}

/* =========================
   30. B2B SARAKSTS
   ========================= */
.partners-b2b-list-section {
  position: relative;
  padding: 0 20px 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.partners-b2b-list-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.partners-b2b-list {
  display: grid;
  gap: 16px;
}

.partners-b2b-item {
  position: relative;
  padding: 22px 26px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 241, 0.62)),
    rgba(248, 242, 232, 0.90);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 20px 42px rgba(90, 64, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.partners-b2b-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%),
    linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.00) 50%);
}

.partners-b2b-item span {
  position: relative;
  z-index: 2;
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.14;
  font-weight: 600;
  color: #3a2718;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.58),
    0 8px 20px rgba(188, 146, 58, 0.06);
}

/* =========================
   31. KĀPĒC SADARBOTIES AR MUMS
   ========================= */
.why-us-section {
  position: relative;
  padding: 12px 20px 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.12), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.75), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.07), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.why-us-block,
.why-us-lines {
  position: relative;
  z-index: 2;
}

.why-us-block {
  max-width: 980px;
  margin: 0 auto 28px;
}

.why-us-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 600;
  color: #2f2016;
  letter-spacing: -0.02em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.58),
    0 10px 24px rgba(188, 146, 58, 0.05);
}

.why-us-lines {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.why-us-line {
  padding: 26px 0;
  border-bottom: 1px solid rgba(123, 92, 59, 0.18);
}

.why-us-line:first-child {
  border-top: 1px solid rgba(123, 92, 59, 0.18);
}

.why-us-line span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.14;
  font-weight: 600;
  color: #2f2016;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 20px rgba(188, 146, 58, 0.04);
}

/* =========================
   32. RESPONSIVE
   ========================= */
@media (max-width: 1200px) {
  .logo-img {
    height: 68px;
  }

  .main-nav {
    gap: 10px;
  }

  .main-nav a {
    padding: 12px 14px;
    font-size: 15px;
  }
}

@media (max-width: 1100px) {
  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-mini-card {
    min-height: 350px;
  }
}

@media (max-width: 992px) {
  .hero-right-image {
    width: 64%;
  }

  .hero-content h1 {
    font-size: 3.4rem;
  }

  .material-title-mask,
  .centered-title-mask {
    max-width: 760px;
  }

  .svg-title-line1,
  .svg-title-line2 {
    font-size: 58px;
  }

  .material-plain-title {
    font-size: 3.4rem;
  }
}

@media (max-width: 991px) {
  .premium-presence-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .luxury-image-composition {
    max-width: 100%;
    height: 460px;
    margin: 0 auto;
    justify-self: center;
  }

  .premium-presence-text h2 {
    font-size: clamp(30px, 9vw, 48px);
  }

  .premium-presence-text p {
    font-size: 17px;
    line-height: 1.7;
  }
}

@media (max-width: 900px) {
  .about-manufacturer-inner,
  .partners-collab-inner,
  .partners-products-inner,
  .juniper-story-row,
  .services-premium-row,
  .services-dual-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-manufacturer-text,
  .partners-collab-text,
  .partners-products-text,
  .services-premium-text,
  .services-dual-text,
  .juniper-story-text {
    max-width: 100%;
  }

  .about-manufacturer-video-wrap,
  .partners-collab-images,
  .partners-products-images,
  .juniper-story-images {
    justify-content: center;
    justify-items: center;
  }

  .partners-collab-image.large,
  .partners-collab-image.small,
  .partners-products-image.large,
  .partners-products-image.small,
  .juniper-story-image.large,
  .juniper-story-image.small {
    width: 100%;
    max-width: 100%;
    height: 240px;
    margin-left: 0;
    margin-right: 0;
  }

  .about-manufacturer-video-box {
    max-width: 100%;
    height: 500px;
  }

  .services-premium-image {
    height: 210px;
  }

  .services-dual-images {
    grid-template-columns: 1fr 1fr;
  }

  .services-dual-image.large,
  .services-dual-image.small {
    height: 220px;
    transform: none;
  }
}

@media (max-width: 768px) {
  .topbar {
    height: 74px;
    overflow: visible;
  }

  .topbar-video,
  .topbar-overlay {
    height: 74px;
  }

  .nav-container {
    height: 74px;
    padding: 0 16px;
    gap: 10px;
    position: relative;
  }

  .site-logo {
    width: 110px;
    height: 74px;
    opacity: 1;
    transform: none;
    animation: none;
    flex-shrink: 0;
  }

  .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1002;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    background: linear-gradient(
      180deg,
      rgba(48, 30, 18, 0.98) 0%,
      rgba(32, 20, 12, 0.98) 100%
    );
    border-top: 1px solid rgba(255, 230, 180, 0.14);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
  }

  .main-nav.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
  }

  .main-nav a::after {
    left: 16px;
    right: 16px;
    bottom: 7px;
  }

  .language-switch {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .partners-page {
    padding-top: 74px;
  }

  .partners-hero {
    min-height: auto;
    padding: 110px 16px 64px;
    text-align: center;
  }

  .hero-inner {
    display: block;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 18px;
    font-size: 0.68rem;
    padding: 9px 14px;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 64px);
    line-height: 0.98;
    margin-bottom: 18px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.96rem;
    line-height: 1.75;
    text-align: center;
  }

  .luxury-section,
  .statement-section,
  .offer-lines-section,
  .why-us-section,
  .partners-list-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .luxury-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-grid.reverse .content-side,
  .section-grid.reverse .visual-side {
    order: initial;
  }

  .content-side,
  .partners-list-head,
  .why-us-top {
    max-width: 100%;
  }

  .content-side h2,
  .statement-wrap h2,
  .why-us-top h2,
  .partners-list-head h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.08;
  }

  .content-side p,
  .statement-wrap p,
  .partners-list-head p,
  .partner-card p {
    font-size: 0.93rem;
    line-height: 1.72;
  }

  .visual-side {
    min-height: 360px;
  }

  .lux-image-main {
    width: 84%;
    height: 250px;
    border-radius: 22px;
  }

  .lux-image-small {
    width: 56%;
    height: 145px;
    border-radius: 18px;
  }

  .statement-wrap {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .offer-lines {
    gap: 12px;
  }

  .offer-line {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .offer-line span {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.16;
    padding-left: 10px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .why-card h3 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .partners-list-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partner-card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .partner-card h3 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .legal-footer {
    padding: 30px 16px 34px;
  }

  .legal-footer-text {
    font-size: 0.8rem;
    line-height: 1.65;
  }
}

@media (max-width: 640px) {
  .luxury-image-composition {
    height: 360px;
  }

  .luxury-image {
    padding: 10px;
  }

  .luxury-image-label {
    font-size: 12px;
    padding: 8px 10px;
  }

  .luxury-image-1 {
    width: 150px;
    height: 180px;
    left: 20px;
  }

  .luxury-image-2 {
    width: 160px;
    height: 120px;
  }

  .luxury-image-3 {
    width: 145px;
    height: 115px;
  }

  .luxury-image-4 {
    width: 170px;
    height: 160px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .topbar {
    height: 74px;
    min-height: 74px;
  }

  .nav-container {
    height: 74px;
    min-height: 74px;
    padding: 0 10px;
    gap: 8px;
  }

  .site-logo {
    width: 100px;
    height: 74px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .main-nav {
    padding: 16px 12px 18px;
  }

  .language-switch {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
  }

  .lang {
    font-size: 0.78rem;
    padding: 6px 8px;
    gap: 5px;
  }

  .flag-wrap,
  .flag-icon {
    width: 18px;
    height: 12px;
    min-width: 18px;
    min-height: 12px;
    max-width: 18px;
    max-height: 12px;
  }

  .hero-section {
    padding: 128px 16px 60px;
  }

  .hero-content-left {
    transform: translateX(-40px);
  }

  .hero-subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .hero-content h1 {
    font-size: 2.35rem;
    line-height: 1;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-shine {
    width: 55%;
    height: 115%;
  }

  .hero-right-image {
    opacity: 0.18;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.92rem;
  }

  .services-section {
    padding: 62px 12px 74px;
  }

  .section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .services-heading h2 {
    font-size: 1.95rem;
  }

  .service-mini-media {
    height: 185px;
  }

  .service-mini-content {
    padding: 18px 16px 20px;
  }

  .service-mini-content h3 {
    font-size: 1.48rem;
  }

  .service-mini-content p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .simple-material-left {
    padding: 14px 12px 0 !important;
  }

  .premium-presence-section {
    padding: 0 5% 68px !important;
  }

  .text-only-shell .material-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .svg-title-line1,
  .svg-title-line2 {
    font-size: 31px;
  }

  .material-text-left {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .material-plain-title {
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .why-juniper-section {
    padding: 58px 12px;
  }

  .why-juniper-text h2 {
    font-size: 2.1rem;
  }

  .why-juniper-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .why-juniper-points {
    margin-top: 28px;
    gap: 20px;
  }

  .why-point h3 {
    font-size: 1.45rem;
  }

  .why-point p {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .why-juniper-cta {
    margin-top: 30px;
  }

  .juniper-story-section {
    padding: 58px 12px 74px;
  }

  .juniper-story-row {
    gap: 20px;
  }

  .juniper-story-text h2 {
    font-size: 2rem;
  }

  .juniper-story-text p {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .juniper-story-image.large,
  .juniper-story-image.small {
    height: 180px;
    border-radius: 20px;
  }

  .services-page-hero {
    padding: 118px 12px 60px;
  }

  .services-page-hero-text h1 {
    font-size: 2.1rem;
  }

  .services-page-hero-text p {
    font-size: 15px;
    line-height: 1.75;
  }

  .services-premium-list {
    margin-top: 28px;
    gap: 18px;
  }

  .services-premium-text h3 {
    font-size: 1.45rem;
  }

  .services-premium-text p {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .services-premium-meta {
    font-size: 0.64rem;
  }

  .services-premium-image {
    height: 170px;
    border-radius: 16px;
  }

  .services-dual-section {
    padding: 0 12px 68px;
  }

  .services-dual-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-dual-text h2 {
    font-size: 1.7rem;
  }

  .services-dual-text p {
    font-size: 0.88rem;
    line-height: 1.68;
  }

  .services-dual-meta {
    font-size: 0.64rem;
  }

  .services-dual-image.large,
  .services-dual-image.small {
    height: 170px;
    transform: none;
  }

  .services-overlay-text {
    padding: 14px 10px;
  }

  .services-overlay-text::before {
    inset: -8px -6px;
    filter: blur(6px);
  }

  .services-overlay-text h2 {
    font-size: 1.85rem;
  }

  .services-overlay-text p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .services-overlay-image {
    width: 210px;
    height: 135px;
  }

  .services-overlay-image:nth-child(2n) {
    margin-top: 12px;
  }

  .services-overlay-inner {
    min-height: 320px;
  }

  .about-video-background-section {
    min-height: 560px;
    padding: 128px 12px 74px;
  }

  .plain-luxury-text {
    padding: 14px 10px;
  }

  .plain-luxury-text h1 {
    font-size: 2.5rem;
  }

  .plain-luxury-text p {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .simple-delivery-section {
    padding: 58px 12px 74px;
  }

  .simple-delivery-section h2 {
    font-size: 2.1rem;
  }

  .simple-delivery-section p {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .legal-footer {
    padding: 28px 12px 32px;
  }

  .legal-footer-inner {
    max-width: 100%;
  }

  .legal-footer-text {
    font-size: 0.8rem;
    line-height: 1.7;
  }

  .legal-footer-links {
    gap: 8px 14px;
  }

  .partners-luxury-hero {
    padding: 104px 12px 60px;
  }

  .partners-luxury-badge {
    font-size: 0.66rem;
    padding: 9px 13px;
  }

  .partners-luxury-inner h1 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.02;
  }

  .partners-luxury-inner p {
    font-size: 0.95rem;
    line-height: 1.74;
  }

  .partners-collab-section,
  .partners-products-section,
  .partners-b2b-section,
  .partners-b2b-list-section,
  .why-us-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .partners-collab-text h2,
  .partners-products-text h2,
  .partners-b2b-text h2,
  .why-us-block h2 {
    font-size: 1.8rem;
  }

  .partners-collab-text p,
  .partners-products-text p,
  .partners-b2b-text p {
    font-size: 0.88rem;
    line-height: 1.68;
  }

  .partners-collab-image,
  .partners-products-image {
    border-radius: 20px;
  }

  .partners-collab-image.large,
  .partners-collab-image.small,
  .partners-products-image.large,
  .partners-products-image.small {
    height: 180px;
  }

  .partners-b2b-inner {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .partners-b2b-item {
    padding: 18px 18px;
    border-radius: 20px;
  }

  .partners-b2b-item span,
  .why-us-line span {
    font-size: 1.2rem;
  }

  .why-us-section {
    padding-top: 6px;
    padding-bottom: 68px;
  }
}/* =========================================================
   MOBILE FIX PACK
   Ielikt PAŠĀS CSS BEIGĀS
   ========================================================= */

/* Drošība pret horizontālu izslīdēšanu */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
svg,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Vienots konteineru drošības noteikums */
.services-shell,
.material-shell,
.premium-presence-inner,
.why-juniper-inner,
.juniper-story-row,
.about-manufacturer-inner,
.partners-collab-inner,
.partners-products-inner,
.partners-b2b-inner,
.partners-b2b-list-inner,
.why-us-block,
.why-us-lines,
.section-box,
.hero-inner,
.hero-copy,
.nav-container,
.legal-footer-inner {
  width: 100%;
  min-width: 0;
}

/* Tekstu pārplūdes aizsardzība */
h1, h2, h3, h4, h5, h6,
p, a, span, div {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Video un overlay slāņi nevar radīt klikšķu problēmas */
.topbar-video,
.topbar-overlay,
.hero-base-video,
.hero-blend-mist,
.hero-dark-overlay,
.about-bg-video,
.about-video-overlay,
.partners-hero-video {
  pointer-events: none;
}

/* -------------------------
   TABLET / MAZĀKS DESKTOP
   ------------------------- */
@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
  }

  .main-nav a {
    padding: 12px 14px;
    font-size: 15px;
  }

  .hero-section {
    padding: 120px 32px 56px;
  }

  .hero-content {
    max-width: 620px;
  }

  .hero-content h1 {
    font-size: 3.1rem;
  }

  .hero-right-image {
    width: 60%;
    opacity: 0.72;
  }

  .services-row,
  .cards-grid,
  .catalog-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-juniper-points {
    grid-template-columns: 1fr 1fr;
  }

  .premium-presence-inner,
  .about-manufacturer-inner,
  .partners-collab-inner,
  .partners-products-inner,
  .juniper-story-row,
  .services-premium-row,
  .services-dual-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .premium-presence-text,
  .about-manufacturer-text,
  .partners-collab-text,
  .partners-products-text,
  .juniper-story-text,
  .services-premium-text,
  .services-dual-text {
    max-width: 100%;
  }

  .luxury-image-composition {
    max-width: 100%;
    margin: 0 auto;
    justify-self: center;
  }

  .about-manufacturer-video-wrap,
  .partners-collab-images,
  .partners-products-images,
  .juniper-story-images {
    justify-content: center;
    justify-items: center;
  }

  .about-manufacturer-video-box {
    max-width: 100%;
    height: 520px;
  }

  .partners-collab-image.large,
  .partners-collab-image.small,
  .partners-products-image.large,
  .partners-products-image.small,
  .juniper-story-image.large,
  .juniper-story-image.small {
    width: 100%;
    max-width: 100%;
    height: 240px;
    margin: 0;
  }

  .services-dual-images {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .services-dual-image.large,
  .services-dual-image.small {
    height: 210px;
    transform: none;
  }
}

/* -------------------------
   TELEFONS
   ------------------------- */
@media (max-width: 768px) {
  /* Header */
  .topbar {
    height: 74px;
    min-height: 74px;
    overflow: visible;
  }

  .topbar-video,
  .topbar-overlay {
    height: 74px;
  }

  .nav-container {
    height: 74px;
    min-height: 74px;
    padding: 0 14px;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: visible;
  }

  .site-logo {
    width: 104px;
    height: 74px;
    flex: 0 0 auto;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .logo-shine {
    display: none;
  }

  /* Burger */
  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1003;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  /* Mobilā izvēlne */
  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    background: linear-gradient(
      180deg,
      rgba(48, 30, 18, 0.98) 0%,
      rgba(32, 20, 12, 0.98) 100%
    );
    border-top: 1px solid rgba(255, 230, 180, 0.14);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-height: calc(100vh - 74px);
    overflow-y: auto;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
    z-index: 1002;
  }

  .main-nav.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.2;
    border-radius: 12px;
    white-space: normal;
  }

  .main-nav a::after {
    left: 16px;
    right: 16px;
    bottom: 7px;
  }

  /* Valodu bloks mobilajā izvēlnē */
  .language-switch {
    width: 100%;
    margin: 4px 0 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .lang {
    font-size: 0.84rem;
    padding: 8px 10px;
  }

  /* Hero */
  .hero-section {
    min-height: auto;
    padding: 122px 16px 56px;
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content-left {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
  }

  .hero-content h1 {
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1.02;
    margin-bottom: 14px;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero-shine {
    display: none;
  }

  .hero-right-image-layer {
    justify-content: center;
  }

  .hero-right-image {
    width: 100%;
    opacity: 0.18;
    mix-blend-mode: normal;
    object-position: center;
  }

  .hero-blend-mist {
    opacity: 0.55;
    filter: blur(10px);
  }

  .hero-dark-overlay {
    background:
      linear-gradient(
        to right,
        rgba(12, 8, 6, 0.68) 0%,
        rgba(12, 8, 6, 0.54) 40%,
        rgba(12, 8, 6, 0.56) 100%
      );
  }

  /* Universālas sekciju atstarpes */
  .services-section,
  .material-section,
  .why-juniper-section,
  .juniper-story-section,
  .info-section,
  .services-page-hero,
  .services-dual-section,
  .services-overlay-section,
  .about-video-background-section,
  .about-manufacturer-section,
  .simple-delivery-section,
  .partners-collab-section,
  .partners-products-section,
  .partners-b2b-section,
  .partners-b2b-list-section,
  .why-us-section,
  .legal-footer {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .services-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .material-section {
    padding-top: 18px;
    padding-bottom: 72px;
  }

  .premium-presence-section {
    padding: 0 14px 70px !important;
  }

  .why-juniper-section,
  .juniper-story-section,
  .simple-delivery-section {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .services-page-hero {
    padding-top: 118px;
    padding-bottom: 56px;
  }

  .about-video-background-section {
    min-height: 520px;
    padding-top: 122px;
    padding-bottom: 74px;
  }

  /* Virsraksti */
  .services-heading,
  .why-juniper-text,
  .centered-material-text,
  .plain-luxury-text,
  .hero-copy,
  .partners-luxury-textbox {
    max-width: 100%;
  }

  .services-heading h2,
  .premium-presence-text h2,
  .why-juniper-text h2,
  .juniper-story-text h2,
  .section-box h2,
  .services-overlay-text h2,
  .about-manufacturer-text h2,
  .simple-delivery-section h2,
  .partners-collab-text h2,
  .partners-products-text h2,
  .partners-b2b-text h2,
  .why-us-block h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.08;
  }

  .material-plain-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.06;
  }

  .plain-luxury-text h1,
  .hero-title,
  .partners-luxury-inner h1 {
    font-size: clamp(2.3rem, 12vw, 4rem);
    line-height: 1.02;
  }

  .services-heading p,
  .material-text-left,
  .why-juniper-description,
  .juniper-story-text p,
  .premium-presence-text p,
  .section-box p,
  .services-overlay-text p,
  .about-manufacturer-text p,
  .plain-luxury-text p,
  .simple-delivery-section p,
  .partners-collab-text p,
  .partners-products-text p,
  .partners-b2b-text p,
  .hero-text,
  .partners-luxury-inner p {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  /* Gridi uz vienu kolonnu */
  .services-row,
  .cards-grid,
  .catalog-grid,
  .gallery-grid,
  .partners-grid,
  .why-juniper-points {
    grid-template-columns: 1fr;
  }

  /* Services kartītes */
  .service-mini-card {
    min-height: auto;
  }

  .service-mini-media {
    height: 190px;
  }

  .service-mini-content {
    padding: 18px 16px 20px;
  }

  .service-mini-content h3 {
    font-size: 1.55rem;
  }

  .service-mini-content p {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  /* Premium presence */
  .premium-presence-inner {
    gap: 24px;
  }

  .luxury-image-composition {
    width: 100%;
    height: 360px;
    max-width: 100%;
  }

  .luxury-image {
    padding: 10px;
  }

  .luxury-image-label {
    font-size: 12px;
    padding: 8px 10px;
  }

  .luxury-image-1 {
    top: 0;
    left: 14px;
    width: 145px;
    height: 176px;
  }

  .luxury-image-2 {
    top: 36px;
    right: 0;
    width: 156px;
    height: 116px;
  }

  .luxury-image-3 {
    left: 0;
    bottom: 10px;
    width: 140px;
    height: 110px;
  }

  .luxury-image-4 {
    right: 8px;
    bottom: 0;
    width: 166px;
    height: 154px;
  }

  /* Why juniper */
  .why-juniper-points {
    margin-top: 28px;
    gap: 18px;
  }

  .why-point h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
  }

  .why-point p {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  /* Story / attēlu bloki */
  .juniper-story-row,
  .about-manufacturer-inner,
  .partners-collab-inner,
  .partners-products-inner,
  .services-premium-row,
  .services-dual-row {
    gap: 22px;
  }

  .juniper-story-image.large,
  .juniper-story-image.small,
  .partners-collab-image.large,
  .partners-collab-image.small,
  .partners-products-image.large,
  .partners-products-image.small {
    height: 200px;
    border-radius: 20px;
  }

  .about-manufacturer-video-box {
    height: 420px;
    border-radius: 24px;
  }

  /* Services premium */
  .services-premium-list {
    margin-top: 28px;
    gap: 18px;
  }

  .services-premium-row {
    padding: 14px 0;
  }

  .services-premium-image {
    height: 180px;
    border-radius: 18px;
  }

  .services-premium-text h3 {
    font-size: 1.45rem;
  }

  .services-premium-text p {
    font-size: 0.9rem;
    line-height: 1.66;
  }

  .services-premium-meta {
    font-size: 0.66rem;
    line-height: 1.6;
  }

  /* Services dual */
  .services-dual-section {
    padding-top: 0;
    padding-bottom: 68px;
  }

  .services-dual-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-dual-image.large,
  .services-dual-image.small {
    height: 180px;
    transform: none !important;
    border-radius: 18px;
  }

  .services-dual-text h2 {
    font-size: 1.7rem;
  }

  .services-dual-text p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .services-dual-meta {
    font-size: 0.66rem;
  }

  /* Overlay sekcija */
  .services-overlay-inner {
    min-height: 300px;
  }

  .services-overlay-track {
    gap: 14px;
  }

  .services-overlay-image {
    width: 200px;
    height: 128px;
  }

  .services-overlay-image:nth-child(2n) {
    margin-top: 10px;
  }

  .services-overlay-text {
    max-width: 100%;
    padding: 14px 8px;
  }

  .services-overlay-text::before {
    inset: -8px -6px;
    filter: blur(6px);
  }

  /* Box sekcijas */
  .section-box {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .info-card,
  .catalog-card,
  .partner-item,
  .gallery-item {
    border-radius: 18px;
  }

  .catalog-image {
    height: 170px;
  }

  /* About */
  .plain-luxury-text {
    padding: 12px 8px;
  }

  .plain-luxury-text::before {
    inset: -12px;
    filter: blur(10px);
  }

  /* Partneru hero */
  .partners-luxury-hero {
    min-height: auto;
    padding: 108px 14px 60px;
  }

  .partners-luxury-badge {
    font-size: 0.66rem;
    padding: 9px 12px;
    letter-spacing: 0.14em;
  }

  /* B2B */
  .partners-b2b-inner {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .partners-b2b-item {
    padding: 18px 18px;
    border-radius: 18px;
  }

  .partners-b2b-item span,
  .why-us-line span {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .why-us-line {
    padding: 18px 0;
  }

  /* Footer */
  .legal-footer {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .legal-footer-text {
    font-size: 0.82rem;
    line-height: 1.68;
  }

  .legal-footer-links {
    gap: 8px 14px;
  }
}

/* -------------------------
   MAZS TELEFONS
   ------------------------- */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 10px;
    gap: 8px;
  }

  .site-logo {
    width: 96px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .menu-toggle span {
    width: 20px;
  }

  .main-nav {
    padding: 12px 10px 16px;
  }

  .main-nav a {
    padding: 13px 14px;
    font-size: 15px;
  }

  .language-switch {
    gap: 6px;
  }

  .lang {
    font-size: 0.78rem;
    padding: 6px 8px;
    gap: 5px;
  }

  .flag-wrap,
  .flag-icon {
    width: 18px;
    height: 12px;
    min-width: 18px;
    min-height: 12px;
    max-width: 18px;
    max-height: 12px;
  }

  .hero-section {
    padding: 118px 12px 52px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 10vw, 2.45rem);
  }

  .hero-content p {
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .section-eyebrow,
  .material-eyebrow,
  .service-number,
  .premium-mini-label,
  .plain-luxury-text .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .services-heading h2,
  .premium-presence-text h2,
  .why-juniper-text h2,
  .juniper-story-text h2,
  .section-box h2,
  .services-overlay-text h2,
  .about-manufacturer-text h2,
  .simple-delivery-section h2,
  .partners-collab-text h2,
  .partners-products-text h2,
  .partners-b2b-text h2,
  .why-us-block h2,
  .material-plain-title {
    font-size: 1.85rem;
  }

  .plain-luxury-text h1,
  .hero-title,
  .partners-luxury-inner h1 {
    font-size: clamp(2.15rem, 11vw, 2.8rem);
  }

  .services-heading p,
  .material-text-left,
  .why-juniper-description,
  .juniper-story-text p,
  .premium-presence-text p,
  .section-box p,
  .services-overlay-text p,
  .about-manufacturer-text p,
  .plain-luxury-text p,
  .simple-delivery-section p,
  .partners-collab-text p,
  .partners-products-text p,
  .partners-b2b-text p,
  .hero-text,
  .partners-luxury-inner p,
  .service-mini-content p,
  .why-point p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .services-section,
  .material-section,
  .why-juniper-section,
  .juniper-story-section,
  .info-section,
  .services-page-hero,
  .services-dual-section,
  .services-overlay-section,
  .about-video-background-section,
  .about-manufacturer-section,
  .simple-delivery-section,
  .partners-collab-section,
  .partners-products-section,
  .partners-b2b-section,
  .partners-b2b-list-section,
  .why-us-section,
  .legal-footer {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .services-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .service-mini-media,
  .services-premium-image,
  .services-dual-image.large,
  .services-dual-image.small,
  .catalog-image {
    height: 165px;
  }

  .service-mini-content h3,
  .services-premium-text h3,
  .why-point h3 {
    font-size: 1.35rem;
  }

  .luxury-image-composition {
    height: 320px;
  }

  .luxury-image-1 {
    width: 130px;
    height: 160px;
    left: 12px;
  }

  .luxury-image-2 {
    width: 138px;
    height: 104px;
  }

  .luxury-image-3 {
    width: 126px;
    height: 98px;
  }

  .luxury-image-4 {
    width: 145px;
    height: 136px;
    right: 6px;
  }

  .juniper-story-image.large,
  .juniper-story-image.small,
  .partners-collab-image.large,
  .partners-collab-image.small,
  .partners-products-image.large,
  .partners-products-image.small {
    height: 170px;
  }

  .about-manufacturer-video-box {
    height: 340px;
    border-radius: 20px;
  }

  .services-overlay-inner {
    min-height: 250px;
  }

  .services-overlay-image {
    width: 168px;
    height: 108px;
  }

  .services-overlay-track {
    gap: 10px;
  }

  .section-box {
    padding: 24px 16px;
  }

  .partners-b2b-inner {
    padding: 20px 14px;
  }

  .partners-b2b-item {
    padding: 16px;
  }

  .partners-b2b-item span,
  .why-us-line span {
    font-size: 1.08rem;
  }

  .legal-footer-text {
    font-size: 0.78rem;
  }
}

/* -------------------------
   ĻOTI MAZS TELEFONS
   ------------------------- */
@media (max-width: 360px) {
  .site-logo {
    width: 88px;
  }

  .hero-content h1,
  .plain-luxury-text h1,
  .hero-title,
  .partners-luxury-inner h1 {
    font-size: 1.9rem;
  }

  .services-heading h2,
  .premium-presence-text h2,
  .why-juniper-text h2,
  .juniper-story-text h2,
  .section-box h2,
  .services-overlay-text h2,
  .about-manufacturer-text h2,
  .simple-delivery-section h2,
  .partners-collab-text h2,
  .partners-products-text h2,
  .partners-b2b-text h2,
  .why-us-block h2,
  .material-plain-title {
    font-size: 1.7rem;
  }

  .luxury-image-composition {
    height: 290px;
  }

  .luxury-image-1 {
    width: 118px;
    height: 145px;
  }

  .luxury-image-2 {
    width: 124px;
    height: 96px;
  }

  .luxury-image-3 {
    width: 112px;
    height: 90px;
  }

  .luxury-image-4 {
    width: 132px;
    height: 124px;
  }
}/* =========================
   SERVICES PAGE HERO — CENTRĒTS UN PREMIUM
   ========================= */
.services-page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 90px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.08), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.services-page-hero::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.72), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.34), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
}

.services-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.08) 18%,
      rgba(255, 255, 255, 0.18) 30%,
      rgba(255, 255, 255, 0.06) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.55;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.services-page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-page-hero-text {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 30px;
}

.services-page-hero-text::before {
  content: "";
  position: absolute;
  inset: -20px -26px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at center,
      rgba(247, 239, 227, 0.96) 0%,
      rgba(247, 239, 227, 0.86) 42%,
      rgba(247, 239, 227, 0.42) 76%,
      rgba(247, 239, 227, 0) 100%
    );
  filter: blur(14px);
}

.services-page-hero-text .section-eyebrow {
  display: inline-block;
  margin: 0 auto 18px;
  color: #b2832f;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.services-page-hero-text h1 {
  margin: 0 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 108px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
  background: linear-gradient(
    180deg,
    #c79a3b 0%,
    #a97822 38%,
    #7f5a1f 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.services-page-hero-text p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.95;
  text-align: center;
  color: rgba(92, 66, 36, 0.94);
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {
  .services-page-hero {
    min-height: auto;
    padding: 124px 16px 70px;
  }

  .services-page-hero-text {
    padding: 18px 10px;
  }

  .services-page-hero-text::before {
    inset: -10px -8px;
    filter: blur(8px);
  }

  .services-page-hero-text .section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
  }

  .services-page-hero-text h1 {
    font-size: clamp(38px, 11vw, 64px);
    line-height: 1;
    margin-bottom: 16px;
  }

  .services-page-hero-text p {
    font-size: 0.95rem;
    line-height: 1.72;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .services-page-hero {
    padding: 110px 12px 56px;
  }

  .services-page-hero-text h1 {
    font-size: 2.4rem;
  }

  .services-page-hero-text p {
    font-size: 0.9rem;
    line-height: 1.66;
  }
}.contact-lux-hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 120px 20px 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(212,175,55,0.10), transparent 20%),
    radial-gradient(circle at 88% 14%, rgba(255,255,255,0.95), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(212,175,55,0.07), transparent 18%),
    linear-gradient(180deg, #fcf8f2 0%, #f4eadf 48%, #ecddcb 100%);
}

.contact-lux-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.20), transparent 20%);
}

.contact-lux-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.contact-lux-left {
  max-width: 600px;
}

.contact-lux-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #a67830;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 10px 24px rgba(77, 53, 30, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.70);
}

.contact-lux-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #342317;
  margin-bottom: 24px;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.55),
    0 10px 30px rgba(120, 90, 40, 0.06);
}

.contact-lux-left p {
  max-width: 540px;
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(73, 52, 33, 0.84);
}

.contact-main-card {
  position: relative;
  padding: 42px 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,249,241,0.54)),
    rgba(250, 244, 236, 0.84);
  border: 1px solid rgba(173, 132, 45, 0.12);
  box-shadow:
    0 28px 60px rgba(77, 53, 30, 0.10),
    0 0 30px rgba(212, 175, 55, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.contact-main-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 42%),
    radial-gradient(circle at top right, rgba(212,175,55,0.06), transparent 28%);
}

.contact-logo-wrap {
  position: relative;
  z-index: 2;
  width: 220px;
  max-width: 100%;
  margin-bottom: 26px;
}

.contact-logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 4px 12px rgba(0,0,0,0.10))
    drop-shadow(0 0 10px rgba(212,175,55,0.08));
}

.contact-info-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.contact-info-row {
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.46);
  border: 1px solid rgba(173, 132, 45, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.60),
    0 10px 24px rgba(77, 53, 30, 0.04);
}

.contact-info-label {
  display: block;
  margin-bottom: 8px;
  color: #b38436;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-info-value {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
  font-weight: 600;
  color: #3a2718;
  letter-spacing: -0.01em;
  text-decoration: none;
}

a.contact-info-value:hover {
  opacity: 0.72;
}

@media (max-width: 980px) {
  .contact-lux-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-lux-left {
    max-width: 100%;
  }

  .contact-lux-left p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-lux-hero {
    min-height: auto;
    padding: 105px 16px 70px;
  }

  .contact-main-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .contact-info-row {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .contact-info-value {
    font-size: clamp(22px, 7vw, 30px);
  }

  .contact-lux-left p {
    font-size: 0.94rem;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .contact-lux-hero {
    padding: 94px 12px 54px;
  }

  .contact-main-card {
    padding: 24px 16px;
  }

  .contact-logo-wrap {
    width: 180px;
    margin-bottom: 22px;
  }
}.contacts-page {
  padding-top: 74px;
}

.contacts-luxury {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  padding: 84px 20px 96px;
  background:
    radial-gradient(circle at 10% 18%, rgba(214, 180, 101, 0.14), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.92), transparent 22%),
    radial-gradient(circle at 82% 82%, rgba(201, 157, 77, 0.08), transparent 20%),
    linear-gradient(180deg, #fcf8f1 0%, #f3e7d8 48%, #ead9c6 100%);
}

.contacts-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0) 42%),
    linear-gradient(to bottom, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
}

.contacts-luxury-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
}

.contacts-luxury-glow-1 {
  width: 260px;
  height: 260px;
  top: 90px;
  right: 8%;
  background: rgba(255, 243, 217, 0.75);
}

.contacts-luxury-glow-2 {
  width: 220px;
  height: 220px;
  left: 6%;
  bottom: 80px;
  background: rgba(214, 180, 101, 0.16);
}

.contacts-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.contacts-copy {
  max-width: 560px;
}

.contacts-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #a97a2d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.50);
  border: 1px solid rgba(173, 132, 45, 0.16);
  box-shadow:
    0 10px 24px rgba(77, 53, 30, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.contacts-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #2f2117;
  margin-bottom: 24px;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.55),
    0 14px 34px rgba(118, 87, 42, 0.06);
}

.contacts-lead {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(73, 52, 33, 0.84);
}

.contacts-card {
  position: relative;
  padding: 36px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,249,241,0.56)),
    rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 30px 80px rgba(77, 53, 30, 0.10),
    0 0 34px rgba(214, 180, 101, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contacts-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 42%),
    radial-gradient(circle at top right, rgba(214,180,101,0.08), transparent 30%);
}

.contacts-card-top {
  position: relative;
  z-index: 2;
  margin-bottom: 26px;
}

.contacts-logo-wrap {
  width: 220px;
  max-width: 100%;
}

.contacts-logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 6px 16px rgba(0,0,0,0.08))
    drop-shadow(0 0 12px rgba(214,180,101,0.08));
}

.contacts-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-lux-item {
  padding: 22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,249,241,0.52)),
    rgba(250, 244, 236, 0.82);
  border: 1px solid rgba(173, 132, 45, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 12px 26px rgba(77, 53, 30, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-lux-item:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.76),
    0 18px 32px rgba(77, 53, 30, 0.08);
}

.contact-lux-item-full {
  grid-column: 1 / -1;
}

.contact-lux-label {
  display: block;
  margin-bottom: 10px;
  color: #b38436;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-lux-value {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  line-height: 1.12;
  font-weight: 600;
  color: #3a2718;
  letter-spacing: -0.01em;
  word-break: break-word;
}

a.contact-lux-value:hover {
  opacity: 0.72;
}

@media (max-width: 980px) {
  .contacts-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contacts-copy {
    max-width: 100%;
  }

  .contacts-lead {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contacts-luxury {
    padding: 36px 16px 72px;
  }

  .contacts-card {
    padding: 24px;
    border-radius: 26px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contact-lux-item-full {
    grid-column: auto;
  }

  .contact-lux-item {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .contacts-logo-wrap {
    width: 180px;
  }

  .contacts-copy h1 {
    font-size: clamp(2.9rem, 10vw, 4.5rem);
  }

  .contacts-lead {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .contacts-luxury {
    padding: 24px 12px 56px;
  }

  .contacts-card {
    padding: 18px;
  }

  .contacts-logo-wrap {
    width: 155px;
  }

  .contact-lux-value {
    font-size: 1.38rem;
  }
}.contacts-page {
  padding-top: 74px;
}

.contacts-luxury-mini {
  position: relative;
  min-height: calc(100vh - 74px);
  padding: 48px 16px 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(214, 180, 101, 0.14), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(255,255,255,0.92), transparent 22%),
    linear-gradient(180deg, #fbf6ef 0%, #f2e4d3 52%, #ead7c2 100%);
}

.contacts-luxury-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 40%),
    linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}

.lux-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.5;
}

.lux-orb-1 {
  width: 220px;
  height: 220px;
  top: 70px;
  right: 8%;
  background: rgba(255, 240, 210, 0.8);
}

.lux-orb-2 {
  width: 180px;
  height: 180px;
  bottom: 60px;
  left: 8%;
  background: rgba(212, 175, 55, 0.14);
}

.contacts-mini-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.contacts-mini-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 28px 28px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.84), rgba(255,249,241,0.58)),
    rgba(255,251,246,0.84);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 26px 70px rgba(77, 53, 30, 0.10),
    0 0 34px rgba(214, 180, 101, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: floatCard 6s ease-in-out infinite;
}

.contacts-mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0) 42%),
    radial-gradient(circle at top right, rgba(214,180,101,0.08), transparent 30%);
}

.mini-shine {
  position: absolute;
  top: -20%;
  left: -30%;
  width: 30%;
  height: 160%;
  pointer-events: none;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.22),
    rgba(255,255,255,0)
  );
  animation: shineMove 5s ease-in-out infinite;
}

.contacts-mini-top {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 24px;
}

.contacts-mini-logo {
  width: 160px;
  max-width: 80%;
  margin: 0 auto 18px;
}

.contacts-mini-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 6px 14px rgba(0,0,0,0.08))
    drop-shadow(0 0 12px rgba(214,180,101,0.08));
}

.contacts-mini-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #a67830;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 10px 22px rgba(77, 53, 30, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.contacts-mini-top h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #2f2117;
  margin-bottom: 16px;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.55),
    0 14px 34px rgba(118, 87, 42, 0.06);
}

.contacts-mini-top p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(73, 52, 33, 0.82);
}

.contacts-mini-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-contact-item {
  position: relative;
  display: block;
  padding: 18px 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,249,241,0.52)),
    rgba(250, 244, 236, 0.82);
  border: 1px solid rgba(173, 132, 45, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 12px 24px rgba(77, 53, 30, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mini-contact-item:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.76),
    0 18px 30px rgba(77, 53, 30, 0.08);
  border-color: rgba(173, 132, 45, 0.20);
}

.mini-contact-item-full {
  grid-column: 1 / -1;
}

.mini-contact-label {
  display: block;
  margin-bottom: 9px;
  color: #b38436;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mini-contact-value {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.12;
  font-weight: 600;
  color: #3a2718;
  letter-spacing: -0.01em;
  word-break: break-word;
}

@keyframes shineMove {
  0% {
    left: -40%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  45% {
    left: 120%;
    opacity: 0.8;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .contacts-luxury-mini {
    padding: 28px 14px 56px;
  }

  .contacts-mini-card {
    padding: 24px 18px 18px;
    border-radius: 24px;
    animation: none;
  }

  .contacts-mini-logo {
    width: 135px;
  }

  .contacts-mini-grid {
    grid-template-columns: 1fr;
  }

  .mini-contact-item-full {
    grid-column: auto;
  }

  .mini-contact-item {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .contacts-mini-top p {
    font-size: 0.92rem;
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .contacts-luxury-mini {
    padding: 20px 10px 46px;
  }

  .contacts-mini-card {
    padding: 20px 14px 14px;
  }

  .contacts-mini-logo {
    width: 120px;
  }

  .contacts-mini-top h1 {
    font-size: 2.6rem;
  }

  .mini-contact-value {
    font-size: 1.2rem;
  }
}.contact-form-lux {
  padding: 0 16px 80px;
  background:
    radial-gradient(circle at 20% 10%, rgba(212,175,55,0.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,248,240,0.35) 100%);
}

.contact-form-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.contact-form-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 34px 28px 28px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,249,241,0.62)),
    rgba(255, 252, 247, 0.84);
  border: 1px solid rgba(195, 153, 82, 0.18);
  box-shadow:
    0 34px 90px rgba(110, 77, 34, 0.12),
    0 0 30px rgba(212, 175, 55, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.30), rgba(255,255,255,0) 34%),
    radial-gradient(circle at top right, rgba(214,180,101,0.08), transparent 30%);
}

.contact-form-card > * {
  position: relative;
  z-index: 2;
}

.contact-form-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #a97a2d;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(197, 151, 74, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.84),
    0 10px 22px rgba(77, 53, 30, 0.04);
}

.contact-form-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #2c1d12;
  margin-bottom: 14px;
}

.contact-form-intro {
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(81, 59, 35, 0.82);
  margin-bottom: 24px;
}

.lux-form {
  display: grid;
  gap: 18px;
}

.lux-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lux-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lux-field-full {
  grid-column: 1 / -1;
}

.lux-field label {
  color: #9b6f2e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lux-field input,
.lux-field textarea {
  width: 100%;
  border: 1px solid rgba(195, 153, 82, 0.16);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,248,240,0.70)),
    rgba(255,255,255,0.82);
  color: #332114;
  border-radius: 18px;
  padding: 16px 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.96rem;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 8px 20px rgba(110, 77, 34, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.lux-field input:focus,
.lux-field textarea:focus {
  border-color: rgba(195, 153, 82, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.84),
    0 0 0 4px rgba(212,175,55,0.10),
    0 10px 24px rgba(110, 77, 34, 0.06);
  transform: translateY(-1px);
}

.lux-field textarea {
  min-height: 170px;
  resize: vertical;
}

.lux-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fffaf2;
  background: linear-gradient(135deg, #9b6f2e, #d3a85c);
  box-shadow:
    0 18px 30px rgba(122, 88, 34, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.lux-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 34px rgba(122, 88, 34, 0.22),
    0 0 16px rgba(212,175,55,0.12);
}

@media (max-width: 768px) {
  .contact-form-lux {
    padding: 0 14px 60px;
  }

  .contact-form-card {
    padding: 24px 18px 18px;
    border-radius: 24px;
  }

  .lux-form-grid {
    grid-template-columns: 1fr;
  }

  .lux-field-full {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .contact-form-lux {
    padding: 0 10px 46px;
  }

  .contact-form-card {
    padding: 20px 14px 14px;
  }

  .contact-form-card h2 {
    font-size: 2.2rem;
  }
}/* =========================
   DABĪGS MATERIĀLS VESELĪGAI VIDEI
   ========================= */
.healthy-material-section {
  position: relative;
  padding: 90px 20px 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.healthy-material-section::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.38), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
  animation: luxuryAuraFlow 18s ease-in-out infinite alternate;
}

.healthy-material-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 18%,
      rgba(255, 255, 255, 0.22) 30%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.65;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.healthy-material-shell {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.healthy-material-text {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.healthy-material-text h2 {
  margin: 0 0 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.04;
  font-weight: 600;
  color: #342317;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px rgba(188, 146, 58, 0.06);
}

.healthy-material-text p {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: 1rem;
  line-height: 1.92;
  color: rgba(62, 44, 31, 0.88);
}

.healthy-material-text p:last-child {
  margin-bottom: 0;
}

.healthy-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 8%,
    rgba(0, 0, 0, 1) 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 8%,
    rgba(0, 0, 0, 1) 92%,
    transparent 100%
  );
}

.healthy-slider-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: healthySliderMove 32s linear infinite;
}

.healthy-slide {
  position: relative;
  width: 380px;
  height: 260px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 241, 0.58)),
    rgba(248, 242, 232, 0.88);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 20px 42px rgba(90, 64, 40, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.healthy-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%),
    linear-gradient(to top, rgba(32, 20, 12, 0.18), rgba(32, 20, 12, 0.02) 55%);
}

.healthy-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.98) contrast(1.03) saturate(0.98);
  transition: transform 1.2s ease;
}

.healthy-slide:hover img {
  transform: scale(1.05);
}

@keyframes healthySliderMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {
  .healthy-material-section {
    padding: 60px 14px 72px;
  }

  .healthy-material-text {
    margin-bottom: 30px;
  }

  .healthy-material-text h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .healthy-material-text p {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .healthy-slider-track {
    gap: 14px;
  }

  .healthy-slide {
    width: 250px;
    height: 170px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .healthy-material-section {
    padding: 56px 12px 64px;
  }

  .healthy-material-text h2 {
    font-size: 2rem;
  }

  .healthy-material-text p {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .healthy-slide {
    width: 220px;
    height: 150px;
    border-radius: 18px;
  }
}/* =========================
   KADIĶU PANEĻI – SKAISTUMAM, SAJŪTĀM UN LABSAJŪTAI
   ========================= */
.juniper-wellbeing-section {
  position: relative;
  padding: 90px 20px 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.juniper-wellbeing-section::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212, 175, 55, 0.14), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255, 255, 255, 0.38), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
  animation: luxuryAuraFlow 18s ease-in-out infinite alternate;
}

.juniper-wellbeing-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 18%,
      rgba(255, 255, 255, 0.22) 30%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.65;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.juniper-wellbeing-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.juniper-wellbeing-text {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.juniper-wellbeing-text h2 {
  margin: 0 0 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.04;
  font-weight: 600;
  color: #342317;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 22px rgba(188, 146, 58, 0.06);
}

.juniper-wellbeing-text p {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: 1rem;
  line-height: 1.92;
  color: rgba(62, 44, 31, 0.88);
}

.juniper-wellbeing-text p:last-child {
  margin-bottom: 0;
}

.juniper-wellbeing-video-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.juniper-wellbeing-video-box {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 241, 0.58)),
    rgba(248, 242, 232, 0.88);
  border: 1px solid rgba(173, 132, 45, 0.14);
  box-shadow:
    0 24px 54px rgba(90, 64, 40, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.juniper-wellbeing-video-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%),
    linear-gradient(to top, rgba(32, 20, 12, 0.18), rgba(32, 20, 12, 0.02) 55%);
}

.juniper-wellbeing-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.97) contrast(1.03) saturate(0.98);
}

/* Mobile */
@media (max-width: 768px) {
  .juniper-wellbeing-section {
    padding: 60px 14px 72px;
  }

  .juniper-wellbeing-text {
    margin-bottom: 24px;
  }

  .juniper-wellbeing-text h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .juniper-wellbeing-text p {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .juniper-wellbeing-video-box {
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .juniper-wellbeing-section {
    padding: 56px 12px 64px;
  }

  .juniper-wellbeing-text h2 {
    font-size: 2rem;
  }

  .juniper-wellbeing-text p {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .juniper-wellbeing-video-box {
    border-radius: 18px;
  }
}/* =========================
   VIDEO BLOKS AR TEKSTU UZ VIDEO — BEZ KVADRĀTA
   ========================= */
.sr-video-text-overlay-section {
  position: relative;
  padding: 90px 20px 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.16), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.09), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.sr-video-text-overlay-wrap {
  position: relative;
  width: 100%;
  min-height: 760px;
  margin: 0 auto;
  overflow: hidden;
  background: #1b1511;
}

.sr-video-text-overlay-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.48) contrast(1.03) saturate(0.98);
}

.sr-video-text-overlay-dark {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(20, 14, 10, 0.30) 0%,
      rgba(20, 14, 10, 0.42) 24%,
      rgba(20, 14, 10, 0.56) 58%,
      rgba(20, 14, 10, 0.72) 100%
    ),
    radial-gradient(circle at 20% 18%, rgba(255, 245, 220, 0.08), transparent 18%),
    radial-gradient(circle at 78% 30%, rgba(212, 175, 55, 0.10), transparent 20%);
}

.sr-video-text-overlay-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 90px 40px;
}

.sr-video-eyebrow {
  color: #e2b45c;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
  margin-bottom: 18px;
}

.sr-video-text-overlay-content h2 {
  margin: 0 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
  font-weight: 600;
  color: #fff3df;
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.34),
    0 0 20px rgba(212, 175, 55, 0.08);
}

.sr-video-text-overlay-content p {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: 1.03rem;
  line-height: 1.9;
  color: rgba(255, 244, 228, 0.94);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.sr-video-text-overlay-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .sr-video-text-overlay-section {
    padding: 60px 14px 72px;
  }

  .sr-video-text-overlay-wrap {
    min-height: 560px;
  }

  .sr-video-text-overlay-content {
    min-height: 560px;
    padding: 44px 20px;
  }

  .sr-video-text-overlay-content h2 {
    font-size: 2rem;
    line-height: 1.06;
    margin-bottom: 18px;
  }

  .sr-video-text-overlay-content p {
    font-size: 0.94rem;
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .sr-video-text-overlay-wrap {
    min-height: 500px;
  }

  .sr-video-text-overlay-content {
    min-height: 500px;
    padding: 34px 16px;
  }

  .sr-video-text-overlay-content h2 {
    font-size: 1.75rem;
  }

  .sr-video-text-overlay-content p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}/* =========================
   KADIĶU PANEĻI KĀ DAĻA NO PIRTS BŪVNIECĪBAS MATERIĀLIEM
   PILNPLATUMA BILDES + IZTEIKSMĪGĀKS TEKSTS
   ========================= */
.build-materials-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.10), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.70), transparent 22%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.build-materials-stage {
  position: relative;
  width: 100%;
  min-height: 860px;
  overflow: hidden;
}

/* visas bildes kā fona slāņi */
.build-materials-bg {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

.build-materials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  filter: brightness(0.50) contrast(1.08) saturate(0.96);
}

.build-materials-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(16, 10, 6, 0.18) 0%,
      rgba(16, 10, 6, 0.36) 42%,
      rgba(16, 10, 6, 0.62) 100%
    );
}

/* kreisā puse */
.build-materials-bg-1 {
  top: 0;
  left: 0;
  width: 43%;
  height: 100%;
  opacity: 0.96;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.96) 60%,
    rgba(0, 0, 0, 0.42) 88%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.96) 60%,
    rgba(0, 0, 0, 0.42) 88%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* centrālā bilde */
.build-materials-bg-2 {
  top: 0;
  left: 28%;
  width: 38%;
  height: 100%;
  opacity: 0.76;
  -webkit-mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 28%,
    rgba(0, 0, 0, 0.84) 58%,
    rgba(0, 0, 0, 0.28) 82%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 28%,
    rgba(0, 0, 0, 0.84) 58%,
    rgba(0, 0, 0, 0.28) 82%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* labā puse */
.build-materials-bg-3 {
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  opacity: 0.94;
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.96) 60%,
    rgba(0, 0, 0, 0.42) 88%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.96) 60%,
    rgba(0, 0, 0, 0.42) 88%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* gaišs miglas slānis pa vidu */
.build-materials-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 245, 228, 0.18), transparent 22%),
    radial-gradient(circle at 50% 60%, rgba(255, 230, 180, 0.10), transparent 28%),
    linear-gradient(
      to right,
      rgba(255, 248, 239, 0.10) 0%,
      rgba(255, 248, 239, 0.00) 20%,
      rgba(255, 248, 239, 0.00) 80%,
      rgba(255, 248, 239, 0.10) 100%
    );
}

/* teksts pa vidu virs bildēm */
.build-materials-overlay {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
  padding: 120px 30px;
  text-align: center;
}

.build-materials-overlay .section-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: #f0c56a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.22),
    0 0 14px rgba(212, 175, 55, 0.16);
}

.build-materials-overlay h2 {
  margin: 0 0 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 700;
  color: #fff8ee;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(212, 175, 55, 0.14),
    0 0 40px rgba(255, 244, 214, 0.10);
}

.build-materials-overlay p {
  max-width: 880px;
  margin: 0 auto 18px;
  font-size: 1.06rem;
  line-height: 1.92;
  color: rgba(255, 247, 236, 0.98);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.36),
    0 0 16px rgba(0, 0, 0, 0.18);
}

.build-materials-overlay p:last-child {
  margin-bottom: 0;
}

/* tablet */
@media (max-width: 991px) {
  .build-materials-stage {
    min-height: 820px;
  }

  .build-materials-bg-1 {
    width: 50%;
  }

  .build-materials-bg-2 {
    left: 22%;
    width: 56%;
    opacity: 0.64;
  }

  .build-materials-bg-3 {
    width: 50%;
  }

  .build-materials-overlay {
    padding: 90px 22px;
  }

  .build-materials-overlay h2 {
    font-size: clamp(32px, 6vw, 52px);
  }
}

/* telefons */
@media (max-width: 640px) {
  .build-materials-stage {
    min-height: 720px;
  }

  .build-materials-bg-1,
  .build-materials-bg-2,
  .build-materials-bg-3 {
    top: 0;
    height: 100%;
  }

  .build-materials-bg-1 {
    left: 0;
    width: 52%;
  }

  .build-materials-bg-2 {
    left: 18%;
    width: 64%;
    opacity: 0.56;
  }

  .build-materials-bg-3 {
    right: 0;
    width: 52%;
  }

  .build-materials-overlay {
    padding: 72px 16px;
  }

  .build-materials-overlay .section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .build-materials-overlay h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .build-materials-overlay p {
    font-size: 0.92rem;
    line-height: 1.76;
  }
}

@media (max-width: 480px) {
  .build-materials-stage {
    min-height: 660px;
  }

  .build-materials-overlay {
    padding: 58px 14px;
  }

  .build-materials-overlay h2 {
    font-size: 1.78rem;
  }

  .build-materials-overlay p {
    font-size: 0.88rem;
    line-height: 1.68;
  }
}/* =========================
   FULL WIDTH 2 BILŽU BLOKS AR TEKSTU VIRSŪ
   ========================= */
.fullwidth-image-text-section {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.10), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.70), transparent 22%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.fullwidth-image-strip {
  position: relative;
  width: 100%;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.fullwidth-image-item {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.fullwidth-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.58) contrast(1.04) saturate(0.96);
  transform: scale(1.03);
  transition: transform 1.4s ease, filter 1.4s ease;
}

.fullwidth-image-strip:hover .fullwidth-image-item img {
  transform: scale(1.07);
  filter: brightness(0.62) contrast(1.05) saturate(1);
}

.fullwidth-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(20, 14, 10, 0.72) 0%,
      rgba(20, 14, 10, 0.42) 22%,
      rgba(20, 14, 10, 0.24) 50%,
      rgba(20, 14, 10, 0.42) 78%,
      rgba(20, 14, 10, 0.72) 100%
    ),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.10), transparent 32%);
}

.fullwidth-image-text {
  position: absolute;
  inset: 0;
  z-index: 3;
  max-width: 980px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 28px;
  text-align: center;
}

.fullwidth-image-text h2 {
  margin: 0 0 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f3d79c;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.40),
    0 0 20px rgba(212, 175, 55, 0.14);
}

.fullwidth-image-text p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255, 245, 228, 0.96);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.34),
    0 0 12px rgba(0, 0, 0, 0.18);
}

/* Mobile */
@media (max-width: 768px) {
  .fullwidth-image-strip {
    grid-template-columns: 1fr;
    min-height: 620px;
  }

  .fullwidth-image-item {
    min-height: 310px;
  }

  .fullwidth-image-text {
    padding: 34px 16px;
  }

  .fullwidth-image-text h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 16px;
  }

  .fullwidth-image-text p {
    font-size: 0.94rem;
    line-height: 1.72;
  }
}

@media (max-width: 480px) {
  .fullwidth-image-strip {
    min-height: 540px;
  }

  .fullwidth-image-item {
    min-height: 270px;
  }

  .fullwidth-image-text {
    padding: 26px 12px;
  }

  .fullwidth-image-text h2 {
    font-size: 1.8rem;
  }

  .fullwidth-image-text p {
    font-size: 0.9rem;
    line-height: 1.68;
  }
}/* =========================
   PIELĀGOTA IZMĒRA RISINĀJUMI / SLĪDOŠA 3 BILŽU SEKCIJA
   ========================= */
.custom-size-slider-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.12), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.80), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.08), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.custom-size-slider-section::before {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.72), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212,175,55,0.10), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255,255,255,0.34), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
}

.custom-size-slider-shell {
  position: relative;
  width: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.custom-size-slider-track {
  position: absolute;
  left: 0;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  transform: translateY(-50%);
  animation: customLuxuryFlow 34s linear infinite;
  z-index: 1;
}

.custom-size-slide {
  position: relative;
  width: 34vw;
  min-width: 420px;
  max-width: 560px;
  height: 520px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 42% 58% 48% 52% / 46% 40% 60% 54%;
  box-shadow:
    0 24px 60px rgba(77, 53, 30, 0.18),
    0 0 24px rgba(212, 175, 55, 0.08);
  filter:
    drop-shadow(0 18px 34px rgba(120, 92, 52, 0.08))
    drop-shadow(0 0 18px rgba(212, 175, 55, 0.06));
}

.custom-size-slide:nth-child(2n) {
  margin-top: 36px;
  border-radius: 58% 42% 54% 46% / 40% 56% 44% 60%;
}

.custom-size-slide:nth-child(3n) {
  margin-top: -24px;
  border-radius: 46% 54% 42% 58% / 56% 42% 58% 44%;
}

.custom-size-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 36%),
    linear-gradient(to top, rgba(20, 14, 10, 0.34), rgba(20, 14, 10, 0.06) 48%, rgba(20, 14, 10, 0) 68%);
}

.custom-size-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0) 55%, rgba(241,230,214,0.24) 86%, rgba(241,230,214,0.55) 100%);
  mix-blend-mode: screen;
}

.custom-size-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.04) saturate(0.98);
  transform: scale(1.03);
}

.custom-size-slider-overlay-text {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 32px;
}

.custom-size-slider-overlay-text::before {
  content: "";
  position: absolute;
  inset: -18px -22px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at center,
      rgba(247, 239, 227, 0.98) 0%,
      rgba(247, 239, 227, 0.94) 34%,
      rgba(247, 239, 227, 0.82) 52%,
      rgba(247, 239, 227, 0.48) 72%,
      rgba(247, 239, 227, 0.08) 88%,
      rgba(247, 239, 227, 0) 100%
    );
  filter: blur(12px);
}

.custom-size-slider-overlay-text .section-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #b2832f;
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
}

.custom-size-slider-overlay-text h2 {
  margin: 0 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #7d5820;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.70),
    0 8px 22px rgba(188,146,58,0.10);
}

.custom-size-slider-overlay-text p {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: 1.03rem;
  line-height: 1.9;
  color: rgba(78, 55, 31, 0.92);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.72),
    0 4px 16px rgba(255,255,255,0.22);
}

.custom-size-slider-overlay-text p:last-child {
  margin-bottom: 0;
}

@keyframes customLuxuryFlow {
  0% {
    transform: translateY(-50%) translateX(-18%);
  }
  100% {
    transform: translateY(-50%) translateX(-50%);
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 991px) {
  .custom-size-slider-section {
    padding: 90px 0;
  }

  .custom-size-slider-shell {
    min-height: 680px;
  }

  .custom-size-slide {
    width: 46vw;
    min-width: 320px;
    height: 420px;
  }

  .custom-size-slider-overlay-text {
    max-width: 90%;
    padding: 24px 18px;
  }

  .custom-size-slider-overlay-text h2 {
    font-size: clamp(2.1rem, 6vw, 3.2rem);
  }

  .custom-size-slider-overlay-text p {
    font-size: 0.96rem;
    line-height: 1.8;
  }
}

@media (max-width: 640px) {
  .custom-size-slider-section {
    padding: 70px 0;
  }

  .custom-size-slider-shell {
    min-height: 620px;
  }

  .custom-size-slider-track {
    gap: 14px;
  }

  .custom-size-slide {
    width: 72vw;
    min-width: 240px;
    height: 300px;
  }

  .custom-size-slide:nth-child(2n) {
    margin-top: 18px;
  }

  .custom-size-slide:nth-child(3n) {
    margin-top: -10px;
  }

  .custom-size-slider-overlay-text {
    max-width: 94%;
    padding: 16px 10px;
  }

  .custom-size-slider-overlay-text::before {
    inset: -10px -8px;
    filter: blur(8px);
  }

  .custom-size-slider-overlay-text h2 {
    font-size: 2rem;
    line-height: 1.06;
    margin-bottom: 18px;
  }

  .custom-size-slider-overlay-text p {
    font-size: 0.92rem;
    line-height: 1.72;
  }
}

@media (max-width: 480px) {
  .custom-size-slider-shell {
    min-height: 560px;
  }

  .custom-size-slide {
    width: 78vw;
    min-width: 210px;
    height: 250px;
  }

  .custom-size-slider-overlay-text h2 {
    font-size: 1.75rem;
  }

  .custom-size-slider-overlay-text p {
    font-size: 0.88rem;
    line-height: 1.66;
  }
}/* =========================
   PASŪTIET PIELĀGOTA IZMĒRA KADIĶU PANEĻUS / 4 BILDES
   ========================= */
.custom-order-four-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.12), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.80), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.08), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.custom-order-four-section::before {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.72), transparent 14%),
    radial-gradient(circle at 78% 26%, rgba(212,175,55,0.10), transparent 16%),
    radial-gradient(circle at 62% 74%, rgba(255,255,255,0.34), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
}

.custom-order-four-shell {
  position: relative;
  width: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.custom-order-four-track {
  position: absolute;
  left: 0;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  transform: translateY(-50%);
  animation: customOrderFourFlow 38s linear infinite;
  z-index: 1;
}

.custom-order-four-slide {
  position: relative;
  width: 28vw;
  min-width: 320px;
  max-width: 430px;
  height: 460px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 44% 56% 50% 50% / 42% 38% 62% 58%;
  box-shadow:
    0 24px 60px rgba(77, 53, 30, 0.16),
    0 0 24px rgba(212, 175, 55, 0.08);
  filter:
    drop-shadow(0 18px 34px rgba(120, 92, 52, 0.08))
    drop-shadow(0 0 18px rgba(212, 175, 55, 0.06));
}

.custom-order-four-slide:nth-child(2n) {
  margin-top: 36px;
  border-radius: 56% 44% 58% 42% / 38% 56% 44% 62%;
}

.custom-order-four-slide:nth-child(3n) {
  margin-top: -22px;
  border-radius: 46% 54% 42% 58% / 56% 42% 58% 44%;
}

.custom-order-four-slide:nth-child(4n) {
  margin-top: 18px;
  border-radius: 52% 48% 56% 44% / 44% 60% 40% 56%;
}

.custom-order-four-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 36%),
    linear-gradient(to top, rgba(20, 14, 10, 0.34), rgba(20, 14, 10, 0.06) 48%, rgba(20, 14, 10, 0) 68%);
}

.custom-order-four-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0) 55%, rgba(241,230,214,0.22) 86%, rgba(241,230,214,0.50) 100%);
  mix-blend-mode: screen;
}

.custom-order-four-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.04) saturate(0.98);
  transform: scale(1.03);
}

.custom-order-four-text {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 30px;
}

.custom-order-four-text::before {
  content: "";
  position: absolute;
  inset: -18px -22px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at center,
      rgba(247, 239, 227, 0.98) 0%,
      rgba(247, 239, 227, 0.94) 34%,
      rgba(247, 239, 227, 0.82) 52%,
      rgba(247, 239, 227, 0.46) 72%,
      rgba(247, 239, 227, 0.08) 88%,
      rgba(247, 239, 227, 0) 100%
    );
  filter: blur(12px);
}

.custom-order-four-text .section-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #b2832f;
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
}

.custom-order-four-text h2 {
  margin: 0 0 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #7d5820;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.72),
    0 8px 22px rgba(188,146,58,0.10);
}

.custom-order-four-text p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.03rem;
  line-height: 1.9;
  color: rgba(78, 55, 31, 0.92);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.72),
    0 4px 16px rgba(255,255,255,0.22);
}

@keyframes customOrderFourFlow {
  0% {
    transform: translateY(-50%) translateX(-12%);
  }
  100% {
    transform: translateY(-50%) translateX(-50%);
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 991px) {
  .custom-order-four-section {
    padding: 90px 0;
  }

  .custom-order-four-shell {
    min-height: 680px;
  }

  .custom-order-four-slide {
    width: 38vw;
    min-width: 260px;
    height: 360px;
  }

  .custom-order-four-text {
    max-width: 90%;
    padding: 24px 18px;
  }

  .custom-order-four-text h2 {
    font-size: clamp(2.1rem, 6vw, 3.1rem);
  }

  .custom-order-four-text p {
    font-size: 0.96rem;
    line-height: 1.8;
  }
}

@media (max-width: 640px) {
  .custom-order-four-section {
    padding: 70px 0;
  }

  .custom-order-four-shell {
    min-height: 600px;
  }

  .custom-order-four-track {
    gap: 12px;
  }

  .custom-order-four-slide {
    width: 62vw;
    min-width: 210px;
    height: 270px;
  }

  .custom-order-four-slide:nth-child(2n) {
    margin-top: 16px;
  }

  .custom-order-four-slide:nth-child(3n) {
    margin-top: -10px;
  }

  .custom-order-four-slide:nth-child(4n) {
    margin-top: 8px;
  }

  .custom-order-four-text {
    max-width: 94%;
    padding: 16px 10px;
  }

  .custom-order-four-text::before {
    inset: -10px -8px;
    filter: blur(8px);
  }

  .custom-order-four-text h2 {
    font-size: 1.95rem;
    line-height: 1.06;
    margin-bottom: 18px;
  }

  .custom-order-four-text p {
    font-size: 0.92rem;
    line-height: 1.72;
  }
}

@media (max-width: 480px) {
  .custom-order-four-shell {
    min-height: 540px;
  }

  .custom-order-four-slide {
    width: 68vw;
    min-width: 180px;
    height: 230px;
  }

  .custom-order-four-text h2 {
    font-size: 1.72rem;
  }

  .custom-order-four-text p {
    font-size: 0.88rem;
    line-height: 1.66;
  }
}/* =========================
   VIENA BILDE + LUKSUS TEKSTS BEZ RĀMJIEM
   ========================= */
.single-lux-text-image-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.10), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.82), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.07), transparent 18%),
    linear-gradient(180deg, #fdf9f2 0%, #f7efe3 48%, #f1e6d6 100%);
}

.single-lux-text-image-shell {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-lux-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.single-lux-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) contrast(1.04) saturate(0.96);
  transform: scale(1.03);
  animation: singleLuxSlowMove 18s ease-in-out infinite alternate;
}

.single-lux-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(245, 236, 223, 0.78) 0%,
      rgba(245, 236, 223, 0.54) 24%,
      rgba(245, 236, 223, 0.24) 48%,
      rgba(245, 236, 223, 0.54) 78%,
      rgba(245, 236, 223, 0.80) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.14) 0%,
      rgba(50, 32, 18, 0.14) 100%
    ),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 16%),
    radial-gradient(circle at 78% 24%, rgba(212,175,55,0.10), transparent 18%);
}

.single-lux-text {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 30px;
  text-align: center;
}

.single-lux-text::before {
  content: "";
  position: absolute;
  inset: -20px -24px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at center,
      rgba(247, 239, 227, 0.98) 0%,
      rgba(247, 239, 227, 0.92) 32%,
      rgba(247, 239, 227, 0.76) 52%,
      rgba(247, 239, 227, 0.38) 72%,
      rgba(247, 239, 227, 0.08) 88%,
      rgba(247, 239, 227, 0) 100%
    );
  filter: blur(14px);
}

.single-lux-text .section-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #b2832f;
  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
}

.single-lux-text h2 {
  margin: 0 0 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #7c561f;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.78),
    0 8px 22px rgba(188,146,58,0.12);
}

.single-lux-text p {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: 1.03rem;
  line-height: 1.92;
  color: rgba(74, 52, 30, 0.95);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.72),
    0 4px 16px rgba(255,255,255,0.20);
}

.single-lux-list-title {
  margin-top: 26px;
  margin-bottom: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #8a6328;
}

.single-lux-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.single-lux-list-line {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(66, 46, 27, 0.96);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.72),
    0 3px 12px rgba(255,255,255,0.20);
}

@keyframes singleLuxSlowMove {
  0% {
    transform: scale(1.03) translateX(0) translateY(0);
  }
  50% {
    transform: scale(1.06) translateX(-8px) translateY(-4px);
  }
  100% {
    transform: scale(1.04) translateX(8px) translateY(4px);
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {
  .single-lux-text-image-section {
    padding: 80px 0;
  }

  .single-lux-text-image-shell {
    min-height: 660px;
  }

  .single-lux-text {
    max-width: 94%;
    padding: 18px 12px;
  }

  .single-lux-text::before {
    inset: -12px -10px;
    filter: blur(10px);
  }

  .single-lux-text h2 {
    font-size: 2.1rem;
    line-height: 1.06;
  }

  .single-lux-text p,
  .single-lux-list-line {
    font-size: 0.94rem;
    line-height: 1.76;
  }

  .single-lux-list-title {
    font-size: 1.45rem;
  }
}

@media (max-width: 480px) {
  .single-lux-text-image-shell {
    min-height: 600px;
  }

  .single-lux-text h2 {
    font-size: 1.8rem;
  }

  .single-lux-text p,
  .single-lux-list-line {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .single-lux-list-title {
    font-size: 1.28rem;
  }
}/* =========================
   PIEGĀDE EIROPĀ / LUKSUSA TEKSTA BLOKS
   ========================= */
.europe-trust-text-section {
  position: relative;
  padding: 95px 20px 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.10), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.82), transparent 22%),
    radial-gradient(circle at 52% 78%, rgba(212, 175, 55, 0.06), transparent 18%),
    linear-gradient(180deg, #fdfaf5 0%, #f7f0e7 46%, #f1e5d8 100%);
}

.europe-trust-text-section::before {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.62), transparent 16%),
    radial-gradient(circle at 78% 24%, rgba(212,175,55,0.10), transparent 18%),
    radial-gradient(circle at 58% 76%, rgba(255,255,255,0.34), transparent 20%);
  filter: blur(24px);
  opacity: 0.95;
  animation: luxuryAuraFlow 18s ease-in-out infinite alternate;
}

.europe-trust-text-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.08) 18%,
      rgba(255,255,255,0.18) 30%,
      rgba(255,255,255,0.05) 40%,
      rgba(255,255,255,0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.55;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.europe-trust-text-shell {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  padding: 0 10px;
}

.europe-trust-text-shell .section-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #a97a2d;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
}

.europe-trust-text-shell h2 {
  max-width: 980px;
  margin: 0 auto 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #7a5822;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.58),
    0 10px 24px rgba(188,146,58,0.08);
}

.europe-trust-text-shell p {
  max-width: 920px;
  margin: 0 auto 18px;
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(73, 52, 33, 0.88);
  text-align: center;
}

.europe-trust-text-shell p:last-child {
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .europe-trust-text-section {
    padding: 70px 16px 80px;
  }

  .europe-trust-text-shell h2 {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 20px;
  }

  .europe-trust-text-shell p {
    font-size: 0.93rem;
    line-height: 1.78;
  }
}

@media (max-width: 480px) {
  .europe-trust-text-section {
    padding: 56px 12px 64px;
  }

  .europe-trust-text-shell .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .europe-trust-text-shell h2 {
    font-size: 2rem;
  }

  .europe-trust-text-shell p {
    font-size: 0.88rem;
    line-height: 1.7;
  }
}/* =========================
   PLAŠS PREMIUM TEKSTA + 4 BILŽU BLOKS
   ========================= */
.premium-story-gallery-section {
  position: relative;
  min-height: 1150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.10), transparent 16%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.75), transparent 22%),
    linear-gradient(180deg, #fdfaf5 0%, #f7f0e7 46%, #f1e5d8 100%);
}

.premium-story-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(250, 244, 236, 0.10) 0%,
      rgba(250, 244, 236, 0.18) 18%,
      rgba(250, 244, 236, 0.34) 45%,
      rgba(250, 244, 236, 0.56) 70%,
      rgba(241, 229, 216, 0.78) 100%
    );
}

.premium-story-gallery-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.06) 20%,
      rgba(255,255,255,0.14) 32%,
      rgba(255,255,255,0.04) 42%,
      rgba(255,255,255,0) 55%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.55;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.premium-story-gallery-track {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.premium-story-gallery-slide {
  position: absolute;
  overflow: hidden;
  border-radius: 46% 54% 42% 58% / 42% 38% 62% 58%;
  box-shadow:
    0 28px 70px rgba(77, 53, 30, 0.12),
    0 0 24px rgba(212, 175, 55, 0.06);
  opacity: 0.94;
}

.premium-story-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.04) saturate(0.98);
  transform: scale(1.04);
}

.premium-story-gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(32, 20, 12, 0.34), rgba(32, 20, 12, 0.04) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 42%);
  pointer-events: none;
}

.premium-story-gallery-slide-1 {
  top: 40px;
  left: -2%;
  width: 34%;
  height: 380px;
  animation: luxuryFloatA 10s ease-in-out infinite;
}

.premium-story-gallery-slide-2 {
  top: 80px;
  left: 27%;
  width: 24%;
  height: 300px;
  animation: luxuryFloatB 12s ease-in-out infinite;
}

.premium-story-gallery-slide-3 {
  top: 55px;
  right: 24%;
  width: 23%;
  height: 320px;
  animation: luxuryFloatC 11s ease-in-out infinite;
}

.premium-story-gallery-slide-4 {
  top: 30px;
  right: -3%;
  width: 35%;
  height: 390px;
  animation: luxuryFloatD 13s ease-in-out infinite;
}

.premium-story-gallery-overlay {
  position: relative;
  z-index: 4;
  max-width: 1080px;
  margin: 0 auto;
  padding: 430px 28px 110px;
  text-align: center;
}

.premium-story-gallery-overlay .section-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #a97a2d;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
}

.premium-story-gallery-overlay h2 {
  max-width: 980px;
  margin: 0 auto 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #7f5a1f;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.68),
    0 10px 26px rgba(188,146,58,0.10);
}

.premium-story-gallery-overlay p {
  max-width: 980px;
  margin: 0 auto 18px;
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(73, 52, 33, 0.90);
  text-align: center;
}

.premium-story-gallery-overlay p:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .premium-story-gallery-section {
    min-height: auto;
  }

  .premium-story-gallery-slide-1 {
    width: 38%;
    height: 280px;
    left: -4%;
  }

  .premium-story-gallery-slide-2 {
    width: 26%;
    height: 220px;
    left: 25%;
  }

  .premium-story-gallery-slide-3 {
    width: 26%;
    height: 230px;
    right: 23%;
  }

  .premium-story-gallery-slide-4 {
    width: 38%;
    height: 290px;
    right: -4%;
  }

  .premium-story-gallery-overlay {
    padding: 330px 22px 80px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .premium-story-gallery-section {
    padding-bottom: 0;
  }

  .premium-story-gallery-track {
    position: relative;
    height: 280px;
  }

  .premium-story-gallery-slide {
    border-radius: 36% 64% 38% 62% / 42% 38% 62% 58%;
  }

  .premium-story-gallery-slide-1 {
    top: 18px;
    left: -10%;
    width: 42%;
    height: 170px;
  }

  .premium-story-gallery-slide-2 {
    top: 48px;
    left: 18%;
    width: 28%;
    height: 135px;
  }

  .premium-story-gallery-slide-3 {
    top: 34px;
    right: 18%;
    width: 28%;
    height: 140px;
  }

  .premium-story-gallery-slide-4 {
    top: 14px;
    right: -10%;
    width: 42%;
    height: 175px;
  }

  .premium-story-gallery-overlay {
    padding: 18px 16px 70px;
  }

  .premium-story-gallery-overlay h2 {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 20px;
  }

  .premium-story-gallery-overlay p {
    font-size: 0.93rem;
    line-height: 1.78;
  }
}

@media (max-width: 480px) {
  .premium-story-gallery-track {
    height: 235px;
  }

  .premium-story-gallery-slide-1 {
    width: 44%;
    height: 145px;
  }

  .premium-story-gallery-slide-2 {
    width: 30%;
    height: 118px;
  }

  .premium-story-gallery-slide-3 {
    width: 30%;
    height: 120px;
  }

  .premium-story-gallery-slide-4 {
    width: 44%;
    height: 150px;
  }

  .premium-story-gallery-overlay {
    padding: 10px 12px 56px;
  }

  .premium-story-gallery-overlay .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .premium-story-gallery-overlay h2 {
    font-size: 2rem;
  }

  .premium-story-gallery-overlay p {
    font-size: 0.88rem;
    line-height: 1.7;
  }
}.contact-luxury-text-section {
  position: relative;
  padding: 90px 20px 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(212, 175, 55, 0.08), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.82), transparent 22%),
    radial-gradient(circle at 50% 78%, rgba(212, 175, 55, 0.05), transparent 18%),
    linear-gradient(180deg, #fdfaf5 0%, #f7f0e7 46%, #f1e5d8 100%);
}

.contact-luxury-text-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 40%),
    radial-gradient(circle at center, rgba(212,175,55,0.05), transparent 38%);
  opacity: 0.9;
}

.contact-luxury-text-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.08) 20%,
      rgba(255, 255, 255, 0.18) 30%,
      rgba(255, 255, 255, 0.06) 40%,
      rgba(255, 255, 255, 0) 52%
    );
  transform: translateX(-130%) skewX(-14deg);
  opacity: 0.55;
  animation: luxurySilkSweep 15s ease-in-out infinite;
}

.contact-luxury-text-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.contact-luxury-kicker {
  display: inline-block;
  margin: 0 0 18px;
  color: #a97a2d;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
}

.contact-luxury-text-inner h2 {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #342317;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.55),
    0 8px 22px rgba(188,146,58,0.06);
}

.contact-luxury-text-inner p {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(73, 52, 33, 0.84);
  text-align: center;
}

.contact-luxury-text-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-luxury-text-section {
    padding: 70px 16px 80px;
  }

  .contact-luxury-text-inner h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .contact-luxury-text-inner p {
    font-size: 0.93rem;
    line-height: 1.78;
  }
}

@media (max-width: 480px) {
  .contact-luxury-text-section {
    padding: 56px 12px 64px;
  }

  .contact-luxury-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .contact-luxury-text-inner h2 {
    font-size: 2rem;
  }

  .contact-luxury-text-inner p {
    font-size: 0.88rem;
    line-height: 1.7;
  }
}