/* ==========================================================================
   Marketingberatung Bodo Broeker — base.css
   Shared foundation: reset, variables, nav, footer, utilities
   Loaded on EVERY page.
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
  --wine: #862633;
  --wine-hover: #6d1e2a;
  --wine-light: rgba(134,38,51,.06);
  --wine-glow: rgba(134,38,51,.4);
  --dark: #111;
  --dark2: #1a1a1a;
  --dark3: #0a0a0a;
  --text: #111;
  --text2: #555;
  --text3: #999;
  --light: #f5f5f4;
  --white: #fff;
  --border: #e5e5e3;
  --radius: 4px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h: 72px;
  --max-w: 1200px;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-expo: cubic-bezier(.19,1,.22,1);

  /* Aurora background colors (wine-red brand palette) */
  --aurora-1: #862633;
  --aurora-2: #c9646e;
  --aurora-3: #d4838b;
  --aurora-4: #c49ca0;
  --aurora-5: #6d1e2a;
  --transparent: transparent;
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

/* Skip-to-content link — visible only on keyboard focus */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  font-size: .875rem;
  font-weight: 600;
  background: var(--wine);
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  transition: top .2s;
}

.skip-link:focus {
  top: 12px;
}

/* Screen-reader only */
.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;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul, ol {
  list-style: none;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 700;
}

::selection {
  background: var(--wine);
  color: var(--white);
}

/* Focus-visible ring for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

/* Remove outline for mouse clicks */
:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,.96);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: .875rem;
  text-transform: uppercase;
  color: var(--dark);
  transition: opacity .2s;
  flex-shrink: 0;
}

.nav__logo:hover {
  opacity: .7;
}

.nav__logo-bold {
  font-weight: 700;
  letter-spacing: .08em;
}

.nav__logo-light {
  font-weight: 300;
  opacity: .35;
  letter-spacing: .08em;
}

/* Nav links */
.nav__links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text2);
  transition: color .25s var(--ease);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}

.nav__link:hover {
  color: var(--dark);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link.active {
  color: var(--dark);
}

.nav__link.active::after {
  transform: scaleX(1);
}

/* Phone link in nav (desktop only) */
.nav__phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text2);
  transition: color .25s var(--ease);
  flex-shrink: 0;
  text-decoration: none;
}

.nav__phone:hover {
  color: var(--wine);
}

.nav__phone svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* CTA button */
.nav__cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: .8125rem;
  font-weight: 600;
  background: var(--wine);
  color: var(--white);
  border-radius: var(--radius);
  transition: background .25s var(--ease), transform .25s var(--ease);
  flex-shrink: 0;
  letter-spacing: .01em;
}

.nav__cta:hover {
  background: var(--wine-hover);
  transform: translateY(-1px);
}

.nav__cta:active {
  transform: translateY(0);
}

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
  z-index: 101;
  padding: 4px 0;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--dark);
  border-radius: 1px;
  transition: transform .35s var(--ease-out), opacity .25s var(--ease);
  transform-origin: center;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.nav__burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

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

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu__link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  transition: color .2s;
  position: relative;
}

.mobile-menu__link:hover {
  color: var(--wine);
}

.mobile-menu__link.active {
  color: var(--wine);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--wine);
  color: var(--white);
  border-radius: var(--radius);
  transition: background .25s;
}

.mobile-menu__cta:hover {
  background: var(--wine-hover);
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }

  .nav__phone {
    display: inline-flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__burger,
  .mobile-menu {
    display: none;
  }
}

/* ==========================================================================
   FOOTER — Light with wine gradient accent
   ========================================================================== */
.footer {
  position: relative;
  padding: 48px 0 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  color: var(--text2);
  overflow: hidden;
}

/* Subtle wine gradient bar at top */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine) 0%, rgba(134,38,51,.3) 50%, var(--wine) 100%);
}

/* Soft radial glow in background */
.footer::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  width: 800px;
  height: 400px;
  margin-left: -400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(134,38,51,.04) 0%, transparent 70%);
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Top row: logo left, links right */
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

/* Footer logo */
.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: .875rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s;
}

.footer__logo:hover {
  opacity: .7;
}

.footer__logo-bold {
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .08em;
}

.footer__logo-light {
  font-weight: 300;
  color: var(--dark);
  opacity: .3;
  letter-spacing: .08em;
}

/* Links row */
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__link {
  font-size: .8125rem;
  color: var(--text3);
  transition: color .25s var(--ease);
}

