/* ============================================================
   KREATIVCONCEPT BY LENA – PREMIUM REDESIGN
   ============================================================ */

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

:root {
  --primary: #ccc2ba;
  --primary-dark: #a79688;
  --primary-darker: #8a7b6e;
  --accent: #bcaaa1;
  --bg: #f5f2f0;
  --bg-white: #ffffff;
  --bg-cream: #faf8f6;
  --text: #232323;
  --text-light: #66605f;
  --text-muted: #9e9e9e;
  --border: #e6e6e6;
  --border-accent: #d7cece;
  --dark: #1a1614;
  --dark-card: #231f1c;
  --white: #ffffff;
  --gold: #c9a96e;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-accent: 'Syne', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
  --shadow-xl: 0 25px 80px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.container--narrow {
  max-width: 800px;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-dark);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s var(--ease), opacity 0.15s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor.hover {
  transform: translate(-50%, -50%) scale(2.5);
  background: rgba(204, 194, 186, 0.15);
  border-color: var(--white);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: pulse 1.2s infinite ease-in-out;
}

.preloader__bar {
  width: 120px;
  height: 2px;
  background: var(--border);
  margin-top: 24px;
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--primary-dark);
  border-radius: 2px;
  animation: loading 1s infinite ease-in-out;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s var(--ease);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

.header.scrolled::before {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.nav__logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: transform 0.4s var(--ease-bounce);
}

.nav__logo:hover img {
  transform: rotate(-10deg) scale(1.1);
}

.nav__logo-text {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--primary-dark);
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.nav__social a {
  color: var(--text-light);
  font-size: 1.15rem;
  transition: all 0.3s var(--ease);
}

.nav__social a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.nav__cta {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--text);
  border-radius: 50px;
  color: var(--white);
  transition: all 0.3s var(--ease);
}

.nav__cta:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.4s var(--ease);
  transform-origin: center;
}

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

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav__link {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: none;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.mobile-menu.active .nav__link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active .nav__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .nav__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .nav__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .nav__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .nav__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .nav__link:nth-child(6) { transition-delay: 0.35s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--text);
  color: var(--white);
  border: 2px solid var(--text);
}

.btn--primary:hover {
  background: transparent;
  color: var(--text);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--white);
}

.btn--white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.btn--sm {
  padding: 12px 28px;
  font-size: 0.78rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transform: scale(1.05);
  transition: transform 8s var(--ease);
}

.hero.loaded .hero__bg img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 22, 20, 0.7) 0%,
    rgba(26, 22, 20, 0.3) 50%,
    rgba(26, 22, 20, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--primary);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  letter-spacing: -1px;
}

.hero__title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 300;
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.hero__scroll-text {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--primary);
  animation: scrollLine 2s infinite;
}

/* ===== SECTION DEFAULTS ===== */
.section {
  padding: 120px 0;
  position: relative;
}

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

.section--cream {
  background: var(--bg-cream);
}

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

.section__header {
  margin-bottom: 72px;
}

.section__header--center {
  text-align: center;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section--dark .section__tag {
  color: var(--primary);
}

.section__tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: currentColor;
}

.section__header--center .section__tag::before {
  display: none;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

.section__desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

.section--dark .section__desc {
  color: rgba(255,255,255,0.6);
}

.section__header--center .section__desc {
  margin: 0 auto;
}

/* ===== MARQUEE ===== */
.marquee {
  padding: 14px 0;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee__track {
  display: flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 40px;
}

.marquee__item::after {
  content: '✦';
  font-size: 0.7rem;
  color: var(--primary-dark);
}

/* ===== ABOUT / INTRO ===== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.intro__visual {
  position: relative;
}

.intro__img-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl);
}

.intro__img-main img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.intro__img-main:hover img {
  transform: scale(1.03);
}

.intro__img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  z-index: 3;
  overflow: hidden;
  border: 5px solid var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.intro__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__decor {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  z-index: 1;
  opacity: 0.4;
}

.intro__content {
  padding: 20px 0;
}

.intro__text {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.intro__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-darker);
  border-left: 3px solid var(--primary-dark);
  padding: 16px 0 16px 28px;
  margin: 36px 0;
  line-height: 1.5;
}

.intro__stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.intro__stat-number {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0px;
}

.intro__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--ease);
  border: 1px solid var(--border);
  group: true;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card__image {
  height: 340px;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,20,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.service-card:hover .service-card__image::after {
  opacity: 1;
}

.service-card__number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 50px;
  z-index: 2;
}

.service-card__body {
  padding: 32px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--bg);
  color: var(--primary-darker);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 50px;
  transition: all 0.3s var(--ease);
}

.tag:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary-darker);
  transition: all 0.3s var(--ease);
}

.service-card__link i {
  font-size: 0.7rem;
  transition: transform 0.3s var(--ease);
}

.service-card__link:hover {
  color: var(--text);
}

.service-card__link:hover i {
  transform: translateX(4px);
}

/* ===== GALLERY ===== */
.gallery__filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.gallery__filter {
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 50px;
  color: var(--text-light);
  border: 1.5px solid var(--border);
  background: transparent;
  transition: all 0.3s var(--ease);
}

.gallery__filter:hover,
.gallery__filter.active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.gallery__masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}

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

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,20,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease);
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255,255,255,0.15);
}

.lightbox__close { top: 28px; right: 28px; font-size: 1.5rem; }
.lightbox__nav--prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 28px; top: 50%; transform: translateY(-50%); }

/* ===== PARALLAX TEXT ===== */
.parallax-text {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.parallax-text__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.parallax-text__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-text__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 20, 0.75);
  z-index: 1;
}

