:root {
  /* Paleta MOKU — light & elegant */
  --gold: #D0A63D;
  --gold-soft: #E5C677;
  --gold-deep: #A8842F;
  --gold-tint: rgba(208, 166, 61, 0.08);
  --beige: #F5F0E6;
  --beige-warm: #EBE2D0;
  --sand: #D9CDB8;
  --paper: #FAF8F3;
  --off-white: #FDFCF8;
  --white: #FFFFFF;
  --ink: #2A2A28;
  --charcoal: #3A3936;
  --graphite: #5A5852;
  --grey: #8A8780;
  --line: rgba(42, 42, 40, 0.08);

  --green: #6B7B5A;
  --brick: #B5634A;

  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  --container: 1440px;
  --section-py: clamp(80px, 12vw, 180px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============== CUSTOM CURSOR ============== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s ease, height 0.3s ease, background 0.3s ease;
  transform: translate(-50%, -50%);
  top: 0; left: 0;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(208, 166, 61, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.4s ease, height 0.4s ease, border-color 0.3s ease, background 0.3s ease;
  transform: translate(-50%, -50%);
  top: 0; left: 0;
}
.cursor.is-hover { width: 0; height: 0; }
.cursor-ring.is-hover {
  width: 80px; height: 80px;
  border-color: var(--gold);
  background: rgba(208, 166, 61, 0.06);
}
.cursor.on-dark { background: var(--gold-soft); }
.cursor-ring.on-dark { border-color: rgba(229, 198, 119, 0.6); }

@media (max-width: 1024px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ============== UTILS ============== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.95;
  color: var(--ink);
}
h2 { font-size: clamp(44px, 7vw, 110px); margin-bottom: 36px; }
h3 { font-size: clamp(26px, 3vw, 38px); }

.italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--gold-deep);
}

/* ============== DEV NOTICE ============== */
.dev-notice {
  position: fixed;
  top: 92px;
  left: 50%;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 32px);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 22px 11px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(208, 166, 61, 0.35), 0 2px 6px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  pointer-events: none;
  transform-origin: center top;
  animation: devNoticeIntro 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both,
             devNoticeGlow 2.6s ease-in-out 0.7s infinite;
}
.dev-notice__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
  flex-shrink: 0;
  animation: devNoticeDot 1.6s ease-in-out infinite;
}
.dev-notice__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  opacity: 0;
  animation: devNoticeRipple 1.6s ease-out infinite;
}
.dev-notice__text {
  display: inline-block;
}

