/*
Theme Name:   Zaviaz Child
Theme URI:    https://zaviaz.com
Description:  Zaviaz Child Theme — built on Hello Elementor
Author:       Zaviaz
Author URI:   https://zaviaz.com
Template:     hello-elementor
Version:      1.0.0
Text Domain:  zaviaz-child
*/

/* ============================================================
   ZAVIAZ GLOBAL BRAND STYLES
   These apply site-wide across all Elementor pages
   ============================================================ */

:root {
  --gold:        #C9A84C;
  --gold-dark:   #A8872E;
  --gold-light:  #E8D5A3;
  --obsidian:    #0A0A0A;
  --blush:       #F7F0EB;
  --blush-dark:  #EFE4D6;
  --cream:       #FBF8F4;
  --white:       #FFFFFF;
  --gray-mid:    #888888;
  --border:      #E8E0D8;
  --text-body:   #555555;
}

/* Base */
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #0A0A0A;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

/* Elementor full width fix */
.elementor-section.elementor-section-stretched {
  width: 100% !important;
}

/* Remove default padding on canvas template */
.elementor-template-canvas .site-content {
  padding: 0 !important;
}

/* ---- ZAVIAZ BUTTONS ---- */
.zv-btn-primary {
  display: inline-block;
  background: #0A0A0A;
  color: #fff !important;
  padding: 14px 38px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid #0A0A0A;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  text-decoration: none;
}
.zv-btn-primary:hover {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #0A0A0A !important;
}

.zv-btn-secondary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #0A0A0A;
  border-bottom: 1px solid #0A0A0A;
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.zv-btn-secondary:hover {
  color: #C9A84C;
  border-color: #C9A84C;
}

/* ---- GOLD LABEL ---- */
.zv-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A84C;
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

/* ---- GOLD DIVIDER LINE ---- */
.zv-gold-line {
  width: 52px;
  height: 2px;
  background: #C9A84C;
  margin-bottom: 28px;
}

/* ---- MARQUEE ---- */
.zv-marquee-wrap {
  background: #0A0A0A;
  padding: 18px 0;
  overflow: hidden;
}
.zv-marquee-track {
  display: flex;
  animation: zv-marquee 22s linear infinite;
  white-space: nowrap;
}
.zv-marquee-item {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 52px;
}
.zv-marquee-dot {
  color: #C9A84C;
  padding: 0 4px;
}
@keyframes zv-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- CURSOR GLOW ---- */
.zv-cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.18s ease, top 0.18s ease;
  z-index: 9990;
}

/* ---- NAVBAR ---- */
.zv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 22px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.35s;
}
.zv-nav.scrolled {
  border-bottom-color: #E8E0D8;
  padding-top: 14px;
  padding-bottom: 14px;
}
.zv-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #0A0A0A;
  text-decoration: none;
}
.zv-nav-logo span { color: #C9A84C; }
.zv-nav-links { display: flex; gap: 40px; list-style: none; }
.zv-nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0A0A0A;
  opacity: 0.65;
  transition: opacity 0.2s;
  text-decoration: none;
}
.zv-nav-links a:hover { opacity: 1; }
.zv-nav-btn {
  background: #0A0A0A;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 26px;
  border: 1.5px solid #0A0A0A;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
}
.zv-nav-btn:hover { background: #C9A84C; border-color: #C9A84C; color: #0A0A0A; }
.zv-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.zv-burger span { width: 24px; height: 1.5px; background: #0A0A0A; display: block; }

/* ---- MOBILE MENU ---- */
.zv-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.zv-mobile-menu.open { display: flex; }
.zv-mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: #0A0A0A;
  text-decoration: none;
}
.zv-mobile-menu a:hover { color: #C9A84C; }
.zv-mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: #0A0A0A;
}

/* ---- HERO ---- */
.zv-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding-top: 0;
}
.zv-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 64px 90px;
}
.zv-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 24px;
  font-weight: 500;
  opacity: 0;
  animation: zv-fadeUp 0.8s 0.3s ease forwards;
}
.zv-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.03;
  color: #0A0A0A;
  margin-bottom: 30px;
  opacity: 0;
  animation: zv-fadeUp 0.9s 0.5s ease forwards;
}
.zv-hero-title em { font-style: italic; color: #C9A84C; }
.zv-hero-sub {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
  max-width: 400px;
  margin-bottom: 44px;
  opacity: 0;
  animation: zv-fadeUp 0.9s 0.7s ease forwards;
}
.zv-hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: zv-fadeUp 0.9s 0.9s ease forwards;
}
.zv-hero-stats {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #E8E0D8;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: zv-fadeUp 0.9s 1.1s ease forwards;
}
.zv-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: #0A0A0A;
  display: block;
  line-height: 1;
}
.zv-stat-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
  margin-top: 5px;
  display: block;
}
.zv-hero-right {
  position: relative;
  background: #F7F0EB;
  overflow: hidden;
}
.zv-hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: zv-scaleIn 1.6s 0.2s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
  transform: scale(1.06);
}
.zv-hero-placeholder {
  width: 100%; height: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #F7F0EB 0%, #EFE4D6 55%, #E2CDB0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.zv-hero-placeholder p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(10,10,10,0.3);
  text-align: center;
  text-transform: uppercase;
}
.zv-hero-badge {
  position: absolute;
  bottom: 52px; left: -28px;
  background: #fff;
  padding: 22px 30px;
  border-left: 3px solid #C9A84C;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  z-index: 3;
  opacity: 0;
  animation: zv-slideRight 0.7s 1.3s ease forwards;
}
.zv-hero-badge-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: #0A0A0A;
}
.zv-hero-badge-sub {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-top: 4px;
}

