/* ==========================================================================
   STATIC COMMON CSS - Replaces Tailwind CDN with plain CSS utilities
   All shared styles for the Listandsell theme (based on staticpage design)
   ========================================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Roboto', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #171717;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: #171717;
  color: #fff;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

/* ===== FONT FAMILIES ===== */
.font-serif {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.font-sans {
  font-family: 'Inter', 'Roboto', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.wpforms-container .wpforms-image-choices-modern .wpforms-image-choices-image::before{
  color:#fff !important;
}
/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-20px); }
}

@keyframes accentLineGrow {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.animate-on-scroll.delay-1 { transition-delay: 0.15s; }
.animate-on-scroll.delay-2 { transition-delay: 0.3s; }
.animate-on-scroll.delay-3 { transition-delay: 0.45s; }
.animate-on-scroll.delay-4 { transition-delay: 0.6s; }
.animate-on-scroll.delay-5 { transition-delay: 0.75s; }

.animate-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right.delay-1 { transition-delay: 0.2s; }
.animate-slide-right.delay-2 { transition-delay: 0.4s; }

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  transform: translate(-16px, -16px);
  transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, margin 0.3s ease;
  will-change: left, top, transform;
}

.custom-cursor .cursor-icon {
  display: none;
}

/* ===== MAGNETIC BUTTON ===== */
.magnetic-wrap {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ===== SVG ICON HELPERS ===== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: auto !important;
  width: 220px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #fff;
  transition: color 0.3s ease;
	margin-top: 16px;
}