@keyframes devNoticeIntro {
  from { opacity: 0; transform: translate(-50%, -20px) scale(0.85); }
  to   { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@keyframes devNoticeGlow {
  0%, 100% {
    box-shadow: 0 6px 22px rgba(208, 166, 61, 0.35), 0 0 0 0 rgba(208, 166, 61, 0.45);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow: 0 8px 30px rgba(208, 166, 61, 0.55), 0 0 0 10px rgba(208, 166, 61, 0);
    transform: translateX(-50%) scale(1.04);
  }
}
@keyframes devNoticeDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
@keyframes devNoticeRipple {
  0%   { opacity: 0.7; transform: scale(0.6); }
  100% { opacity: 0;   transform: scale(1.8); }
}

@media (max-width: 640px) {
  .dev-notice {
    top: 76px;
    font-size: 11px;
    padding: 9px 16px 9px 14px;
    gap: 8px;
    letter-spacing: 0.06em;
  }
  .dev-notice__dot { width: 7px; height: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .dev-notice,
  .dev-notice__dot,
  .dev-notice__dot::after {
    animation: none !important;
  }
}

/* ============== NAVIGATION ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(253, 252, 248, 0.92);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom-color: var(--line);
}
.nav:not(.scrolled) .logo,
.nav:not(.scrolled) .nav-links a { color: var(--paper); }
.nav:not(.scrolled) .logo-text small { color: var(--gold-soft); }
.nav:not(.scrolled) .nav-cta { color: var(--paper); border-color: rgba(245, 240, 230, 0.4); }
.nav:not(.scrolled) .nav-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.nav:not(.scrolled) .menu-toggle span { background: var(--paper); }

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--ink);
  transition: color 0.3s ease;
}
.logo-mark {
  width: 36px; height: 36px;
  display: block;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { line-height: 1; }
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  margin-top: 4px;
  transition: color 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  color: var(--ink);
  transition: color 0.3s ease;
  padding: 8px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }
.nav:not(.scrolled) .nav-links a:hover { color: var(--gold-soft); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 32px; height: 32px;
  position: relative;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 18px; }
.menu-toggle.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { top: 15px; transform: rotate(-45deg); }

/* ============== LANG SWITCH ============== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  order: 99;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.22em;
  line-height: 1;
  color: var(--ink);
  padding: 8px 4px;
  margin-left: 16px;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.lang-switch:hover { color: var(--gold-deep); }
.nav:not(.scrolled) .lang-switch { color: var(--paper); }
.nav:not(.scrolled) .lang-switch:hover { color: var(--gold-soft); }

.lang-switch .disabled {
  color: lightgrey;
  cursor: auto;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--paper);
}
.hero-bg {
  position: absolute;
  inset: -10% 0;
  background-image:
    image-set(
      url('assets/header-1600.webp') type('image/webp') 1x,
      url('assets/header-1600.jpg') type('image/jpeg') 1x
    );
  background-image: url('assets/header-1600.jpg');
  background-image:
    image-set(
      url('assets/header-1600.webp') type('image/webp') 1x,
      url('assets/header-1600.jpg') type('image/jpeg') 1x
    );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}
@media (max-width: 1100px) {
  .hero-bg {
    background-image: url('assets/header-1200.jpg');
    background-image:
      image-set(
        url('assets/header-1200.webp') type('image/webp') 1x,
        url('assets/header-1600.webp') type('image/webp') 2x,
        url('assets/header-1200.jpg') type('image/jpeg') 1x,
        url('assets/header-1600.jpg') type('image/jpeg') 2x
      );
  }
}
@media (max-width: 640px) {
  .hero-bg {
    background-image: url('assets/header-1600.jpg');
    background-image:
      image-set(
        url('assets/header-800.webp') type('image/webp') 1x,
        url('assets/header-1200.webp') type('image/webp') 2x,
        url('assets/header-1600.webp') type('image/webp') 3x,
        url('assets/header-800.jpg') type('image/jpeg') 1x,
        url('assets/header-1200.jpg') type('image/jpeg') 2x,
        url('assets/header-1600.jpg') type('image/jpeg') 3x
      );
  }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(42, 42, 40, 0.7) 0%, rgba(42, 42, 40, 0.45) 50%, rgba(208, 166, 61, 0.22) 100%),
    linear-gradient(180deg, rgba(42, 42, 40, 0.25) 0%, rgba(42, 42, 40, 0.15) 50%, rgba(42, 42, 40, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
}

.hero-meta {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.7);
}
.hero-meta strong {
  color: var(--gold-soft);
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(56px, 9.5vw, 170px);
  line-height: 1;
  color: var(--paper);
  margin-bottom: 0;
  letter-spacing: -0.005em;
}
.hero h1 .line:not(:last-child) {
  margin-bottom: clamp(4px, 0.6vw, 10px);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroLineUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.4s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.55s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.7s; }

@keyframes heroLineUp {
  to { transform: translateY(0); }
}

.hero h1 .italic { color: var(--gold-soft); }

.hero-bottom {
  margin-top: clamp(40px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  color: var(--paper);
  max-width: 620px;
  line-height: 1.45;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  transition: color 0.3s ease;
}
.hero-cta::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 100%; height: 1px;
  background: var(--paper);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cta:hover { color: var(--gold-soft); }
.hero-cta:hover::after {
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-cta-arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cta:hover .hero-cta-arrow {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(-45deg);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-side-stats {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 60px;
  display: none;
  gap: 56px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--gold-soft);
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.8);
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold-soft) 0%, transparent 100%);
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.marquee-set {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
  flex-shrink: 0;
}
.marquee-set > * { flex-shrink: 0; }
.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-deep);
}
.marquee-text.solid {
  color: var(--ink);
  -webkit-text-stroke: 0;
}
.marquee-dot {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== PROMO ============== */
.promo {
  display: none;
  padding: var(--section-py) 0;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: 'Promo';
  position: absolute;
  top: 80px;
  right: -20px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(140px, 22vw, 280px);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  line-height: 1;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.promo-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.promo-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.promo-image-wrap:hover img { transform: scale(1.05); }
.promo-image-wrap::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(208, 166, 61, 0.5);
  pointer-events: none;
}
.promo-badge {
  position: absolute;
  top: 28px; left: -14px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 26px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.2em;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(208, 166, 61, 0.25);
}
.promo-tag {
  position: absolute;
  bottom: 28px; right: 28px;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--paper);
  font-size: 22px;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(42, 42, 40, 0.3);
}

.promo-content h2 .italic { display: block; }
.promo-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--graphite);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 520px;
}