/* ---- ABOUT ---- */
.zv-about {
  padding: 110px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.zv-about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.12;
  color: #0A0A0A;
  margin-bottom: 28px;
}
.zv-about-body {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 36px;
}
.zv-about-img-wrap {
  position: relative;
  height: 580px;
}
.zv-about-img-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #F7F0EB;
}
.zv-about-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.zv-about-gold-bar {
  position: absolute;
  left: -22px; top: 44px; bottom: 44px;
  width: 3px;
  background: #C9A84C;
}

/* ---- PRODUCTS ---- */
.zv-products { padding: 110px 64px; }
.zv-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.zv-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.zv-product-card { position: relative; cursor: pointer; }
.zv-product-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: #F7F0EB;
}
.zv-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.zv-product-card:hover .zv-product-img img { transform: scale(1.09); }
.zv-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.zv-product-card:hover .zv-product-overlay { background: rgba(10,10,10,0.36); }
.zv-product-btn {
  background: #fff;
  color: #0A0A0A;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 22px;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  font-family: 'Inter', sans-serif;
}
.zv-product-card:hover .zv-product-btn { opacity: 1; transform: translateY(0); }
.zv-product-info { padding: 20px 0 10px; }
.zv-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  color: #0A0A0A;
  margin-bottom: 5px;
}
.zv-product-meta {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
}
.zv-product-meta span { color: #C9A84C; font-weight: 500; }
.zv-ph-1 { background: linear-gradient(135deg, #F7F0EB, #E8D5C0); }
.zv-ph-2 { background: linear-gradient(135deg, #F0E8E0, #DCCBB4); }
.zv-ph-3 { background: linear-gradient(135deg, #EBE0D4, #D4BBAA); }
.zv-product-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.zv-product-ph span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(10,10,10,0.3);
  text-transform: uppercase;
  text-align: center;
}

/* ---- CRAFT ---- */
.zv-craft { padding: 110px 64px; background: #F7F0EB; }
.zv-craft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.zv-craft-features { display: flex; flex-direction: column; gap: 40px; margin-top: 44px; }
.zv-craft-feat { display: flex; gap: 24px; align-items: flex-start; }
.zv-cf-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: #E8D5A3;
  line-height: 1;
  min-width: 44px;
}
.zv-cf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 8px;
}
.zv-cf-body { font-size: 13px; line-height: 1.85; color: #666; }
.zv-craft-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 580px;
}
.zv-ci-tall {
  grid-row: span 2;
  background: linear-gradient(135deg, #EFE4D6, #D4B896);
  overflow: hidden;
}
.zv-ci-tall img, .zv-ci-sm img { width: 100%; height: 100%; object-fit: cover; }
.zv-ci-sm { overflow: hidden; }
.zv-ci-sm.c2 { background: linear-gradient(135deg, #F0E8E0, #D8C4AD); }
.zv-ci-sm.c3 { background: linear-gradient(135deg, #E8DDD0, #C8B09A); }

/* ---- STORY ---- */
.zv-story {
  padding: 130px 64px;
  background: #0A0A0A;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zv-story-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 600;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.zv-story-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 28px;
  font-weight: 500;
}
.zv-story-divider { width: 56px; height: 2px; background: #C9A84C; margin: 0 auto 44px; }
.zv-story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 32px;
}
.zv-story-quote em { font-style: italic; color: #C9A84C; }
.zv-story-body {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  margin: 0 auto 52px;
}

/* ---- OCCASIONS ---- */
.zv-occasions { padding: 110px 64px; }
.zv-occ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 56px;
}
.zv-occ-card {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  cursor: pointer;
}
.zv-occ-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.zv-occ-card:hover .zv-occ-bg { transform: scale(1.07); }
.occ-eid    { background: linear-gradient(160deg, #E8D5A3 0%, #C9A84C 100%); }
.occ-wed    { background: linear-gradient(160deg, #F7EDE5 0%, #E0C4A8 100%); }
.occ-casual { background: linear-gradient(160deg, #DDE8F0 0%, #B0CADA 100%); }
.occ-formal { background: linear-gradient(160deg, #2C2C2C 0%, #0A0A0A 100%); }
.zv-occ-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.zv-occ-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 26px;
}
.zv-occ-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}
.zv-occ-sub {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.zv-occ-bar {
  width: 24px; height: 2px;
  background: #C9A84C;
  margin-top: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.zv-occ-card:hover .zv-occ-bar { transform: scaleX(1); }

/* ---- PROMISE ---- */
.zv-promise { padding: 110px 64px; background: #F7F0EB; }
.zv-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
}
.zv-promise-card {
  background: #fff;
  padding: 52px 44px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.zv-promise-card:hover { border-left-color: #C9A84C; transform: translateY(-4px); }
.zv-promise-icon { font-size: 24px; color: #C9A84C; margin-bottom: 26px; }
.zv-promise-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 14px;
}
.zv-promise-body { font-size: 13px; line-height: 1.85; color: #666; }

/* ---- TESTIMONIALS ---- */
.zv-testimonials { padding: 110px 64px; background: #fff; text-align: center; }
.zv-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
}
.zv-testi-card {
  padding: 44px 36px;
  background: #FBF8F4;
  text-align: left;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.zv-testi-card:hover { border-bottom-color: #C9A84C; }
.zv-testi-stars { color: #C9A84C; font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.zv-testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: #E8D5A3;
  line-height: 0.6;
  margin-bottom: 20px;
}
.zv-testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: #0A0A0A;
  margin-bottom: 24px;
}
.zv-testi-name {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  font-weight: 500;
}

/* ---- CTA ---- */
.zv-cta {
  padding: 110px 64px;
  background: #0A0A0A;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.zv-cta-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 22px;
  font-weight: 500;
}
.zv-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
}
.zv-cta-title em { font-style: italic; color: #C9A84C; }
.zv-cta-body {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}
.zv-social-row { display: flex; gap: 20px; }
.zv-social-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.zv-social-link:hover { color: #C9A84C; border-color: #C9A84C; }
.zv-email-form { display: flex; flex-direction: column; gap: 24px; }
.zv-email-row { display: flex; border: 1px solid rgba(255,255,255,0.18); }
.zv-email-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 15px 22px;
  font-size: 13px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.zv-email-row input::placeholder { color: rgba(255,255,255,0.32); }
.zv-email-row button {
  background: #C9A84C;
  color: #0A0A0A;
  border: none;
  padding: 15px 32px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.zv-email-row button:hover { background: #E8C05A; }
.zv-email-note { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ---- FOOTER ---- */
.zv-footer { background: #0A0A0A; border-top: 1px solid rgba(255,255,255,0.08); padding: 56px 64px 36px; }
.zv-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.zv-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 16px;
}
.zv-footer-logo span { color: #C9A84C; }
.zv-footer-desc { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.45); max-width: 260px; }
.zv-footer-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-weight: 500;
}
.zv-footer-links { display: flex; flex-direction: column; gap: 12px; }
.zv-footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; text-decoration: none; }
.zv-footer-links a:hover { color: #C9A84C; }
.zv-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}
.zv-footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); }
.zv-footer-legal { display: flex; gap: 24px; }
.zv-footer-legal a { font-size: 11px; color: rgba(255,255,255,0.3); transition: color 0.2s; text-decoration: none; }
.zv-footer-legal a:hover { color: #C9A84C; }

/* ---- SCROLL REVEAL ---- */
.zv-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94);
}
.zv-reveal.zv-visible { opacity: 1; transform: translateY(0); }
.zv-d1 { transition-delay: 0.12s; }
.zv-d2 { transition-delay: 0.24s; }
.zv-d3 { transition-delay: 0.36s; }

/* ---- KEYFRAMES ---- */
@keyframes zv-fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes zv-scaleIn {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}
@keyframes zv-slideRight {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .zv-nav { padding: 18px 32px; }
  .zv-hero-left { padding: 120px 40px 80px; }
  .zv-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .zv-nav-links { display: none; }
  .zv-burger { display: flex; }
  .zv-hero { grid-template-columns: 1fr; min-height: auto; }
  .zv-hero-left { padding: 110px 24px 64px; }
  .zv-hero-right { height: 55vw; min-height: 340px; }
  .zv-hero-placeholder { min-height: 340px; }
  .zv-hero-badge { left: 16px; bottom: 24px; }
  .zv-about, .zv-craft-inner, .zv-cta { grid-template-columns: 1fr; gap: 48px; }
  .zv-about-img-wrap { height: 320px; }
  .zv-craft-imgs { height: 300px; }
  .zv-products, .zv-craft, .zv-about, .zv-occasions,
  .zv-promise, .zv-cta, .zv-story, .zv-testimonials, .zv-footer { padding-left: 24px; padding-right: 24px; }
  .zv-products-grid { grid-template-columns: 1fr 1fr; }
  .zv-occ-grid { grid-template-columns: 1fr 1fr; }
  .zv-promise-grid, .zv-testi-grid { grid-template-columns: 1fr; }
  .zv-footer-top { grid-template-columns: 1fr; }
  .zv-footer-bottom { flex-direction: column; gap: 16px; }
  .zv-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  .zv-hero-title { font-size: 44px; }
  .zv-hero-stats { gap: 28px; }
  .zv-hero-actions { flex-direction: column; align-items: flex-start; }
  .zv-products-grid { grid-template-columns: 1fr; }
}