.parallax-text__content {
  position: relative;
  z-index: 2;
}

.parallax-text__quote {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 28px;
  line-height: 1.35;
}

.parallax-text__author {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
}

/* ===== CONTACT ===== */
.contact {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.contact__info-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.contact__info-text {
  color: var(--text-light);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact__detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-darker);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.contact__detail:hover .contact__detail-icon {
  background: var(--primary-dark);
  color: var(--white);
}

.contact__detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact__detail-value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.contact__detail-value a:hover {
  color: var(--primary-darker);
}

.contact__form-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 52px;
  border: 1px solid var(--border);
}

/* ===== FORMS ===== */
.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 8px;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 15px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-cream);
  transition: all 0.3s var(--ease);
  appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 4px rgba(167,150,136,0.12);
  background: var(--bg-white);
}

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

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2366605f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.form__success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form__success.active {
  display: block;
}

.form__success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #4caf50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

/* ===== VERLEIH / RENTAL ===== */
.rental__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.rental-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.rental-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--primary-darker);
  transition: all 0.3s var(--ease);
}

.rental-card:hover .rental-card__icon {
  background: var(--primary-dark);
  color: var(--white);
  transform: scale(1.1);
}

.rental-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.rental-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
}

.rental__form-section {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 64px;
  border: 1px solid var(--border);
}

.rental__form-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.rental__form-desc {
  color: var(--text-light);
  margin-bottom: 40px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.checkbox-item:hover {
  border-color: var(--primary-dark);
}

.checkbox-item input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}

.checkbox-item input[type="checkbox"]:checked {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.checkbox-item input[type="checkbox"]:checked::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
}

.checkbox-item label {
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero__breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.page-hero__breadcrumb a {
  color: var(--primary);
  transition: color 0.3s;
}

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

/* ===== PROCESS / TIMELINE ===== */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: process;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  counter-increment: process;
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--border);
  display: block;
  margin-bottom: 20px;
  transition: color 0.3s var(--ease);
  letter-spacing: -2px;
}

.process-step:hover::before {
  color: var(--primary-dark);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step__text {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand { max-width: 300px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: white;
  font-weight: 600;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s var(--ease);
}

.footer__social a:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s var(--ease);
}

.footer__link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer__bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer__bottom a:hover {
  color: var(--primary);
}

/* ===== LEGAL ===== */
.legal {
  max-width: 760px;
  margin: 0 auto;
}

.legal h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text);
  margin: 48px 0 16px;
}

.legal h2:first-child { margin-top: 0; }

.legal p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.legal a {
  color: var(--primary-darker);
  border-bottom: 1px solid var(--primary);
}

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

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

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

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 120%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="scale"] {
  transform: scale(0.9);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-stagger].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].revealed > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: 0.15s; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: 0.2s; }
[data-stagger].revealed > *:nth-child(5) { transition-delay: 0.25s; }
[data-stagger].revealed > *:nth-child(6) { transition-delay: 0.3s; }
[data-stagger].revealed > *:nth-child(7) { transition-delay: 0.35s; }
[data-stagger].revealed > *:nth-child(8) { transition-delay: 0.4s; }

[data-stagger].revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .intro { grid-template-columns: 1fr; gap: 48px; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .gallery__masonry { columns: 2; }

  .rental__form-section { padding: 40px 28px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav__links,
  .nav__right { display: none; }
  .nav__toggle { display: flex; }

  .hero__content { padding: 100px 0 80px; }
  .hero__title { font-size: 2.8rem; }

  .intro__img-main img { height: 400px; }
  .intro__img-accent { display: none; }
  .intro__stats { gap: 32px; }

  .gallery__masonry { columns: 2; column-gap: 12px; }
  .gallery__item { margin-bottom: 12px; }

  .contact__form-wrapper { padding: 36px 24px; }
  .form__row { grid-template-columns: 1fr; }

  .process__grid { grid-template-columns: 1fr; gap: 0; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cursor { display: none; }

  .checkbox-group { grid-template-columns: 1fr; }
}

/* ===== EXTRA EFFECTS ===== */

/* Smooth text gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow effect on hover for service cards */
.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), transparent, var(--primary-dark));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.service-card:hover::before {
  opacity: 0.5;
}

/* Floating animation for decor elements */
.intro__decor {
  animation: float 4s ease-in-out infinite;
}

/* Smooth image reveal */
.img-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.img-reveal.revealed {
  clip-path: inset(0);
}

/* Line animation for section dividers */
.line-animate {
  width: 0;
  height: 1px;
  background: var(--primary-dark);
  transition: width 1.2s var(--ease);
  margin: 0 auto;
}

.line-animate.revealed {
  width: 80px;
}

/* Rental card tilt on hover */
.rental-card {
  transform-style: preserve-3d;
  perspective: 600px;
}

/* About tag with accent font */
.about__tag,
.intro__content .section__tag {
  font-family: var(--font-accent);
}

/* Page hero title larger */
.page-hero__title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -1px;
}

/* Footer logo with accent font */
.footer__logo-text {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Footer heading */
.footer__heading {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Rental form title */
.rental__form-title {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* Button font */
.btn {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Service card link */
.service-card__link {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Gallery filter */
.gallery__filter {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Legal heading with new font */
.legal h2 {
  font-size: 1.8rem;
  font-weight: 500;
}

/* Mobile menu links */
.mobile-menu .nav__link {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
}

@media (max-width: 480px) {
  .gallery__masonry { columns: 1; }
  .hero__title { font-size: 2.4rem; }
  .intro__stats { flex-direction: column; gap: 20px; }
}