/* CTA button in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #fff;
  color: #171717;
  border-color: #fff;
}

.nav-cta svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav-cta:hover svg {
  transform: translateX(3px);
}

/* ===== SCROLLED STATE ===== */
.nav--scrolled {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.nav--scrolled .nav-logo-img {
    filter: none;
    filter: brightness(1) invert(1);
}

.nav.menu-open .nav-logo-img {
  filter: brightness(0) invert(1);
}

.nav--scrolled .nav-right {
  color: #171717;
}

.nav--scrolled .nav-cta {
  color: #171717;
  border-color: #171717;
}

.nav--scrolled .nav-cta:hover {
  background: #171717;
  color: #fff;
  border-color: #171717;
}

.nav--scrolled .hamburger span {
  background: #171717;
}

/* Nav CTA hidden when menu open */
.nav.menu-open .nav-cta {
  opacity: 0;
  pointer-events: none;
}

/* ===== HAMBURGER ===== */
.hamburger {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* When menu is open, hamburger should always be white */
.hamburger.active span {
  background: #fff;
}

/* ===== FULLSCREEN MENU ===== */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #111;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
}

.fullscreen-menu.open {
  opacity: 1;
  pointer-events: all;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 6rem 2rem 2rem;
}

/* Main navigation links */
.menu-main {
  flex: 1;
  display: flex;
  align-items: center;
}

.menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-links li {
  overflow: hidden;
}

.menu-links a {
  display: inline-block;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.fullscreen-menu.open .menu-links a {
  transform: translateY(0);
}

.fullscreen-menu.open .menu-links li:nth-child(1) a { transition-delay: 0.1s; }
.fullscreen-menu.open .menu-links li:nth-child(2) a { transition-delay: 0.15s; }
.fullscreen-menu.open .menu-links li:nth-child(3) a { transition-delay: 0.2s; }
.fullscreen-menu.open .menu-links li:nth-child(4) a { transition-delay: 0.25s; }

.menu-links a:hover {
  font-style: italic;
  opacity: 0.6;
}

/* Right side: services + info */
.menu-side {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Services in menu */
.menu-services {
  margin: 0;
}

.menu-services h4 {
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  font-weight: 600;
}
#wpforms-26 .wpforms-image-choices-label {
    margin-top: 0;
}
#wpforms-43 .wpforms-image-choices-label {
    margin-top: 0;
}


.wpforms-container .wpforms-image-choices-modern .wpforms-image-choices-image:after {
	content: "\2713" !important;

}
.menu-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.menu-services ul li a {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.menu-services ul li a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* Info blocks in menu */
.menu-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.menu-info-block h5 {
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.menu-info-block p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.menu-info-block p a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-info-block p a:hover {
  color: #fff;
}

.menu-info .social-icons {
  display: flex;
  gap: 1rem;
}

.menu-info .social-icons a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.menu-info .social-icons a:hover {
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

.hero-title-wrap {
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  animation: slideUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.6s;
  transform: translateY(100%);
}

.hero-subtitle {
  font-size: 1.125rem;
  max-width: 48rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.9s;
}

.hero-scroll {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.2s;
}

.hero-scroll-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.hero-scroll:hover .hero-scroll-circle {
  background: #fff;
  color: #000;
}

.hero-scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}


/* ==========================================================================
   UTILITY CLASSES (Tailwind Replacements)
   ========================================================================== */

/* ===== DISPLAY ===== */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.contents { display: contents; }

/* ===== POSITION ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

/* ===== INSET ===== */
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.top-8 { top: 2rem; }
.right-8 { right: 2rem; }
.top-32 { top: 8rem; }

/* ===== Z-INDEX ===== */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ===== FLEX ===== */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
/* .justify-between { justify-content: space-between; } */
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.self-end { align-self: flex-end; }

/* ===== GRID ===== */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-7 { grid-column: span 7 / span 7; }
.col-span-8 { grid-column: span 8 / span 8; }
.col-start-1 { grid-column-start: 1; }
.col-start-8 { grid-column-start: 8; }
.row-start-1 { grid-row-start: 1; }
.row-span-2 { grid-row: span 2 / span 2; }

/* ===== GAP ===== */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.gap-24 { gap: 6rem; }
.gap-32 { gap: 8rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-4 { row-gap: 1rem; }

/* ===== COLUMNS ===== */
.columns-1 { columns: 1; }

/* ===== BREAK INSIDE ===== */
.break-inside-avoid { break-inside: avoid; }

/* ===== SPACE BETWEEN ===== */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-16 > * + * { margin-top: 4rem; }
.space-y-20 > * + * { margin-top: 5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* ===== WIDTH ===== */
.w-full { width: 100%; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }
.w-18 { width: 4.5rem; }
.w-20 { width: 5rem; }
.w-12 { width: 3rem; }
.w-\[1px\] { width: 1px; }

/* ===== HEIGHT ===== */
.h-full { height: 100%; }
.h-1 { height: 0.25rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.h-\[1px\] { height: 1px; }
.h-\[2px\] { height: 2px; }

/* ===== MIN/MAX SIZING ===== */
.min-h-screen { min-height: 100vh; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[1600px\] { max-width: 1600px; }

/* ===== ASPECT RATIO ===== */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[3\/4\] { aspect-ratio: 3 / 4; }
.aspect-\[3\/2\] { aspect-ratio: 3 / 2; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }

/* ===== MARGIN ===== */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }
.mt-32 { margin-top: 8rem; }

/* ===== PADDING ===== */
.p-2 { padding: 0.5rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pl-8 { padding-left: 2rem; }

/* ===== TYPOGRAPHY - FONT SIZE ===== */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-\[10px\] { font-size: 10px; }
.text-\[10rem\] { font-size: 10rem; }

/* ===== TYPOGRAPHY - FONT WEIGHT ===== */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ===== TYPOGRAPHY - STYLE & TRANSFORM ===== */
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

/* ===== TYPOGRAPHY - TEXT ALIGN ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===== TYPOGRAPHY - LETTER SPACING ===== */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.1em\] { letter-spacing: 0.1em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }

/* ===== TYPOGRAPHY - LINE HEIGHT ===== */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.leading-\[0\.85\] { line-height: 0.85; }
.leading-\[0\.9\] { line-height: 0.9; }
.leading-\[0\.95\] { line-height: 0.95; }
.leading-\[1\.1\] { line-height: 1.1; }

/* ===== TYPOGRAPHY - DECORATION ===== */
.underline { text-decoration-line: underline; }
.no-underline { text-decoration-line: none; }
.underline-offset-4 { text-underline-offset: 4px; }
.decoration-neutral-300 { text-decoration-color: #d4d4d4; }

/* ===== TEXT COLORS ===== */
.text-white { color: #fff; }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-black { color: #000; }
.text-neutral-200 { color: #e5e5e5; }
.text-neutral-300 { color: #d4d4d4; }
.text-neutral-400 { color: #a3a3a3; }
.text-neutral-500 { color: #737373; }
.text-neutral-600 { color: #525252; }
.text-neutral-700 { color: #404040; }
.text-neutral-800 { color: #262626; }
.text-neutral-900 { color: #171717; }
.text-blue-500 { color: #3b82f6; }

/* ===== BACKGROUND COLORS ===== */
.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-transparent { background-color: transparent; }
.bg-neutral-50 { background-color: #fafafa; }
.bg-neutral-100 { background-color: #f5f5f5; }
.bg-neutral-200 { background-color: #e5e5e5; }
.bg-neutral-300 { background-color: #d4d4d4; }
.bg-neutral-800 { background-color: #262626; }
.bg-neutral-900 { background-color: #171717; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }

/* ===== GRADIENTS ===== */
.bg-gradient-to-b.from-white.to-neutral-50 {
  background: linear-gradient(to bottom, #fff, #fafafa);
}

.bg-gradient-to-t.from-black\/40.to-transparent {
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.bg-gradient-to-t.from-black\/70.via-black\/20.to-transparent {
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), transparent);
}

/* ===== BORDER ===== */
.border { border-width: 1px; border-style: solid; border-color: #e5e5e5; }
.border-b { border-bottom: 1px solid #e5e5e5; }
.border-t { border-top: 1px solid #e5e5e5; }
.border-y { border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; }
.border-l { border-left: 1px solid #e5e5e5; }
.border-b-2 { border-bottom: 2px solid #e5e5e5; }
.border-l-2 { border-left: 2px solid #e5e5e5; }
.border-2 { border-width: 2px; border-style: solid; }

/* ===== BORDER COLORS ===== */
.border-neutral-100 { border-color: #f5f5f5; }
.border-neutral-200 { border-color: #e5e5e5; }
.border-neutral-300 { border-color: #d4d4d4; }
.border-neutral-400 { border-color: #a3a3a3; }
.border-neutral-700 { border-color: #404040; }
.border-neutral-800 { border-color: #262626; }
.border-neutral-900 { border-color: #171717; }
.border-white { border-color: #fff; }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }

/* ===== BORDER RADIUS ===== */
.rounded-full { border-radius: 9999px; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }

/* ===== OPACITY ===== */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }
.opacity-\[0\.02\] { opacity: 0.02; }

/* ===== OVERFLOW ===== */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* ===== OBJECT FIT ===== */
.object-cover { object-fit: cover; }

/* ===== CURSOR ===== */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

/* ===== RESIZE ===== */
.resize-none { resize: none; }

/* ===== MIX BLEND MODE ===== */
.mix-blend-difference { mix-blend-mode: difference; }

/* ===== BOX SHADOW ===== */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

/* ===== BACKDROP ===== */
.backdrop-blur-md { backdrop-filter: blur(12px); }

/* ===== TRANSITIONS ===== */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

/* ===== TRANSFORMS ===== */
.scale-x-0 { transform: scaleX(0); }
.scale-x-100 { transform: scaleX(1); }
.origin-left { transform-origin: left; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== POINTER EVENTS ===== */
.pointer-events-none { pointer-events: none; }

/* ===== WILL CHANGE ===== */
.will-change-transform { will-change: transform; }


/* ==========================================================================
   HOVER UTILITIES
   ========================================================================== */
.hover\:text-white:hover { color: #fff; }
.hover\:text-neutral-600:hover { color: #525252; }
.hover\:border-neutral-400:hover { border-color: #a3a3a3; }
.hover\:border-neutral-900:hover { border-color: #171717; }
.hover\:bg-neutral-800:hover { background-color: #262626; }
.hover\:bg-neutral-900:hover { background-color: #171717; }
.hover\:bg-white:hover { background-color: #fff; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.hover\:gap-6:hover { gap: 1.5rem; }
.hover\:underline:hover { text-decoration-line: underline; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:translate-x-2:hover { transform: translateX(0.5rem); }

/* ===== GROUP HOVER ===== */
.group:hover .group-hover\:text-neutral-900 { color: #171717; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-x-2 { transform: translateX(0.5rem); }

/* ===== FOCUS ===== */
.focus\:outline-none:focus { outline: none; }
.focus\:border-neutral-900:focus { border-color: #171717; }

/* ===== GROUP FOCUS WITHIN ===== */
.group:focus-within .group-focus-within\:text-neutral-900 { color: #171717; }

/* ===== PLACEHOLDER ===== */
.placeholder\:text-neutral-300::placeholder { color: #d4d4d4; }

/* ===== SELECTION ===== */
.selection\:bg-neutral-900::selection { background-color: #171717; }
.selection\:text-white::selection { color: #fff; }


/* ==========================================================================
   RESPONSIVE - md (768px)
   ========================================================================== */
@media (min-width: 768px) {
  .custom-cursor {
    display: flex;
  }

  .nav {
    padding: 1.25rem 3rem;
  }

  .nav--scrolled {
    padding: 0.75rem 3rem;
  }

  .nav-logo-img {
    height: 1.5rem;
  }

  .nav-cta {
    padding: 0.75rem 1.75rem;
    font-size: 0.75rem;
  }

  /* Fullscreen menu: side-by-side layout */
  .menu-inner {
    flex-direction: row;
    padding: 6rem 4rem 4rem;
    gap: 4rem;
  }

  .menu-main {
    flex: 1;
  }

  .menu-side {
    width: 300px;
    flex-shrink: 0;
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-top: 0;
    padding-left: 3rem;
    justify-content: center;
  }

  .menu-links {
    gap: 0.75rem;
  }

  .menu-services ul li a {
    font-size: 1.25rem;
  }

  .hero-content {
    padding: 0 3rem 8rem;
    align-items: center;
    text-align: center;
  }

  .hero-tag {
    font-size: 0.875rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }


  /* Display */
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:inline-flex { display: inline-flex; }

  /* Flex */
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }

  /* Grid */
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-5 { grid-column: span 5 / span 5; }
  .md\:col-span-6 { grid-column: span 6 / span 6; }
  .md\:col-span-7 { grid-column: span 7 / span 7; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:col-start-1 { grid-column-start: 1; }
  .md\:col-start-8 { grid-column-start: 8; }
  .md\:row-span-2 { grid-row: span 2 / span 2; }
  .md\:row-start-1 { grid-row-start: 1; }

  /* Gap */
  .md\:gap-0 { gap: 0; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:gap-24 { gap: 6rem; }
  .md\:gap-32 { gap: 8rem; }

  /* Columns */
  .md\:columns-2 { columns: 2; }

  /* Width */
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333%; }
  .md\:w-24 { width: 6rem; }
  .md\:w-32 { width: 8rem; }

  /* Spacing */
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:py-48 { padding-top: 12rem; padding-bottom: 12rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:p-16 { padding: 4rem; }
  .md\:pt-8 { padding-top: 2rem; }
  .md\:mb-16 { margin-bottom: 4rem; }
  .md\:mb-24 { margin-bottom: 6rem; }

  /* Typography */
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-8xl { font-size: 6rem; line-height: 1; }
  .md\:text-\[10rem\] { font-size: 10rem; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }

  /* Space */
  .md\:space-y-20 > * + * { margin-top: 5rem; }
  .md\:space-y-24 > * + * { margin-top: 6rem; }
  .md\:space-y-32 > * + * { margin-top: 8rem; }

  /* Position */
  .md\:sticky { position: sticky; }
  .md\:top-32 { top: 8rem; }
}


/* ==========================================================================
   RESPONSIVE - lg (1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
}

/* ==========================================================================
   RESPONSIVE - xl (1280px)
   ========================================================================== */
@media (min-width: 1280px) {
  .menu-inner {
    padding: 6rem 6rem 4rem;
  }

  .menu-side {
    width: 350px;
  }

  .menu-links a {
    font-size: 5.5rem;
  }

  .menu-services ul li a {
    font-size: 1.35rem;
  }
}


/* ==========================================================================
   RESPONSIVE - sm (640px)
   ========================================================================== */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}


/* ==========================================================================
   CONTENT SECTION - Standard section padding
   ========================================================================== */
.content-section {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .content-section {
    padding: 6rem 3rem;
  }
}

.content-section .section-inner {
  max-width: 80rem;
  margin: 0 auto;
}

@media(max-width: 767px){
#wpforms-26-field_9 {
    display: grid !important;
    grid-template-columns: repeat(2, auto);
}}

@media(max-width: 450px){
#wpforms-26-field_9 {
    display: grid !important;
    grid-template-columns: repeat(1, auto);
}}
#wpforms-26-field_9 {
	display: grid !important;
}

@media(min-width: 767px){
#wpforms-26-field_9 {
    display: grid !important;
    grid-template-columns: repeat(4, auto);
}}





@media(max-width: 767px){
#wpforms-36-field_9 {
    display: grid !important;
    grid-template-columns: repeat(2, auto);
}}

@media(max-width: 450px){
#wpforms-36-field_9 {
    display: grid !important;
    grid-template-columns: repeat(1, auto);
}}
#wpforms-36-field_9 {
	display: grid !important;
}

@media(min-width: 767px){
#wpforms-36-field_9 {
    display: grid !important;
    grid-template-columns: repeat(2, auto);
}}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #171717;
  color: #fff;
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-col h5 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

/* Footer responsive */
@media (min-width: 768px) {
  .site-footer {
    padding: 5rem 3rem 2.5rem;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-brand {
    flex-shrink: 0;
  }

  .footer-columns {
    grid-template-columns: repeat(3, auto);
    gap: 4rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/*impressum*/

 
   
    /* ===== ANIMATIONS ===== */
    .anim-up {
      opacity: 1;
      transform: translateY(40px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }

    .anim-up.visible {
      opacity: 1;
      transform: translate(0);
    }

    /* ===== NAVIGATION ===== */
   

    /* ===== LEGAL PAGE STYLES ===== */
    .legal-header {
      padding-top: 7rem;
      padding-bottom: 3rem;
      background: var(--bg2);
      border-bottom: 1px solid #E2E8F0;
    }

    .legal-header-inner {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .legal-header-inner h1 {
      font-size: 2.25rem;
      font-weight: 800;
      letter-spacing: -0.025em;
      color: var(--tx);
      margin-bottom: 0.5rem;
    }

    .legal-header-inner p {
      font-size: 15px;
      color: var(--tx3);
      line-height: 1.6;
    }

    .legal-content {
      padding: 3rem 1.5rem 5rem;
    }

    .legal-content-narrow {
      max-width: 800px;
      margin: 0 auto;
    }

    .legal-section {
      margin-bottom: 2.5rem;
    }

    .legal-section:last-child {
      margin-bottom: 0;
    }

    .legal-section h2 {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--tx);
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }

    .legal-section h3 {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--tx);
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .legal-section p,
    .legal-section li {
      font-size: 15px;
      color: var(--tx2);
      line-height: 1.7;
      margin-bottom: 0.5rem;
    }

    .legal-section ul {
      list-style: disc;
      padding-left: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .legal-section a {
      color: var(--c1);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .legal-section a:hover {
      color: var(--c1d);
    }

    .legal-info-block {
      background: var(--bg2);
      border: 1px solid var(--bd);
      border-radius: var(--r2);
      padding: 1.25rem 1.5rem;
      margin: 1rem 0;
    }

    .legal-info-block p {
      margin-bottom: 0.25rem;
    }

    .legal-info-block p:last-child {
      margin-bottom: 0;
    }

    

    .col-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: rgba(255, 255, 255, 0.35);
      margin-bottom: 1rem;
    }

    .col-link {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 0.65rem;
      transition: color 0.3s;
    }

    .col-link:hover {
      color: var(--c1);
    }

    .col-link:last-child {
      margin-bottom: 0;
    }

   

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

     

    /* --- MOBILE --- */
    @media (max-width: 767px) {
    

      .legal-header {
        padding-top: 5.5rem;
        padding-bottom: 2rem;
      }

      .legal-header-inner {
        padding: 0 1.15rem;
      }

      .legal-header-inner h1 {
        font-size: 1.65rem;
      }

      .legal-header-inner p {
        font-size: 13px;
      }

      .legal-content {
        padding: 2rem 1.15rem 3rem;
      }

      .legal-section h2 {
        font-size: 1.15rem;
      }

      .legal-section h3 {
        font-size: 0.95rem;
      }

      .legal-section p,
      .legal-section li {
        font-size: 13.5px;
        line-height: 1.65;
        overflow-wrap: break-word;
        word-break: break-word;
      }

      .legal-info-block {
        padding: 1rem;
      }

      .legal-info-block p {
        font-size: 13.5px;
      }

     
      
    }

    @media (min-width: 768px) {
      

      .section-pad {
        padding: 5rem 2.5rem;
      }

      .legal-header-inner {
        padding: 0 2.5rem;
      }

      .legal-content {
        padding: 3rem 2.5rem 5rem;
      }

      .legal-header-inner h1 {
        font-size: 2.5rem;
      }

     
    }

    @media (min-width: 1024px) {
   

      .section-pad {
        padding: 7rem 3rem;
      }

      .legal-header-inner {
        padding: 0 3rem;
      }

      .legal-content {
        padding: 4rem 3rem 7rem;
      }

      .legal-header-inner h1 {
        font-size: 2.75rem;
      }

     
    }







 
.page-id-119 .nav-logo-img {
    filter: none;
} 
 
 .page-id-119 .nav-logo-img {
 filter: none;
    filter: brightness(1) invert(1);}  

.page-id-119 .nav-right {
  color: #171717;
}

.page-id-119 .hamburger span {
  background: #171717;
}



.page-id-121 .nav-logo-img {
    filter: none;
} 
 
 .page-id-121 .nav-logo-img {
 filter: none;
    filter: brightness(1) invert(1);}  

.page-id-121 .nav-right {
  color: #171717;
}

.page-id-121 .hamburger span {
  background: #171717;
}