.footer__link:hover {
  color: var(--wine);
}

/* Contact row */
.footer__contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  color: var(--text3);
  text-decoration: none;
  transition: color .25s var(--ease);
}

a.footer__contact:hover {
  color: var(--wine);
}

.footer__contact svg {
  width: 14px;
  height: 14px;
  color: var(--wine);
  opacity: .5;
  flex-shrink: 0;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .6875rem;
  color: var(--text3);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  color: var(--text3);
  transition: color .25s var(--ease);
}

.footer__legal a:hover {
  color: var(--wine);
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

@media (min-width: 1024px) {
  .footer {
    padding: 56px 0 28px;
  }
}

/* ==========================================================================
   SHARED COMPONENTS
   ========================================================================== */

/* Eyebrow label */
.eyebrow {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 12px;
  display: inline-block;
}

.eyebrow--light {
  color: rgba(255,255,255,.5);
}

/* Section header */
.section-header {
  margin-bottom: 56px;
}

.section-header .eyebrow {
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
}

.section-header h2 span {
  color: var(--wine);
}

.section-header p {
  margin-top: 16px;
  font-size: .9375rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 520px;
}

.section-header--light h2 {
  color: var(--white);
}

.section-header--light p {
  color: rgba(255,255,255,.4);
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

/* Page hero (subpages) */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 56px) 24px 56px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero__inner {
  max-width: var(--max-w);
  width: 100%;
}

.page-hero__breadcrumb {
  font-size: .6875rem;
  font-weight: 500;
  color: var(--text3);
  letter-spacing: .04em;
  margin-bottom: 20px;
}

.page-hero__breadcrumb a {
  color: var(--text3);
  transition: color .2s;
}

.page-hero__breadcrumb a:hover {
  color: var(--wine);
}

.page-hero__breadcrumb span {
  margin: 0 8px;
  opacity: .4;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--dark);
  margin-bottom: 20px;
}

.page-hero__title span {
  color: var(--wine);
}

.page-hero__desc {
  font-size: clamp(.9375rem, 1.5vw, 1.0625rem);
  color: var(--text2);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.page-hero__rule {
  width: 48px;
  height: 2px;
  background: var(--wine);
  margin: 24px auto 0;
  border: none;
}

/* Bullet list */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.bullet-list li {
  font-size: .9375rem;
  color: var(--text2);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1.5px;
  background: var(--wine);
}

.bullet-list--strong li {
  font-weight: 500;
  color: var(--text);
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

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

/* Stagger variants */
.reveal[data-delay="1"] { --reveal-delay: .1s; }
.reveal[data-delay="2"] { --reveal-delay: .2s; }
.reveal[data-delay="3"] { --reveal-delay: .3s; }
.reveal[data-delay="4"] { --reveal-delay: .4s; }
.reveal[data-delay="5"] { --reveal-delay: .5s; }

/* ==========================================================================
   FILM GRAIN OVERLAY
   ========================================================================== */
.grain-overlay {
  position: relative;
}

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

/* ==========================================================================
   FORM COMPONENTS (shared across pages)
   ========================================================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-size: .9375rem;
  background: var(--light);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(134,38,51,.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  font-size: .6875rem;
  color: var(--wine);
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--wine);
}

.form-group.has-error .form-error {
  display: block;
}

/* ==========================================================================
   BUTTONS (shared)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: .9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  letter-spacing: .01em;
}

.btn:active {
  transform: translateY(0);
}

.btn--wine {
  background: var(--wine);
  color: var(--white);
}

.btn--wine:hover {
  background: var(--wine-hover);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
}

.btn--dark:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--wine);
  color: var(--wine);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
}

.btn--white:hover {
  background: var(--light);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px 22px;
  font-size: .8125rem;
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* Button arrow icon */
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform .25s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 72px;
}

.legal__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.legal h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 8px;
}

.legal h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 6px;
}

.legal p {
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.8;
  max-width: 68ch;
  margin-bottom: 8px;
}

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

.legal ul {
  margin: 8px 0;
  padding-left: 20px;
}

.legal ul li {
  list-style: disc;
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 2px;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--wine);
  margin-bottom: 24px;
  transition: gap .25s var(--ease);
}

.legal__back:hover {
  gap: 10px;
}

/* ==========================================================================
   CTA BANNER — Light with wine gradient accent
   ========================================================================== */

/* ==========================================================================
   COUNTER ANIMATION
   ========================================================================== */