.promo-features {
  list-style: none;
  margin-bottom: 48px;
  border-top: 1px solid var(--line);
  counter-reset: list-num;
}
.promo-features li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: padding-left 0.3s ease, color 0.3s ease;
}
.promo-features li:hover { padding-left: 12px; color: var(--gold-deep); }
.promo-features li::before {
  content: counter(list-num, decimal-leading-zero);
  counter-increment: list-num;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.15em;
  width: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(208, 166, 61, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-arrow { display: inline-block; transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============== OFERTA ============== */
.oferta {
  display: none;
  padding: var(--section-py) 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head .lead p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--graphite);
  font-weight: 400;
  max-width: 480px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service {
  padding: 56px 36px 48px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.5s ease;
  overflow: hidden;
  background: var(--white);
}
.service:last-child { border-right: none; }
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 0;
  background: linear-gradient(180deg, var(--gold-tint) 0%, transparent 100%);
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.service:hover::before { height: 100%; }

.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: 0.3em;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.service-icon {
  width: 56px; height: 56px;
  margin-bottom: 36px;
  color: var(--gold-deep);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service:hover .service-icon { transform: rotate(-8deg) scale(1.1); }

.service h3 {
  font-size: 34px;
  margin-bottom: 18px;
  color: var(--ink);
  transition: color 0.3s ease;
}
.service:hover h3 { color: var(--gold-deep); }

.service p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--graphite);
  font-weight: 400;
  margin-bottom: 36px;
  min-height: 90px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  transition: gap 0.3s ease, color 0.3s ease;
}
.service-link svg {
  width: 14px; height: 14px;
  transition: transform 0.3s ease;
}
.service-link:hover { color: var(--gold-deep); gap: 20px; }

/* ============== O MNIE ============== */
.about {
  padding: var(--section-py) 0;
  background: var(--beige-warm);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'Monika';
  position: absolute;
  top: 60px;
  left: -30px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(140px, 20vw, 320px);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-img-stack {
  position: relative;
}
.about-img-main {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-frame {
  position: absolute;
  inset: -24px -24px 24px 24px;
  border: 1px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}
.about-img-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 26px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.25em;
  z-index: 2;
  box-shadow: 0 12px 24px rgba(208, 166, 61, 0.25);
}

.about-content .lead {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.5;
  color: var(--gold-deep);
  margin-bottom: 36px;
  font-weight: 500;
  max-width: 640px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--graphite);
  margin-bottom: 20px;
  font-weight: 400;
  max-width: 600px;
}

.signature {
  margin-top: 36px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 32px;
  color: var(--gold-deep);
  font-weight: 500;
}

.about-stats {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(208, 166, 61, 0.3);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--gold-deep);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-top: 10px;
}

/* ============== REALIZACJE ============== */
.realizacje {
  display: none;
  padding: var(--section-py) 0;
  background: var(--off-white);
  position: relative;
}

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

.project {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.project img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.project:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.project::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(42, 42, 40, 0.92) 100%);
  pointer-events: none;
}

.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.project:hover .project-info { transform: translateY(0); }

.project-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.project-info h3 {
  font-size: clamp(22px, 2vw, 30px);
  color: var(--paper);
}

.project-arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid rgba(245, 240, 230, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.project:hover .project-arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.project-1 { grid-column: span 7; aspect-ratio: 16/10; }
.project-2 { grid-column: span 5; aspect-ratio: 4/5; }
.project-3 { grid-column: span 5; aspect-ratio: 4/5; }
.project-4 { grid-column: span 7; aspect-ratio: 16/10; }

.realizacje-cta {
  text-align: center;
  margin-top: 72px;
}

/* ============== KONTAKT ============== */
.kontakt {
  padding: var(--section-py) 0;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}
.kontakt::before {
  content: 'Kontakt';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 360px);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.04em;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  position: relative;
  z-index: 1;
}

.kontakt-info h2 {
  margin-bottom: 28px;
}
.kontakt-info > p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--graphite);
  margin-bottom: 48px;
  max-width: 480px;
}

.contact-list {
  list-style: none;
}
.contact-list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(208, 166, 61, 0.2);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: padding-left 0.3s ease;
}
.contact-list li:hover { padding-left: 12px; }
.contact-list li:first-child { border-top: 1px solid rgba(208, 166, 61, 0.2); }

