  :root {
    --color-accent: #F1A578;
    --color-brown: #A86D4A;
    --color-dark: #322016;
    --color-blush: #F6EEEA;
    --color-cream: #FCF9F8;
    --color-white: #FFFFFF;
    --color-text: #322016;
    --font-serif: 'Lora', Georgia, serif;
    --font-sans: 'Open Sans', sans-serif;
    --max-width: 1152px;
    --radius: 4px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.6em;
    letter-spacing: -0.02em;
    color: var(--color-text);
    background: var(--color-white);
  }

  a { color: var(--color-accent); text-decoration: none; }
  a:hover { color: var(--color-brown); }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-dark);
    line-height: 1.1em;
    letter-spacing: -0.03em;
  }

  h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 400; }
  h2 { font-size: clamp(28px, 4.5vw, 56px); font-weight: 400; }
  h3 { font-size: clamp(24px, 3vw, 40px); font-weight: 400; }
  h4 { font-size: clamp(20px, 2.5vw, 32px); font-weight: 400; }
  h5 { font-size: clamp(18px, 2vw, 24px); font-weight: 400; }

  p { margin-bottom: 1em; }
  p:last-child { margin-bottom: 0; }

  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ─── HEADER / NAV ─── */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    border-bottom: 1px solid rgba(50, 32, 22, 0.08);
    padding: 18px 32px;
  }

  .header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .site-logo {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark);
    text-decoration: none;
    line-height: 1.2;
  }

  .site-logo span {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-brown);
    margin-top: 2px;
  }

  .site-nav { display: flex; gap: 32px; align-items: center; }
  .site-nav a {
    font-family: var(--font-sans);
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s;
  }
  .site-nav a:hover { color: var(--color-brown); }

  /* ─── HAMBURGER MENU ─── */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    z-index: 200;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-wrapper { position: relative; }

  .nav-drawer {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    background: var(--color-white);
    box-shadow: 0 12px 32px rgba(50,32,22,0.14);
    border-top: 2px solid var(--color-accent);
    z-index: 150;
    overflow: hidden;
  }

  .nav-drawer.open { display: block; animation: slideDown 0.22s ease; }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-drawer a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 15px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--color-dark);
    text-decoration: none;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(50,32,22,0.07);
    transition: background 0.15s, color 0.15s;
  }

  .nav-drawer a:last-child { border-bottom: none; }
  .nav-drawer a:hover { background: var(--color-blush); color: var(--color-brown); }

  .nav-drawer .nav-cta {
    display: block;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-brown) 100%);
    color: var(--color-white) !important;
    font-weight: 600;
    text-transform: none;
    font-size: 15px;
    letter-spacing: 0;
    text-align: center;
    margin: 8px 16px 16px;
    padding: 13px 24px;
    border-bottom: none !important;
    border-radius: 2px;
    transition: opacity 0.2s !important;
  }
  .nav-drawer .nav-cta:hover { opacity: 0.88; background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-brown) 100%) !important; }

  .btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: -0.02em;
    color: var(--color-white);
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-brown) 100%);
    padding: 18px 32px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .btn:hover { opacity: 0.88; color: var(--color-white); }

  .btn-ghost {
    background: transparent;
    color: var(--color-brown);
    padding: 0;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-ghost::after { content: '→'; }
  .btn-ghost:hover { color: var(--color-dark); }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    overflow: hidden;
    background: var(--color-white);
  }

  .hero-inner {
    display: flex;
    flex-direction: row;
    min-height: 560px;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: flex-start;
    position: relative;
  }

  .hero-content {
    width: 50%;
    padding: 128px 32px 64px 0;
    background: var(--color-white);
    position: relative;
    z-index: 2;
  }

  .hero-label {
    font-family: var(--font-sans);
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 16px;
    display: block;
  }

  .hero-title { margin-bottom: 24px; }

  .hero-desc {
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 1.5em;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    max-width: 417px;
    margin-bottom: 0;
  }

  .hero-cta { margin-top: 32px; }

  .hero-photo {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
     background: url('/gallery/main_photo.jpg') center/cover no-repeat;
    background-position: top center;
  }

  /* ─── ABOUT SECTION ─── */
  .section-about {
    background: var(--color-cream);
    padding: 80px 32px;
  }

  .about-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    position: relative;
  }

  .about-card {
    background: linear-gradient(140deg, var(--color-cream) 20%, var(--color-blush) 100%);
    box-shadow: 0 12px 16px -4px rgba(107, 109, 112, 0.16);
    padding: 64px;
    max-width: 645px;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
  }

  .about-card h2 { margin-bottom: 24px; }
  .about-card p {
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 1.5em;
    letter-spacing: -0.02em;
    color: var(--color-dark);
  }

  .read-more-btn {
    margin-top: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-brown);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
  }
  .read-more-btn:hover { color: var(--color-dark); }
  .read-more-btn .arrow { transition: transform 0.2s; }
  .read-more-btn.open .arrow { transform: rotate(90deg); }

  .long-text {
    display: none;
    margin-top: 12px;
  }
  .long-text.visible { display: block; }

  /* ─── EDUCATION & COURSES ─── */
  .section-edu {
    padding: 80px 32px;
    background: var(--color-white);
  }

  .section-edu .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
  }

  .section-title {
    text-align: center;
    margin-bottom: 48px;
  }

  .edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .edu-card {
    background: linear-gradient(140deg, var(--color-cream) 20%, var(--color-blush) 100%);
    box-shadow: 0 12px 16px -4px rgba(107, 109, 112, 0.16);
    padding: 48px;
    position: relative;
  }

  .edu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
  }

  .edu-card h4 {
    font-family: var(--font-sans);
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-brown);
    margin-bottom: 24px;
    font-weight: 600;
  }

  .edu-card ul {
    list-style: none;
    padding: 0;
  }

  .edu-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(50, 32, 22, 0.1);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-dark);
    position: relative;
    padding-left: 20px;
  }

  .edu-card ul li:last-child { border-bottom: none; }

  .edu-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 18px;
    line-height: 1.3;
  }

  /* ─── CONTACT CTA ─── */
  .section-cta {
    background: linear-gradient(140deg, var(--color-cream) 20%, var(--color-blush) 100%);
    padding: 80px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
  }

  .cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-inner h2 { margin-bottom: 24px; }
  .cta-inner p {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 40px;
  }

  .cta-contact {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-dark);
    margin-top: 32px;
    opacity: 0.75;
  }

  .cta-contact a {
    color: var(--color-brown);
    font-weight: 600;
  }

  /* ─── FOOTER ─── */
  .site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 40px 32px;
    text-align: center;
    font-size: 14px;
  }

  .site-footer a { color: var(--color-accent); }

  .fb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-dark);
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
  }
  .fb-link:hover { color: var(--color-brown); }
  .fb-link svg { width: 16px; height: 16px; flex-shrink: 0; }

  .fb-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brown);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    transition: color 0.2s;
  }
  .fb-cta:hover { color: var(--color-dark); }
  .fb-cta svg { width: 20px; height: 20px; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .hero-inner { flex-direction: column; min-height: auto; }
    .hero-content { width: 100%; padding: 32px; }
    .hero-photo {
      position: relative;
      width: 100%;
      height: 400px;
      order: -1;
    }
    .about-inner { flex-direction: column; }
    .about-card { max-width: 100%; }
    .edu-grid { grid-template-columns: 1fr; }
  }

  /* Hide desktop nav on mobile, show hamburger always */
  @media (max-width: 767px) {
    .site-header { padding: 16px 24px; }
    .site-nav { display: none; }
    .hero-content { padding: 32px 24px; }
    .hero-photo { height: 280px; }
    .section-about, .section-edu, .section-cta { padding: 48px 24px; }
    .about-card, .edu-card { padding: 32px 24px; }
    .btn { padding: 16px 24px; font-size: 16px; }
    .nav-drawer { right: 0; left: auto; min-width: 220px; }
  }


  /* ─── GALLERY ─── */
  .section-gallery {
    padding: 80px 32px;
    background: var(--color-blush);
  }

  .gallery-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
  }

  .gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1 / 1;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(50, 32, 22, 0);
    transition: background 0.3s ease;
  }

  .gallery-item:hover::after {
    background: rgba(50, 32, 22, 0.12);
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(50, 32, 22, 0.92);
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .lightbox.open { display: flex; }

  .lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .lightbox-close:hover { opacity: 1; }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 28px;
    width: 48px;
    height: 64px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .lightbox-nav:hover { background: rgba(255,255,255,0.28); }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }

  .gallery-fb-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-brown);
    text-decoration: none;
    transition: color 0.2s;
  }
  .gallery-fb-link:hover { color: var(--color-dark); }
  .gallery-fb-link svg { width: 18px; height: 18px; }

  @media (max-width: 767px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .section-gallery { padding: 48px 24px; }
  }


  /* ─── WIDGET SECTION ─── */
  .section-widget {
    padding: 80px 32px;
    background: var(--color-white);
    text-align: center;
  }

  .widget-placeholder {
    max-width: 700px;
    margin: 48px auto 0;
    background: linear-gradient(140deg, var(--color-cream) 20%, var(--color-blush) 100%);
    border: 2px dashed rgba(168,109,74,0.3);
    border-radius: 4px;
    padding: 56px 48px;
    position: relative;
  }

  .widget-placeholder-label {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-brown);
    opacity: 0.7;
    margin-bottom: 16px;
  }

  .widget-placeholder-title {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--color-dark);
    margin-bottom: 12px;
  }

  .widget-placeholder p {
    font-size: 16px;
    color: var(--color-dark);
    opacity: 0.6;
    margin-bottom: 0;
  }

  .widget-rating-mock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px 0 8px;
  }

  .widget-score {
    font-family: var(--font-serif);
    font-size: 56px;
    color: var(--color-dark);
    line-height: 1;
  }

  .widget-stars-big {
    font-size: 28px;
    color: #F1A578;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 4px;
  }

  .widget-count {
    font-size: 14px;
    color: var(--color-brown);
  }

  .widget-zl-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-brown);
    opacity: 0.7;
    letter-spacing: 0.5px;
  }

  /* ─── REVIEWS SECTION ─── */
  .section-reviews {
    padding: 80px 32px;
    background: var(--color-cream);
  }

  .reviews-inner {
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }

  .reviews-grid.collapsed .review-card:nth-child(n+7) {
    display: none;
  }

  .review-card {
    background: var(--color-white);
    padding: 28px;
    box-shadow: 0 4px 12px rgba(50,32,22,0.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.2s;
  }

  .review-card:hover {
    box-shadow: 0 8px 24px rgba(50,32,22,0.12);
  }

  .review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-brown));
    color: white;
    font-family: var(--font-serif);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .review-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .review-name {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
  }

  .review-verified {
    font-size: 11px;
    color: #4caf50;
    letter-spacing: 0.2px;
  }

  .review-stars {
    font-size: 16px;
    color: var(--color-accent);
    letter-spacing: 1px;
    flex-shrink: 0;
  }

  .review-text {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6em;
    color: var(--color-dark);
    flex: 1;
    margin: 0;
  }

  .review-footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid rgba(50,32,22,0.08);
    padding-top: 12px;
  }

  .review-date {
    font-size: 12px;
    color: var(--color-brown);
    font-family: var(--font-sans);
  }

  .review-service {
    font-size: 11px;
    color: var(--color-dark);
    opacity: 0.5;
    font-family: var(--font-sans);
    letter-spacing: 0.3px;
  }

  .reviews-show-more {
    text-align: center;
    margin-top: 36px;
  }

  .btn-outline {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-brown);
    border: 2px solid var(--color-brown);
    padding: 14px 32px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }
  .btn-outline:hover {
    background: var(--color-brown);
    color: var(--color-white);
  }

  /* ─── ZL BADGE ─── */
  .zl-badge-wrap {
    text-align: center;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(50,32,22,0.1);
  }

  .zl-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--color-white);
    border: 1.5px solid rgba(168,109,74,0.25);
    padding: 20px 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(50,32,22,0.07);
    transition: box-shadow 0.2s, border-color 0.2s;
  }

  .zl-badge:hover {
    box-shadow: 0 8px 24px rgba(50,32,22,0.14);
    border-color: var(--color-brown);
  }

  .zl-badge-score {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--color-dark);
    line-height: 1;
  }

  .zl-badge-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .zl-badge-stars {
    font-size: 20px;
    color: var(--color-accent);
    letter-spacing: 2px;
  }

  .zl-badge-label {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-dark);
    font-weight: 600;
  }

  .zl-badge-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--color-brown);
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }

  .zl-more-link {
    display: block;
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-brown);
    text-decoration: underline;
    transition: color 0.2s;
  }
  .zl-more-link:hover { color: var(--color-dark); }

  @media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 767px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .section-widget, .section-reviews { padding: 48px 24px; }
    .widget-placeholder { padding: 40px 24px; }
    .widget-score { font-size: 40px; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-label { animation: fadeInUp 0.6s ease both; }
  .hero-title { animation: fadeInUp 0.6s ease 0.1s both; }
  .hero-desc { animation: fadeInUp 0.6s ease 0.2s both; }
  .hero-cta { animation: fadeInUp 0.6s ease 0.3s both; }