[data-count] {
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   UTILITY / LAYOUT HELPERS
   ========================================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--light {
  background: var(--light);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--compact {
  padding: 64px 0;
}

.text-center { text-align: center; }
.text-wine { color: var(--wine); }
.text-muted { color: var(--text2); }

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

/* Tablet: 768px */
@media (max-width: 767px) {
  .page-hero {
    min-height: 32vh;
    padding: calc(var(--nav-h) + 40px) 24px 40px;
  }

  .page-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

}

/* Small mobile */
@media (max-width: 374px) {
  .nav__inner {
    padding: 0 16px;
  }

  .footer__inner {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }
}

/* Large desktop: 1280px+ */
@media (min-width: 1280px) {
  .page-hero {
    min-height: 44vh;
    padding: calc(var(--nav-h) + 72px) 24px 72px;
  }

  .section {
    padding: 120px 0;
  }
}

/* ==========================================================================
   CUSTOM CURSOR — "Magnetic Ink"
   Wine-red dot cursor with trail, magnetic pull, labels
   Hidden on touch devices
   ========================================================================== */
body.has-cursor { cursor: none; }
body.has-cursor a,
body.has-cursor button,
body.has-cursor input,
body.has-cursor textarea,
body.has-cursor select,
body.has-cursor [data-magnetic],
body.has-cursor [role="button"] { cursor: none; }

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}

.cursor__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--wine);
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), opacity .2s;
}

.cursor--hover .cursor__dot {
  width: 40px;
  height: 40px;
  opacity: .7;
}

.cursor--magnetic .cursor__dot {
  width: 48px;
  height: 48px;
  background: #fff;
  mix-blend-mode: difference;
}

.cursor--labeled .cursor__dot {
  width: 64px;
  height: 64px;
  opacity: .55;
}

.cursor__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s var(--ease);
  pointer-events: none;
}

.cursor--labeled .cursor__label {
  opacity: 1;
}

.cursor__trail {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
}

.cursor__trail span {
  position: absolute;
  border-radius: 50%;
  background: var(--wine);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor__trail span:nth-child(1) { width: 6px; height: 6px; opacity: .35; }
.cursor__trail span:nth-child(2) { width: 5px; height: 5px; opacity: .25; }
.cursor__trail span:nth-child(3) { width: 4px; height: 4px; opacity: .16; }
.cursor__trail span:nth-child(4) { width: 3px; height: 3px; opacity: .10; }
.cursor__trail span:nth-child(5) { width: 3px; height: 3px; opacity: .06; }

@media (hover: none) {
  .cursor,
  .cursor__trail { display: none !important; }
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button { cursor: auto; }
}

/* ==========================================================================
   TEXT SCRAMBLE REVEAL
   ========================================================================== */
.text-scramble {
  display: inline-block;
}

/* ==========================================================================
   FOOTER CONTACT LINKS
   ========================================================================== */
a.footer__contact {
  text-decoration: none;
  transition: color .25s var(--ease);
}

a.footer__contact:hover {
  color: var(--white);
}

/* ==========================================================================
   INLINE CTA — lightweight mid-page call to action
   ========================================================================== */
.inline-cta {
  text-align: center;
  padding: 56px 24px;
  background: var(--white);
}

.inline-cta__text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.inline-cta .btn {
  font-size: .9375rem;
}

@media (max-width: 767px) {
  .inline-cta {
    padding: 40px 24px;
  }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

/* ==========================================================================
   FORM TRUST SIGNALS
   ========================================================================== */
.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.form-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--text3);
}

.form-trust__item svg {
  width: 14px;
  height: 14px;
  color: var(--wine);
  flex-shrink: 0;
}

/* ==========================================================================
   POST-FORM DIRECT CONTACT (kontakt page)
   ========================================================================== */
.contact__direct {
  text-align: center;
  padding: 40px 0 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.contact__direct-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wine);
  text-decoration: none;
  transition: opacity .25s var(--ease);
  margin-bottom: 8px;
}

.contact__phone-link:hover {
  opacity: .7;
}

.contact__phone-link svg {
  width: 20px;
  height: 20px;
}

.contact__direct-hours {
  font-size: .8125rem;
  color: var(--text3);
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Hide custom cursor + trail */
  .cursor,
  .cursor__trail { display: none !important; }
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button { cursor: auto; }


  /* Text scramble: show immediately */
  .text-scramble { opacity: 1 !important; }

}