.contact-icon {
  width: 48px; height: 48px;
  background: var(--white);
  border: 1px solid rgba(208, 166, 61, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.contact-list li:hover .contact-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.contact-icon svg { width: 18px; height: 18px; }

.contact-meta { flex: 1; }
.contact-meta .label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
  display: block;
}
.contact-meta a, .contact-meta span {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.contact-meta a:hover { color: var(--gold-deep); }

.socials {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}
.social-link {
  width: 46px; height: 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.4s ease;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.social-link svg { width: 16px; height: 16px; }

/* Form */
.contact-form {
  background: var(--white);
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  border: 1px solid var(--line);
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
}
.form-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 6px;
  color: var(--ink);
}
.form-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 17px;
  margin-bottom: 36px;
}

.form-row { margin-bottom: 24px; }
.form-row label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s ease;
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%23A8842F' stroke-width='1.5' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-row textarea {
  resize: vertical;
  min-height: 80px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0;
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
}
.form-checkbox input { margin-top: 4px; accent-color: var(--gold); }
.form-submit {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  pointer-events: none;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ============== TOAST ============== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: calc(100% - 48px);
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 320px;
  max-width: 420px;
  padding: 16px 16px 16px 18px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.36, 0.64, 1), opacity 0.3s ease;
}
.toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.toast.is-leaving {
  transform: translateX(110%);
  opacity: 0;
}
.toast--error { border-left-color: #c0392b; }

.toast__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}
.toast--error .toast__icon {
  background: #c0392b;
  color: var(--paper);
}
.toast__content {
  flex: 1;
  min-width: 0;
}
.toast__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  color: var(--ink);
}
.toast__text {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(33, 32, 30, 0.72);
}
.toast__close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(33, 32, 30, 0.5);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.toast__close:hover { color: var(--ink); }

@media (max-width: 640px) {
  .toast-container {
    bottom: 12px;
    right: 12px;
    left: 12px;
    max-width: none;
  }
  .toast {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .toast { transition: opacity 0.2s ease; transform: none; }
  .toast.is-leaving { transform: none; }
}

.form-status {
  margin-top: 16px;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  border-radius: 6px;
  transition: opacity 0.3s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}
.form-status.is-success,
.form-status.is-error {
  margin-top: 16px;
  padding: 12px 16px;
  max-height: 200px;
  opacity: 1;
}
.form-status.is-success {
  background: rgba(208, 166, 61, 0.12);
  color: var(--gold-deep);
  border: 1px solid rgba(208, 166, 61, 0.4);
}
.form-status.is-error {
  background: rgba(180, 50, 50, 0.08);
  color: #a73030;
  border: 1px solid rgba(180, 50, 50, 0.3);
}

/* ============== FOOTER ============== */
footer {
  background: var(--ink);
  color: rgba(245, 240, 230, 0.7);
  padding: 100px 0 28px;
}
.footer-top {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(208, 166, 61, 0.15);
}
.footer-top h2 {
  font-size: clamp(44px, 7vw, 110px);
  color: var(--paper);
  margin-bottom: 32px;
}
.footer-top h2 a {
  color: var(--gold-soft);
  position: relative;
  transition: color 0.3s ease;
}
.footer-top h2 a:hover { color: var(--gold); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 360px;
  margin-top: 20px;
}
.footer-brand .logo { color: var(--paper); }
.footer-brand .logo-text small { color: var(--gold-soft); }

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--gold-soft);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 240, 230, 0.08);
  font-size: 11px;
  letter-spacing: 0.12em;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .credit a {
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.18em;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.footer-bottom .credit a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.15s; }
.reveal-d2 { transition-delay: 0.3s; }
.reveal-d3 { transition-delay: 0.45s; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--off-white);
    padding: 40px;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  }
  .nav:not(.scrolled) .nav-links.open a,
  .nav-links.open a { color: var(--ink); }
  .nav:not(.scrolled) .nav-links.open a:hover,
  .nav-links.open a:hover { color: var(--gold-deep); }
  .menu-toggle { display: block; }
  .nav-cta, .nav-actions { display: none; }
  .lang-switch { order: 0; margin-left: 0; }
  .promo-grid, .about-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 64px; }
  .services { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid var(--line); }
  .service:last-child { border-bottom: none; }
  .section-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-side-stats { display: none; }
  .realizacje-grid { grid-template-columns: repeat(6, 1fr); }
  .project-1, .project-4 { grid-column: span 6; }
  .project-2, .project-3 { grid-column: span 3; }
  .about-img-stack { max-width: 480px; margin: 0 auto; }
  .about::before { display: none; }
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about-stats { grid-template-columns: 1fr; gap: 24px; }
  .realizacje-grid { grid-template-columns: 1fr; }
  .project-1, .project-2, .project-3, .project-4 { grid-column: span 1; aspect-ratio: 4/3; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 76px; }
  .hero-tagline { font-size: 26px; line-height: 1.5; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
