:root {
    --white: #141414;
    --off-white: #1a1a1a;
    --black: #ffffff;
    --gray-100: #1e1e1e;
    --gray-100-solid: #1e1e1e;
    --gray-300: #3a3a3a;
    --gray-500: #888888;
    --gray-700: #cccccc;
    --gold: #b8a97a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: #141414;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
  }
  @media (hover: none) {
    .cursor { display: none; }
    .cursor-ring { display: none; }
  }
  .cursor-ring {
    position: fixed;
    width: 32px; height: 32px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
  }

  .lang-toggle {
    display: flex;
    gap: 4px;
    background: transparent;
    padding: 5px 10px;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .lang-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    background: none;
    border: none;
    padding: 5px 10px;
    transition: color 0.2s;
  }
  .lang-btn.active { color: #ffffff; }
  .lang-btn:hover { color: #ffffff; }
  .lang-divider { color: rgba(255,255,255,0.2); font-size: 11px; line-height: 1.8; }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    padding: 6px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20,20,20,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-300);
    transition: none;
  }
  nav.scrolled { border-bottom-color: var(--gray-300); }

  .nav-logo img {
    height: 60px;
    width: auto;
    display: block;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--black); }

  /* Hero */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    background: #0c0c0c;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(184,169,122,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s both;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 10vw, 110px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s both;
  }
  .hero-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.55); }
  .hero-subtitle {
    font-size: clamp(13px, 2vw, 16px);
    font-weight: 300;
    color: var(--gray-500);
    letter-spacing: 0.05em;
    margin-top: 24px;
    max-width: 480px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s both;
  }
  .hero-cta {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s both;
  }
  .btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #b8a97a;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #b8a97a;
    transition: background 0.3s, color 0.3s;
    }
  .btn-primary:hover { background: rgba(184,169,122,0.08); }
  .btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--black);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gray-300);
    transition: border-color 0.3s;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.9); }
  .hero-scroll {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s both;
  }
  .hero-scroll span { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray-500); }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease infinite;
  }

  /* Manifesto */
  .manifesto {
    padding: 140px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .manifesto-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 40px; }
  .manifesto-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 300;
    line-height: 1.4;
    color: var(--black);
  }
  .manifesto-text em { font-style: italic; color: var(--gray-500); }
  .manifesto-sub {
    margin-top: 48px;
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Products */
  .products { padding: 80px 40px 140px; background: #181818; }
  .section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto 64px;
  }
  .section-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 300; color: #ffffff; }
  .section-link {
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.3); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .section-link:hover { color: #ffffff; border-color: #ffffff; }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .product-card {
    background: #1e1e1e;
    padding: 48px 36px;
    position: relative;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  a.product-card {
    text-decoration: none;
    color: inherit;
    display: block; /* или flex, если уже так настроено */
}

  .product-card:hover { transform: translateY(-4px); }

  .product-badge { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }

  .product-visual {
    width: 100%;
    height: 200px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #252525;
  }
  .product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .product-card:hover .product-visual img { transform: scale(1.04); }

  .product-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: #ffffff; margin-bottom: 8px; }
  .product-desc { font-size: 13px; font-weight: 300; color: var(--gray-500); line-height: 1.6; margin-bottom: 28px; }
  .product-footer { display: flex; align-items: center; justify-content: space-between; }
  .product-price { font-size: 15px; font-weight: 400; color: #ffffff; }
  .product-arrow {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    color: rgba(255,255,255,0.7);
  }
  .product-card:hover .product-arrow { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }
  .product-arrow svg path { stroke: currentColor; }

  /* Philosophy */
  .philosophy {
    padding: 140px 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    background: #141414;
  }
  .philosophy-left .section-label { margin-bottom: 32px; }
  .philosophy-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 300; line-height: 1.15; color: var(--black); margin-bottom: 32px;
  }
  .philosophy-left h2 em { font-style: italic; color: var(--gray-500); }
  .philosophy-left p { font-size: 14px; font-weight: 300; color: var(--gray-500); line-height: 1.9; margin-bottom: 20px; }
  .philosophy-right { display: flex; flex-direction: column; gap: 2px; }
  .philosophy-stat { padding: 32px 0; border-top: 1px solid var(--gray-100); }
  .philosophy-stat:last-child { border-bottom: 1px solid var(--gray-100); }
  .stat-number { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--black); line-height: 1; margin-bottom: 8px; }
  .stat-label { font-size: 12px; font-weight: 300; color: var(--gray-500); letter-spacing: 0.05em; }

  /* Partnership */
  .partnership { background: #0a0a0a; padding: 120px 40px; text-align: center; }
  .partnership .section-label { color: var(--gold); margin-bottom: 32px; display: block; }
  .partnership h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300; color: #ffffff; line-height: 1.1; margin-bottom: 24px;
  }
  .partnership h2 em { font-style: italic; color: var(--gold); }
  .partnership p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 48px; line-height: 1.8; }

  .partnership-contacts {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
  }
  .btn-gold {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 12px; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.3s, color 0.3s;
  }
  .btn-gold:hover { background: rgba(184,169,122,0.08); }
  .btn-outline-white {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 12px; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    transition: border-color 0.3s;
  }
  .btn-outline-white:hover { border-color: rgba(255,255,255,0.8); }

  /* Footer */
  footer {
    padding: 48px 40px;
    background: #0e0e0e;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo img { height: 60px; width: auto; }
  .footer-copy { font-size: 11px; color: var(--gray-700); letter-spacing: 0.05em; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a {
    font-size: 11px; color: rgba(255,255,255,0.4); text-decoration: none;
    letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s;
  }
  .footer-links a:hover { color: #ffffff; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
  }

  .fr-content { display: block; }
  .en-content { display: none; }
  body.lang-fr .fr-content { display: block; }
  body.lang-fr .en-content { display: none; }
  body.lang-en .fr-content { display: none; }
  body.lang-en .en-content { display: block; }

  @media (max-width: 768px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none !important; }
    .hero { padding: 80px 24px 60px; }

    /* Products */
    .products { padding: 60px 24px 80px; }
    .products-grid { grid-template-columns: 1fr; gap: 2px; }
    .section-header { margin-bottom: 40px; }

    /* Pillars */
    .pillars { padding: 60px 24px; max-width: 1100px; margin: 0 auto; text-align: center; }
    .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
    .pillar-card { padding: 32px 24px; }
    .pillars-title { font-size: 28px; margin-bottom: 32px; padding: 0; }
    .pillars-eyebrow { padding: 0; }
    .pillars-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

    /* Philosophy */
    .philosophy { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }

    /* Partnership */
    .partnership { padding: 60px 24px; }
    .partnership-contacts { flex-direction: column; align-items: center; }

    /* Footer */
    footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 24px; }
  }

  /* Burger menu */
  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 1001;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14,14,14,0.99);
    backdrop-filter: blur(20px);
    z-index: 800;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-menu.open { display: flex; opacity: 1; }
  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.2s;
    position: relative;
  }
  .mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .mobile-menu a:hover::after { width: 100%; }
  .mobile-menu a:hover { color: var(--gold); }

    to { width: 100%; }
  

  /* Pillar cards - premium style */
  .pillar-card {
    /* background: #1c1c1c; */
    padding: 44px 36px;
    position: relative;
    overflow: visible;
    transition: background 0.3s;
  }
  .pillar-card:hover { background: #222222; }
  .pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  }
  .pillar-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    color: rgba(184,169,122,0.18);
    line-height: 1;
    margin-bottom: 24px;
  }
  .pillar-icon {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #b8a97a;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
  }
  .pillar-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .pillar-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
  }
  .pillars-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.pillars-title em {
  font-style: italic;
  color: #b8a97a;
}

.pillars-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #b8a97a;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.pillars-sub {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 48px;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}
  .pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    max-width: 700px;
    margin: 0 auto;
  }


  .partnership-link {
    display: block;
    margin-top: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
  }
  .partnership-link:hover { color: #b8a97a; }


  .nav-z-logo {
    height: 110px !important;
    width: auto !important;
    display: block;
    opacity: 1;
  }
  .nav-eagle:hover { opacity: 1; }
  .nav-logo { display: flex; align-items: center; justify-content: center; transform: translateX(-26px); }

.pillars {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}