/* â”€â”€ LOCAL FONTS â”€â”€ */
@font-face {
  font-family: 'Agdasima';
  src: url('fonts__Agdasima-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Agdasima';
  src: url('fonts__Agdasima-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('fonts__Comfortaa-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('fonts__Comfortaa-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('fonts__Comfortaa-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('fonts__Comfortaa-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

  /* â”€â”€ RESET & BASE â”€â”€ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --cream: #f0ede8;
    --gold: #ddb56c;
    --gold-dim: rgba(221,181,108,0.18);
    --gold-glow: rgba(221,181,108,0.35);
    --dark: #222222;
    --dark-mid: #2e2e2e;
    --glass: rgba(34,34,34,0.45);
    --glass-light: rgba(240,237,232,0.07);
    --glass-border: rgba(221,181,108,0.25);
    --glass-border-hover: rgba(221,181,108,0.55);
    --radius: 18px;
    --radius-lg: 28px;
    --nav-h: 72px;
    --transition: 0.4s cubic-bezier(0.16,1,0.3,1);
    scroll-behavior: smooth;
  }
  html { font-size: 16px; cursor: none; }
  body {
    background: var(--dark);
    color: var(--cream);
    font-family: 'Comfortaa', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }
  ::selection { background: var(--gold); color: var(--dark); }

  /* â”€â”€ SCROLL PROGRESS â”€â”€ */
  #scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), #f0c070);
    z-index: 9999; width: 0%; transition: width 0.1s linear;
    box-shadow: 0 0 8px var(--gold-glow);
  }

  /* â”€â”€ CUSTOM CURSOR â”€â”€ */
  #cursor, #cursor-ring {
    position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none;
    z-index: 9998; will-change: transform;
    transition: opacity 0.3s;
  }
  #cursor {
    width: 10px; height: 10px;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
    transition: opacity 0.3s, width 0.2s, height 0.2s, background 0.2s;
  }
  #cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold);
    opacity: 0.5;
    transition: opacity 0.3s, width 0.25s, height 0.25s;
  }
  body.cursor-hover #cursor { width: 16px; height: 16px; background: var(--gold); }
  body.cursor-hover #cursor-ring { width: 56px; height: 56px; opacity: 0.3; }

  /* â”€â”€ ANIMATED BACKGROUND â”€â”€ */
  #bg-canvas {
    position: fixed; inset: 0; z-index: 0;
    pointer-events: none;
  }

  /* â”€â”€ NOISE OVERLAY â”€â”€ */
  .noise {
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.45;
  }

  /* â”€â”€ SPLASH â”€â”€ */
  #splash {
    position: fixed; inset: 0; z-index: 9997;
    background: var(--dark);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
    transition: opacity 0.7s var(--transition);
  }
  #splash.gone { opacity: 0; pointer-events: none; }
  .splash-logo-mark {
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    animation: splash-logo-reveal 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
    opacity: 0;
    transform: translateY(14px) scale(0.88);
    margin-bottom: 10px;
  }
  .splash-logo-mark::before {
    content: '';
    position: absolute;
    width: 128px; height: 128px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221,181,108,0.34) 0%, rgba(221,181,108,0.16) 34%, rgba(221,181,108,0) 68%);
    filter: blur(8px);
    opacity: 0;
    transform: scale(0.72);
    animation: splash-glow 1.8s 0.18s ease-in-out infinite alternate;
  }
  .splash-logo-mark span {
    font-family: 'Agdasima', sans-serif;
    font-size: 28px; color: var(--gold); letter-spacing: 2px;
  }
  @keyframes splash-logo-reveal {
    0% { opacity: 0; transform: translateY(18px) scale(0.82); }
    58% { opacity: 1; transform: translateY(-3px) scale(1.035); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes splash-glow {
    from { opacity: 0.48; transform: scale(0.78); }
    to { opacity: 0.88; transform: scale(1); }
  }
  .splash-bar-wrap {
    width: 200px; height: 1px; background: rgba(240,237,232,0.12); border-radius: 2px; overflow: hidden;
  }
  .splash-bar {
    height: 100%; width: 0%; background: var(--gold);
    transition: width 0.12s linear;
  }
  .splash-percent {
    min-height: 15px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(221,181,108,0.72);
    font-variant-numeric: tabular-nums;
  }
  .splash-name {
    font-family: 'Agdasima', sans-serif; text-transform: uppercase; letter-spacing: 5px; font-size: 13px; color: rgba(240,237,232,0.35);
    animation: splash-name-reveal 0.9s 0.42s cubic-bezier(0.16,1,0.3,1) both;
  }
  @keyframes splash-name-reveal {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* â”€â”€ NAV â”€â”€ */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-h); z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 clamp(24px, 5vw, 72px);
    transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
    border-bottom: 1px solid transparent;
  }
  nav.scrolled {
    background: rgba(34,34,34,0.75);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-color: var(--glass-border);
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-mark {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Agdasima', sans-serif; font-size: 14px; color: var(--gold); letter-spacing: 1px;
  }
  .nav-logo-mark img {
    width: 32px; height: 32px; object-fit: contain;
  }
  .nav-logo-text {
    font-family: 'Agdasima', sans-serif; font-size: 20px;
    text-transform: uppercase; color: var(--cream); letter-spacing: 2px;
  }
  .nav-links { display: flex; list-style: none; gap: 2px; }
  .nav-links a {
    text-decoration: none; color: rgba(240,237,232,0.6); font-size: 13px; font-weight: 400;
    letter-spacing: 0.5px; padding: 6px 14px; border-radius: 40px;
    transition: color 0.3s, background 0.3s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); background: var(--gold-dim); }
  .nav-right { display: flex; align-items: center; gap: 16px; }
  .lang-toggle { display: flex; background: rgba(240,237,232,0.06); border-radius: 40px; padding: 3px; }
  .lang-btn {
    background: none; border: none; cursor: pointer; color: rgba(240,237,232,0.5);
    font-family: 'Comfortaa', sans-serif; font-size: 12px; font-weight: 400;
    padding: 5px 12px; border-radius: 40px; letter-spacing: 1px;
    transition: background 0.25s, color 0.25s;
  }
  .lang-btn.active { background: var(--gold); color: var(--dark); font-weight: 600; }
  .nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
  }
  .nav-toggle span, .nav-toggle::before, .nav-toggle::after {
    content: ''; display: block; width: 22px; height: 1.5px; background: var(--cream);
    border-radius: 2px; transition: var(--transition);
  }

  /* â”€â”€ MOBILE MENU â”€â”€ */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(34,34,34,0.97); backdrop-filter: blur(32px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu ul { list-style: none; text-align: center; }
  .mobile-menu a {
    font-family: 'Agdasima', sans-serif; font-size: clamp(40px,8vw,64px);
    text-transform: uppercase; letter-spacing: 4px; color: var(--cream); text-decoration: none;
    display: block; padding: 10px 0;
    transition: color 0.3s, letter-spacing 0.3s;
  }
  .mobile-menu a:hover { color: var(--gold); letter-spacing: 8px; }

  /* â”€â”€ SOCIAL FLOAT â”€â”€ */
  .social-float {
    position: fixed; left: 28px; bottom: 48px; z-index: 50;
    display: flex; flex-direction: column; gap: 12px;
    align-items: center;
  }
  .social-float::before {
    content: ''; display: block; width: 1px; height: 64px;
    background: linear-gradient(180deg, transparent, var(--glass-border));
  }
  .social-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--glass); border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center;
    color: rgba(240,237,232,0.5); text-decoration: none;
    transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
  }
  .social-btn:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); background: var(--gold-dim); }
  .social-btn svg { width: 16px; height: 16px; }

  /* â”€â”€ SECTIONS SHARED â”€â”€ */
  section { position: relative; z-index: 2; }
  .section-label {
    font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
  }
  .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

  /* â”€â”€ HERO â”€â”€ */
  #hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100svh - var(--nav-h));
    display: grid; align-items: center;
    padding: calc(var(--nav-h) + 40px) clamp(24px,8vw,120px) 100px;
  }

  #hero-shader-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
  }

  #hero .hero-grid {
    position: relative;
    z-index: 1;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 64px;
    align-items: center;
  }

  .hero-content {
    max-width: 700px;
    text-align: left;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
    line-height: 1.2;
  }

  .hero-title {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-title-line {
    font-family: 'Agdasima', sans-serif;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: -0.5px;
    margin: 0;
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
  }

  .hero-title-line-1 {
    font-size: clamp(64px, 8vw, 120px);
    color: var(--cream);
  }

  .hero-title-line-2 {
    font-size: clamp(72px, 9vw, 130px);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-title-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-transform: none;
    color: var(--gold);
  }

  .hero-title-regular {
    font-family: 'Agdasima', sans-serif;
    text-transform: uppercase;
    color: var(--cream);
  }

  .hero-title-line-3 {
    font-size: clamp(64px, 8vw, 120px);
    color: rgba(240,237,232,0.25);
  }

  .hero-desc {
    font-size: clamp(14px, 1.4vw, 17px);
    line-height: 1.75;
    color: rgba(240,237,232,0.55);
    max-width: 480px;
    margin-top: 28px;
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
  }

  .hero-ctas {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
  }

  .hero-stats {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: rgba(240,237,232,0.35);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
  }

  .hero-stat-separator {
    display: inline-flex;
    color: rgba(240,237,232,0.35);
  }

  .hero-visual {
    position: relative;
    min-height: 520px;
    width: 100%;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateX(24px);
    will-change: transform, opacity;
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
  }

  .hero-visual-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 900px;
    display: grid;
    place-items: center;
    animation: rotate-slow 8s ease-in-out infinite alternate;
  }

  .hero-visual-line {
    position: absolute;
    top: 38%;
    left: -18%;
    width: 140%;
    height: 1px;
    background: rgba(221,181,108,0.1);
    transform: rotate(14deg);
    pointer-events: none;
  }

  .hero-visual-layer {
    position: absolute;
    cursor: grab;
    transition: filter 0.3s;
  }

  .hero-visual-layer:hover {
    filter: drop-shadow(0 0 14px rgba(221,181,108,0.45));
  }

  .hero-visual-layer.is-dragging {
    cursor: grabbing !important;
    filter: drop-shadow(0 0 28px rgba(221,181,108,0.65)) !important;
  }

  .hero-visual-layer--large {
    width: 300px;
    height: 300px;
    top: 52%;
    left: 48%;
    transform: translate(-50%, -50%) rotate(4deg);
    animation: float-slow 10s ease-in-out infinite alternate;
    cursor: pointer;
  }

  .hero-visual-layer--medium {
    width: 175px;
    height: 175px;
    top: 9%;
    left: 80%;
    transform: translate(-50%, -50%) rotate(-12deg);
    animation: float-medium 8s ease-in-out infinite alternate;
    cursor: pointer;
  }

  .hero-visual-layer--small {
    width: 125px;
    height: 200px;
    top: 86%;
    left: 18%;
    transform: translate(-50%, -50%) rotate(9deg);
    animation: float-fast 6s ease-in-out infinite alternate;
    cursor: pointer;
  }

  .hero-layer-tilt {
    width: 100%;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .hero-layer-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
  }

  .hero-eyebrow-delay { transition-delay: 1.9s; }
  .hero-title-line-1-delay { transition-delay: 2.1s; }
  .hero-title-line-2-delay { transition-delay: 2.25s; }
  .hero-title-line-3-delay { transition-delay: 2.4s; }
  .hero-desc-delay { transition-delay: 2.6s; }
  .hero-ctas-delay { transition-delay: 2.8s; }
  .hero-stats-delay { transition-delay: 3s; }
  .hero-visual-delay { transition-delay: 2.2s; }

  /* â”€â”€ HERO BADGE â”€â”€ */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 12px;
    border-radius: 40px;
    background: rgba(221,181,108,0.08);
    border: 1px solid rgba(221,181,108,0.22);
    font-size: 12px;
    color: rgba(240,237,232,0.6);
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
  }
  .hero-badge__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
    position: relative;
    animation: pulse-dot 2.4s ease-in-out infinite;
  }
  .hero-badge__dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(221,181,108,0.45);
    animation: pulse-ring 2.4s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    60% { opacity: 0.7; }
  }
  @keyframes pulse-ring {
    0%, 100% { transform: scale(0); opacity: 0.5; }
    60% { transform: scale(2); opacity: 0; }
  }
  .hero-badge-delay { transition-delay: 1.75s; }

  .reveal.visible { opacity: 1; transform: translateY(0) translateX(0); }

  @keyframes float-slow {
    from { transform: translate(calc(-50% + var(--drag-x, 0px)), calc(-50% + var(--drag-y, 0px))) rotate(4deg) translateY(-8px); }
    to   { transform: translate(calc(-50% + var(--drag-x, 0px)), calc(-50% + var(--drag-y, 0px))) rotate(4deg) translateY(10px); }
  }

  @keyframes float-medium {
    from { transform: translate(calc(-50% + var(--drag-x, 0px)), calc(-50% + var(--drag-y, 0px))) rotate(-12deg) translateY(-10px); }
    to   { transform: translate(calc(-50% + var(--drag-x, 0px)), calc(-50% + var(--drag-y, 0px))) rotate(-12deg) translateY(12px); }
  }

  @keyframes float-fast {
    from { transform: translate(calc(-50% + var(--drag-x, 0px)), calc(-50% + var(--drag-y, 0px))) rotate(9deg) translateY(-12px); }
    to   { transform: translate(calc(-50% + var(--drag-x, 0px)), calc(-50% + var(--drag-y, 0px))) rotate(9deg) translateY(14px); }
  }

  @keyframes rotate-slow {
    from { transform: rotate(-1deg); }
    to { transform: rotate(1deg); }
  }

  @media (max-width: 860px) {
    .hero-grid {
      grid-template-columns: 1fr;
    }

    .hero-visual {
      order: -1;
      min-height: 200px;
      height: 200px;
      margin-bottom: 32px;
    }

    .hero-visual-layer--large,
    .hero-visual-layer--medium,
    .hero-visual-layer--small {
      opacity: 0.8;
    }

    .hero-stats {
      gap: 8px;
    }
  }

  /* â”€â”€ BUTTONS â”€â”€ */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; min-height: 44px; border-radius: 60px;
    background: var(--gold); color: var(--dark);
    font-family: 'Comfortaa', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.5px;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 32px rgba(221,181,108,0.25);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 48px rgba(221,181,108,0.4); background: #e8c47a; }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 32px; min-height: 44px; border-radius: 60px;
    background: var(--glass-light); border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px); color: var(--cream);
    font-family: 'Comfortaa', sans-serif; font-weight: 400; font-size: 14px; letter-spacing: 0.5px;
    text-decoration: none; cursor: pointer;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
  }
  .btn-outline:hover { border-color: var(--gold); background: var(--gold-dim); transform: translateY(-2px); }

  .about-actions .btn-primary {
    padding: 16px 38px;
  }

  /* â”€â”€ ABOUT SECTION â€” HERO CTA â”€â”€ */
  .btn-about-cta-wrap {
    display: inline-block;
    position: relative;
    border-radius: 60px;
  }
  .btn-about-cta-wrap::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 62px;
    border: 2px solid rgba(221,181,108,0.5);
    animation: about-cta-pulse 2.8s ease-in-out infinite;
    pointer-events: none;
  }

  .btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 52px;
    border-radius: 60px;
    background: var(--gold);
    color: var(--dark);
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(221,181,108,0.38);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.35s,
                background 0.3s;
  }

  .btn-about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-145%);
    animation: about-cta-shimmer 3.2s ease-in-out infinite;
    pointer-events: none;
  }

  .btn-about-cta:hover {
    transform: translateY(-4px) scale(1.03);
    background: #e8c47a;
    box-shadow: 0 20px 70px rgba(221,181,108,0.55);
  }

  .btn-about-cta:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
  }

  .btn-about-cta:active {
    transform: scale(0.97) translateY(0);
  }

  @keyframes about-cta-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.12); opacity: 0; }
  }

  @keyframes about-cta-shimmer {
    0%     { transform: translateX(-145%); }
    55%, 100% { transform: translateX(236%); }
  }

  .site-footer {
    position: relative;
    overflow: hidden;
    background: rgba(20,20,20,0.95);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px) 48px;
  }

  .site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1000px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(221,181,108,0.4), transparent);
    pointer-events: none;
  }

  .site-footer__decal {
    position: absolute;
    bottom: -40px;
    right: clamp(24px, 5vw, 80px);
    font-family: 'Agdasima', sans-serif;
    font-size: clamp(200px, 25vw, 340px);
    color: rgba(221,181,108,0.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    letter-spacing: -10px;
  }

  .site-footer__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
  }

  .site-footer__intro {
    max-width: 640px;
  }

  .site-footer__title {
    font-family: 'Agdasima', sans-serif;
    text-transform: uppercase;
    font-size: clamp(48px, 6vw, 96px);
    line-height: 0.95;
    color: var(--cream);
    margin: 18px 0 0;
    word-break: break-word;
  }

  .site-footer-title-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
  }

  .site-footer__contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
  }

  .site-footer__email {
    font-size: 15px;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
  }

  .site-footer__email:hover {
    text-decoration: underline;
  }

  .site-footer__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(240,237,232,0.45);
  }

  .site-footer__text--muted {
    color: rgba(240,237,232,0.35);
  }

  .site-footer__separator {
    width: 100%;
    height: 1px;
    margin: 56px 0 40px;
    border: none;
    background: rgba(240,237,232,0.07);
  }

  .site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
  }

  .site-footer__logo {
    font-family: 'Agdasima', sans-serif;
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--gold);
    text-decoration: none;
  }

  .site-footer__copy {
    margin: 0;
    font-size: 11px;
    color: rgba(240,237,232,0.25);
    letter-spacing: 0.5px;
  }

  .site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .site-footer__links a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.35);
    text-decoration: none;
    transition: color 0.25s;
  }

  .site-footer__links a:hover {
    color: var(--gold);
  }

  @media (max-width: 900px) {
    .site-footer__top {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .site-footer__bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /* WHY BADGES */
  .hero-why { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 52px; opacity: 0; animation: fade-up 0.8s 2.6s forwards; }
  .why-badge {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 40px;
    background: var(--glass-light); border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px); font-size: 13px; font-weight: 300; color: rgba(240,237,232,0.7);
  }
  .why-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

  /* â”€â”€ GLASS CARD â”€â”€ */
  .glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border-radius: var(--radius-lg);
    transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  }
  .glass-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 64px rgba(221,181,108,0.12);
  }

  /* â”€â”€ WORKS SECTION â”€â”€ */
  #works { padding: 100px clamp(24px,6vw,100px); }
  #works .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
  #works h2, #services h2, #about-text h2 {
    font-family: 'Agdasima', sans-serif;
    text-transform: uppercase;
    font-size: clamp(40px,5vw,72px); line-height: 1; letter-spacing: 1px; color: var(--cream);
  }
  .works-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
  .work-card {
    aspect-ratio: 3/4; overflow: hidden; position: relative; cursor: none;
  }
  .work-card .work-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
    filter: saturate(0.9) brightness(0.9);
  }
  .work-card:hover .work-img { transform: scale(1.06); filter: saturate(1.1) brightness(1); }
  .work-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(34,34,34,0.9) 0%, transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px; opacity: 0; transition: opacity 0.4s;
  }
  .work-card:hover .work-overlay { opacity: 1; }
  .work-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
  .work-title { font-family: 'Agdasima', sans-serif; font-size: 24px; letter-spacing: 1px; color: var(--cream); }
  .work-num {
    position: absolute; top: 16px; left: 20px; z-index: 3;
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    color: rgba(240,237,232,0.2); pointer-events: none;
    transition: color 0.4s;
  }
  .work-card:hover .work-num { color: rgba(221,181,108,0.55); }
  a.work-card { text-decoration: none; color: inherit; display: block; }

  /* wide cards — landscape images that need a horizontal box */
  .work-card--wide { aspect-ratio: 16/9; grid-column: span 2; }

  /* â”€â”€ WORK CARD â€” PROJECT ACCENT COLORS â”€â”€ */
  .work-card--reconge:hover {
    border-color: rgba(107,164,161,0.55);
    box-shadow: 0 16px 64px rgba(107,164,161,0.18);
  }
  .work-card--reconge:hover .work-num { color: rgba(107,164,161,0.65); }
  .work-card--reconge .work-tag { color: #6BA4A1; }
  .work-card--reconge .work-overlay {
    background: linear-gradient(to top, rgba(30,70,68,0.85) 0%, rgba(34,34,34,0.6) 40%, transparent 75%);
  }

  .work-card--crdesign:hover {
    border-color: rgba(141,198,63,0.55);
    box-shadow: 0 16px 64px rgba(141,198,63,0.14);
  }
  .work-card--crdesign:hover .work-num { color: rgba(141,198,63,0.65); }
  .work-card--crdesign .work-tag { color: #8dc63f; }
  .work-card--crdesign .work-overlay {
    background: linear-gradient(to top, rgba(25,46,6,0.85) 0%, rgba(34,34,34,0.6) 40%, transparent 75%);
  }

  /* â”€â”€ SERVICES â”€â”€ */
  #services { padding: 100px clamp(24px,6vw,100px); }
  #services h2 { margin-bottom: 52px; }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
  .service-card {
    padding: 36px 32px; position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.4s;
  }
  .service-card:hover::before { opacity: 1; }
  .service-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--gold-dim); border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 22px;
    transition: background 0.3s, transform 0.3s;
  }
  .service-card:hover .service-icon { background: rgba(221,181,108,0.28); transform: scale(1.08); }
  .service-card h3 {
    font-family: 'Agdasima', sans-serif; font-size: 26px; letter-spacing: 1px;
    color: var(--cream); margin-bottom: 10px;
  }
  .service-card p { font-size: 14px; color: rgba(240,237,232,0.55); line-height: 1.65; margin-bottom: 20px; }
  .service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .stag {
    font-size: 11px; letter-spacing: 1px; color: rgba(221,181,108,0.7);
    border: 1px solid rgba(221,181,108,0.2); border-radius: 40px;
    padding: 4px 12px;
  }
  .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
  }
  .service-pill {
    min-height: 112px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .service-pill .service-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--gold-dim);
    border: 1px solid var(--glass-border);
    font-size: 22px;
    flex-shrink: 0;
  }
  .service-pill h3 {
    font-family: 'Agdasima', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--cream);
    line-height: 1;
  }

  /* â”€â”€ FEATURED PROJECT (PAP) â”€â”€ */
  .featured-project {
    padding: 0 clamp(24px,6vw,100px) 60px;
    position: relative; z-index: 2;
  }
  .featured-project__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border-radius: var(--radius-lg);
    padding: clamp(36px,5vw,60px) clamp(28px,4vw,56px);
    position: relative;
    overflow: hidden;
  }
  .featured-project__inner::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107,164,161,0.6), transparent);
    pointer-events: none;
  }
  .featured-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px; border-radius: 40px;
    background: rgba(107,164,161,0.12);
    border: 1px solid rgba(107,164,161,0.3);
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: #6BA4A1; margin-bottom: 20px;
  }
  .featured-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #6BA4A1; flex-shrink: 0;
    animation: pulse-dot 2.4s ease-in-out infinite;
  }
  .featured-project__title {
    font-family: 'Agdasima', sans-serif;
    font-size: clamp(52px,7vw,100px);
    line-height: 0.9; color: var(--cream);
    letter-spacing: 2px; margin-bottom: 8px;
  }
  .featured-project__sub {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: #6BA4A1; margin-bottom: 24px;
  }
  .featured-project__desc {
    font-size: 15px; line-height: 1.75;
    color: rgba(240,237,232,0.65);
    margin-bottom: 32px; max-width: 480px;
  }
  .btn-reconge {
    background: #6BA4A1; color: #1a3332;
    box-shadow: 0 4px 32px rgba(107,164,161,0.25);
  }
  .btn-reconge:hover {
    background: #7BBAB7; transform: translateY(-2px);
    box-shadow: 0 8px 48px rgba(107,164,161,0.4);
  }
  .btn-crdesign {
    background: #8dc63f; color: #192e06;
    box-shadow: 0 4px 32px rgba(141,198,63,0.2);
  }
  .btn-crdesign:hover {
    background: #a8d84a; transform: translateY(-2px);
    box-shadow: 0 8px 48px rgba(141,198,63,0.35);
  }
  .featured-badge--cr {
    background: rgba(141,198,63,0.1); border-color: rgba(141,198,63,0.3);
    color: #8dc63f;
  }
  .featured-badge--cr::before { background: #8dc63f; }
  .featured-project__sub--cr { color: #8dc63f; }
  .featured-project__visual { position: relative; }
  .featured-project__images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px; align-items: start;
  }
  .featured-project__images img {
    width: 100%; object-fit: cover;
    border-radius: var(--radius); display: block;
  }
  .featured-project__images img:first-child { aspect-ratio: 3/5; }
  .featured-project__images .featured-col { display: flex; flex-direction: column; gap: 10px; }
  .featured-project__images .featured-col img { aspect-ratio: 3/4; }
  @media (max-width: 860px) {
    .featured-project__inner { grid-template-columns: 1fr; }
    .featured-project__images { grid-template-columns: repeat(3, 1fr); }
    .featured-project__images img:first-child { aspect-ratio: 3/4; }
    .featured-project__images .featured-col { flex-direction: row; }
    .featured-project__images .featured-col img { flex: 1; }
  }

  /* â”€â”€ SOCIAL MEDIA MINI-FEATURE â”€â”€ */
  .social-feature {
    padding: 0 clamp(24px,6vw,100px) 60px;
    position: relative; z-index: 2;
  }
  .social-feature__inner {
    display: flex; align-items: center;
    gap: clamp(28px,4vw,56px);
    background: var(--glass); border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px) saturate(140%);
    border-radius: var(--radius-lg);
    padding: clamp(24px,3.5vw,40px) clamp(24px,4vw,48px);
    overflow: hidden;
  }
  .social-feature__meta { flex: 1; min-width: 0; }
  .social-feature__badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 4px 12px; border-radius: 40px;
    background: rgba(221,181,108,0.08); border: 1px solid rgba(221,181,108,0.22);
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(221,181,108,0.7); margin-bottom: 16px;
  }
  .social-feature__badge::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }
  .social-feature__title {
    font-family: 'Agdasima', sans-serif;
    text-transform: uppercase;
    font-size: clamp(28px,3.5vw,52px); color: var(--cream);
    letter-spacing: 2px; line-height: 1; margin-bottom: 10px;
  }
  .social-feature__desc {
    font-size: 14px; line-height: 1.7;
    color: rgba(240,237,232,0.55); margin-bottom: 20px;
    max-width: 340px;
  }
  .social-feature__link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    transition: gap 0.3s var(--transition), opacity 0.3s;
  }
  .social-feature__link:hover { gap: 14px; opacity: 0.8; }
  .social-feature__posts {
    display: flex; gap: 8px; flex-shrink: 0;
  }
  .social-feature__post {
    width: clamp(80px,8vw,110px); aspect-ratio: 4/5;
    border-radius: var(--radius); overflow: hidden;
  }
  .social-feature__post img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s var(--transition);
  }
  .social-feature__post:hover img { transform: scale(1.06); }
  @media (max-width: 640px) {
    .social-feature__inner { flex-direction: column; }
    .social-feature__posts { width: 100%; }
    .social-feature__post { flex: 1; }
  }

  /* â”€â”€ SERVICES ROWS â”€â”€ */
  .services-rows { border-top: 1px solid var(--glass-border); }
  .service-row {
    display: flex; align-items: center; gap: clamp(16px,3vw,40px);
    padding: clamp(20px,2.5vw,32px) 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: padding-left 0.5s var(--transition);
  }
  .service-row::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
    background: linear-gradient(90deg, var(--gold-dim), transparent);
    transition: width 0.5s var(--transition); pointer-events: none;
  }
  .service-row:hover { padding-left: clamp(12px,2vw,24px); }
  .service-row:hover::before { width: 100%; }
  .service-row__num {
    font-family: 'Comfortaa', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    color: rgba(221,181,108,0.35); min-width: 28px; flex-shrink: 0;
    transition: color 0.3s;
  }
  .service-row:hover .service-row__num { color: rgba(221,181,108,0.7); }
  .service-row__title {
    font-family: 'Agdasima', sans-serif;
    text-transform: uppercase;
    font-size: clamp(28px,3.5vw,52px);
    color: var(--cream); letter-spacing: 1px;
    flex: 1; line-height: 1; transition: color 0.3s;
  }
  .service-row:hover .service-row__title { color: var(--gold); }
  .service-row__arrow {
    font-size: 18px; color: rgba(240,237,232,0.15); flex-shrink: 0;
    transition: color 0.3s, transform 0.4s var(--transition);
  }
  .service-row:hover .service-row__arrow { color: var(--gold); transform: translateX(8px); }
  .filter-group {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px;
  }
  .filter-btn {
    background: rgba(221,181,108,0.08);
    border: 1px solid rgba(221,181,108,0.22);
    color: var(--cream);
    padding: 12px 18px;
    border-radius: 999px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
  }
  .filter-btn:hover,
  .filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-1px);
  }
  .works-empty-state {
    margin-top: 42px;
    padding: 48px 28px;
    text-align: center;
    border: 1px solid rgba(221,181,108,0.12);
    border-radius: var(--radius);
    background: rgba(221,181,108,0.04);
    color: rgba(240,237,232,0.68);
    font-size: 15px;
  }

  /* â”€â”€ ABOUT â”€â”€ */
  #about {
    padding: 100px clamp(24px,6vw,100px);
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .about-visual { position: relative; }
  .about-frame {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: var(--glass); border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .about-frame::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(221,181,108,0.15), transparent 65%);
    pointer-events: none;
  }
  .about-monogram {
    width: 100%; height: 100%; object-fit: contain;
    user-select: none; line-height: 1;
    transition: opacity 0.5s;
  }
  .about-frame:hover .about-monogram { opacity: 0.85; }
  .about-photo {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    display: block; user-select: none;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.5s;
    filter: saturate(0.92) brightness(0.95);
  }
  .about-frame:hover .about-photo {
    transform: scale(1.03);
    filter: saturate(1.05) brightness(1);
  }
  .about-stats {
    display: flex; gap: 0; margin-top: 20px;
    border: 1px solid var(--glass-border); border-radius: var(--radius);
    background: var(--glass); backdrop-filter: blur(16px); overflow: hidden;
  }
  .astat { flex: 1; text-align: center; padding: 20px 12px; border-right: 1px solid var(--glass-border); }
  .astat:last-child { border-right: none; }
  .astat-num { display: block; font-family: 'Agdasima', sans-serif; font-size: 32px; color: var(--gold); }
  .astat-label { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(240,237,232,0.4); margin-top: 2px; }
  #about-text .section-label { margin-top: 0; }
  #about-text h2 { margin-bottom: 24px; }
  #about-text p { font-size: 15px; color: rgba(240,237,232,0.6); margin-bottom: 16px; line-height: 1.75; }
  .offer-list { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
  .offer-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: rgba(240,237,232,0.65);
  }
  .offer-list li::before {
    content: ''; width: 18px; height: 18px; border-radius: 50%;
    background: var(--gold-dim); border: 1px solid var(--glass-border);
    flex-shrink: 0; margin-top: 3px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5 3.5-4' stroke='%23ddb56c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; background-size: 12px;
  }
  .about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

  /* â”€â”€ INNER PAGES â”€â”€ */
  .page-main {
    position: relative;
    z-index: 2;
    padding: calc(var(--nav-h) + 72px) clamp(24px,6vw,100px) 100px;
    min-height: 100vh;
  }
  .page-hero {
    max-width: 920px;
    margin-bottom: 52px;
  }
  .page-hero h1, .page-title {
    font-family: 'Agdasima', sans-serif;
    text-transform: uppercase;
    font-size: clamp(58px,9vw,128px);
    line-height: 0.92;
    letter-spacing: 1px;
    color: var(--cream);
  }
  .page-lead {
    max-width: 660px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(240,237,232,0.62);
  }
  .work-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      linear-gradient(135deg, rgba(221,181,108,0.08), transparent 42%),
      rgba(240,237,232,0.035);
  }
  .work-placeholder span {
    font-family: 'Agdasima', sans-serif;
    font-size: clamp(34px,5vw,64px);
    letter-spacing: 3px;
    color: rgba(221,181,108,0.16);
  }
  .about-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 52px;
    align-items: start;
  }
  .about-page-copy {
    max-width: 760px;
  }
  .about-page-copy p {
    font-size: 16px;
    color: rgba(240,237,232,0.64);
    line-height: 1.85;
    margin-bottom: 18px;
  }
  .about-page-stats {
    display: grid;
    gap: 16px;
    position: sticky;
    top: calc(var(--nav-h) + 28px);
  }
  .about-stat-card {
    padding: 30px;
  }
  .about-stat-card .astat-num {
    font-size: clamp(44px,5vw,72px);
    line-height: 1;
  }
  .about-stat-card .astat-label {
    margin-top: 8px;
    font-size: 12px;
  }

  /* â”€â”€ REVEAL ANIMATIONS â”€â”€ */
  .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* â”€â”€ MARQUEE â”€â”€ */
  .marquee-section {
    position: relative; z-index: 2; overflow: hidden;
    border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
    padding: 18px 0; background: rgba(34,34,34,0.4); backdrop-filter: blur(8px);
    min-height: 55px;
  }
  .marquee-track {
    display: flex; gap: 0; white-space: nowrap;
    animation: marquee-scroll 22s linear infinite;
  }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 20px; padding: 0 36px;
    font-family: 'Agdasima', sans-serif; font-size: 18px; letter-spacing: 3px;
    color: rgba(240,237,232,0.25);
  }
  .marquee-item .sep { color: var(--gold); font-size: 20px; }

  /* â”€â”€ RESPONSIVE â”€â”€ */
  @media (max-width: 900px) {
    #about { grid-template-columns: 1fr; }
    .about-page-layout { grid-template-columns: 1fr; }
    .about-page-stats { position: static; }
    .social-float { display: none; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    h1.hero-title { font-size: clamp(60px, 16vw, 100px); }
    .timeline::before { left: 32px; transform: none; }
    .timeline-item { grid-template-columns: 1rem minmax(0, 1fr); margin-left: 20px; }
    .timeline-item-left, .timeline-item-right { transform: none; }
    .timeline-dot { grid-column: 1; justify-self: start; margin-top: 14px; }
    .timeline-card { grid-column: 2; width: 100%; text-align: left; }
    .timeline-card::after { display: none; }
    .timeline-card { padding: 22px 20px; }
    .timeline-item { gap: 18px; }
    .filter-group { justify-content: center; }
  }
  @media (max-width: 600px) {
    .works-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .services-list { grid-template-columns: 1fr; }
    .hero-desc { max-width: 100%; }
    .about-actions, .hero-ctas, .filter-group { justify-content: center; }
    .site-footer__bottom { flex-direction: column; align-items: flex-start; }

    /* Services: grelha 2×3 de cartões no mobile */
    .services-rows {
      border-top: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .service-row {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 28px 16px 24px;
      border-bottom: none;
      border-radius: 18px;
      background: rgba(34,34,34,0.6);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(221,181,108,0.2);
      min-height: 136px;
      gap: 10px;
      text-decoration: none;
      transition: transform 0.3s var(--transition), border-color 0.3s, box-shadow 0.3s;
    }
    .service-row::before {
      bottom: auto;
      width: 60% !important;
      left: 50%;
      transform: translateX(-50%);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.5;
      transition: opacity 0.35s, width 0.35s;
    }
    .service-row:hover {
      padding-left: 16px;
      transform: translateY(-4px);
      border-color: rgba(221,181,108,0.42);
      box-shadow: 0 8px 32px rgba(221,181,108,0.08);
    }
    .service-row:hover::before { width: 90% !important; opacity: 1; }
    .service-row__num {
      display: inline-block;
      font-size: 10px;
      font-family: 'Comfortaa', sans-serif;
      font-weight: 600;
      letter-spacing: 3px;
      color: var(--gold);
      background: rgba(221,181,108,0.1);
      border: 1px solid rgba(221,181,108,0.25);
      border-radius: 40px;
      padding: 3px 10px;
      min-width: auto;
    }
    .service-row__title {
      font-size: clamp(17px, 4.8vw, 22px);
      line-height: 1.1;
      letter-spacing: 0.5px;
      margin-top: 0;
      padding-top: 0;
    }
    .service-row__arrow { display: none; }

    /* Featured projects: compactar no mobile */
    .featured-project__inner {
      gap: 18px;
      padding: 24px 20px;
    }
    .featured-project__desc { display: none; }
    .featured-project__images {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .featured-project__images .featured-col {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .featured-project__images img:first-child { aspect-ratio: 16/9; }
    .featured-project__images .featured-col img {
      width: 100%;
      min-width: 0;
      aspect-ratio: 4/3;
      object-fit: cover;
    }
    .works-gallery .work-card--wide {
      grid-column: 1 / -1;
      aspect-ratio: 16/9;
    }
    .featured-project__visual { order: -1; }
    .featured-project__title { font-size: clamp(42px, 12vw, 62px); margin-bottom: 6px; }
    .featured-project__sub { margin-bottom: 18px; }

    /* Social feature: compactar no mobile */
    .social-feature__desc { display: none; }
    .social-feature__posts { justify-content: center; }
    .social-feature__post { width: calc(33% - 6px); }
  }
  @media (pointer: coarse) {
    html { cursor: auto; }
    button, a, .service-card, .work-card, .nav-toggle, .filter-btn { cursor: auto !important; }
    #cursor, #cursor-ring { display: none !important; }
    .social-float { display: none !important; }
  }

/* â”€â”€ HERO EASTER EGG ANIMATIONS â”€â”€ */
@keyframes kf-easter-logo {
  0%   { transform: scale(1)    rotateY(0deg); }
  30%  { transform: scale(1.35) rotateY(180deg); }
  55%  { transform: scale(0.88) rotateY(360deg); }
  75%  { transform: scale(1.12) rotateY(360deg); }
  88%  { transform: scale(0.96) rotateY(360deg); }
  100% { transform: scale(1)    rotateY(360deg); }
}

@keyframes kf-easter-stars {
  0%   { transform: scale(1)    rotate(0deg);   opacity: 1; }
  18%  { transform: scale(1.7)  rotate(90deg);  opacity: 0.75; }
  36%  { transform: scale(0.65) rotate(180deg); opacity: 1; }
  54%  { transform: scale(1.45) rotate(270deg); opacity: 0.8; }
  72%  { transform: scale(0.85) rotate(330deg); opacity: 1; }
  86%  { transform: scale(1.08) rotate(355deg); opacity: 1; }
  100% { transform: scale(1)    rotate(360deg); opacity: 1; }
}

@keyframes kf-easter-cursor {
  0%,100% { transform: translate(0,0)       rotate(0deg)  scale(1); }
  8%      { transform: translate(-12px,-6px) rotate(-18deg) scale(0.88); }
  16%     { transform: translate(12px,6px)   rotate(18deg)  scale(1.12); }
  24%     { transform: translate(-9px,9px)   rotate(-12deg) scale(0.92); }
  32%     { transform: translate(9px,-9px)   rotate(12deg)  scale(1.08); }
  42%     { transform: translate(-6px,5px)   rotate(-8deg)  scale(0.96); }
  52%     { transform: translate(6px,-5px)   rotate(8deg)   scale(1.04); }
  62%     { transform: translate(-3px,3px)   rotate(-4deg); }
  72%     { transform: translate(3px,-3px)   rotate(4deg); }
  82%     { transform: translate(-1px,2px)   rotate(-2deg); }
  92%     { transform: translate(1px,-1px)   rotate(1deg); }
}

.easter-logo   { animation: kf-easter-logo   0.75s cubic-bezier(0.34,1.56,0.64,1) both; }
.easter-stars  { animation: kf-easter-stars  0.9s  ease-in-out both; }
.easter-cursor { animation: kf-easter-cursor 0.65s ease-out both; }

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   MOBILE REDESIGN â€” full overhaul, not just adaptation
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */

/* Eliminate 300ms tap delay on all interactive elements */
a, button, [role="button"], .work-card, .service-row, .glass-card {
  touch-action: manipulation;
}

/* Mobile menu link entrance stagger */
@keyframes kf-menu-link-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open li a {
  animation: kf-menu-link-in 0.42s cubic-bezier(0.16,1,0.3,1) both;
}
.mobile-menu.open li:nth-child(1) a { animation-delay: 0.04s; }
.mobile-menu.open li:nth-child(2) a { animation-delay: 0.09s; }
.mobile-menu.open li:nth-child(3) a { animation-delay: 0.14s; }
.mobile-menu.open li:nth-child(4) a { animation-delay: 0.19s; }
.mobile-menu.open .lang-toggle {
  animation: kf-menu-link-in 0.42s 0.25s cubic-bezier(0.16,1,0.3,1) both;
}

/* Mobile menu: lang toggle positioned below nav links at all mobile sizes */
.mobile-menu .lang-toggle { margin-top: 36px; background: rgba(240,237,232,0.06); }
.mobile-menu .lang-btn { font-size: 14px; padding: 8px 22px; }

/* Hamburger â†’ X when mobile menu is open */
body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Touch screens: work info always visible (no hover available) */
@media (pointer: coarse) {
  .work-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(34,34,34,0.93) 0%, rgba(34,34,34,0.22) 56%, transparent 100%);
  }
  .work-card .work-img {
    filter: saturate(0.88) brightness(0.80);
  }
  /* Disable hover-shift on service rows (no hover on touch) */
  .service-row:hover { padding-left: 0; }
  .service-row:hover::before { width: 0; }
  .service-row:hover .service-row__title { color: var(--cream); }
  .service-row:hover .service-row__num { color: rgba(221,181,108,0.35); }
  .service-row:hover .service-row__arrow { color: rgba(240,237,232,0.15); transform: none; }
  /* Active press feedback for tap */
  .work-card:active { transform: scale(0.97); transition: transform 0.1s ease; }
  .btn-primary:active { transform: scale(0.97) translateY(0); }
  .btn-outline:active { transform: scale(0.97) translateY(0); }
  .service-row:active .service-row__title { color: var(--gold); }
}

/* â”€â”€â”€ TABLET / PHABLET (â‰¤860px) â”€â”€â”€ */
@media (max-width: 860px) {
  /* Hero visual: taller and intentionally re-centred for single column */
  .hero-visual {
    order: -1;
    min-height: 260px;
    height: 260px;
    margin-bottom: 0;
  }

  /* Reposition floating icons within the tighter single-column space */
  .hero-visual-layer--large {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    opacity: 1;
  }
  .hero-visual-layer--medium {
    width: 118px;
    height: 118px;
    top: 8%;
    left: 78%;
    opacity: 0.9;
  }
  .hero-visual-layer--small {
    width: 82px;
    height: 132px;
    top: 84%;
    left: 14%;
    opacity: 0.9;
  }

  /* Section padding compression for tablets */
  #works  { padding-top: 80px; padding-bottom: 80px; }
  #services { padding-top: 80px; padding-bottom: 80px; }
  #about  { padding-top: 80px; padding-bottom: 80px; }
}

/* â”€â”€â”€ PHONE (â‰¤600px) â€” intentional mobile-first design â”€â”€â”€ */
@media (max-width: 600px) {

  /* â”€â”€ HERO: centered, focused, single visual anchor â”€â”€ */
  #hero {
    padding: calc(var(--nav-h) + 32px) 20px 64px;
    text-align: center;
  }
  .hero-grid { gap: 24px; }

  .hero-visual {
    min-height: 215px;
    height: 215px;
  }

  /* Phone: single logo only â€” hide decorative floating icons */
  .hero-visual-layer--medium,
  .hero-visual-layer--small { display: none; }

  .hero-visual-layer--large {
    width: 162px;
    height: 162px;
    top: 50%;
    left: 50%;
    opacity: 1;
  }

  /* Centre all hero text */
  .hero-badge    { justify-content: center; }
  .hero-eyebrow  { text-align: center; }
  .hero-title    { align-items: center; margin-top: 20px; }

  .hero-title-line-1 { font-size: clamp(48px, 13vw, 62px); }
  .hero-title-line-2 { font-size: clamp(52px, 14vw, 66px); justify-content: center; }
  .hero-title-line-3 { font-size: clamp(48px, 13vw, 62px); }

  .hero-desc {
    font-size: 15px;
    line-height: 1.7;
    margin: 18px auto 0;
    max-width: 100%;
  }

  /* Stacked full-width CTAs â€” much better for thumbs */
  .hero-ctas {
    margin-top: 28px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    min-height: 52px;
    font-size: 15px;
  }

  /* Stats: stacked, centred, no separator dot */
  .hero-stats {
    margin-top: 28px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .hero-stat-separator { display: none; }

  /* â”€â”€ WORKS: 2Ã—2 grid (intentional, not 4 tall cards) â”€â”€ */
  #works { padding: 64px 20px; }
  #works .section-header { margin-bottom: 28px; flex-direction: column; align-items: flex-start; gap: 20px; }
  #works .section-header .btn-outline { align-self: flex-start; }

  .works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .work-card  { aspect-ratio: 3/4; }
  .work-overlay { padding: 12px; }
  .work-title { font-size: 16px; }
  .work-tag   { font-size: 9px; letter-spacing: 1.5px; }
  .work-num   { font-size: 10px; top: 10px; left: 12px; }

  /* â”€â”€ SERVICES â”€â”€ */
  #services { padding: 64px 20px; }
  .service-row__title { font-size: clamp(21px, 5.5vw, 28px); }
  .service-row { padding: 16px 0; }

  /* â”€â”€ ABOUT â”€â”€ */
  #about { padding: 64px 20px; gap: 40px; }
  .about-frame { max-width: 240px; margin: 0 auto; }
  .about-actions { justify-content: center; }
  .about-actions .btn-primary,
  .about-actions .btn-about-cta {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    min-height: 54px;
    font-size: 15px;
    padding: 18px 32px;
  }

  /* â”€â”€ FOOTER â”€â”€ */
  .site-footer { padding: 56px 20px 40px; }
  .site-footer__decal {
    font-size: clamp(108px, 30vw, 164px);
    bottom: -10px;
    right: 6px;
    letter-spacing: -5px;
  }
  .site-footer__title { font-size: clamp(36px, 10vw, 50px); }
  .site-footer__contact .btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 15px;
  }
  .site-footer__separator { margin: 36px 0 28px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-footer__links { gap: 12px; }

  /* Section headings: slightly tighter on phone */
  #works h2, #services h2, #about-text h2 {
    font-size: clamp(32px, 9vw, 46px);
  }

  /* Marquee: tighter spacing on mobile */
  .marquee-item {
    font-size: 15px;
    letter-spacing: 2px;
    padding: 0 22px;
    gap: 14px;
  }

}

/* â”€â”€â”€ VERY SMALL PHONES (â‰¤380px) â”€â”€â”€ */
@media (max-width: 380px) {
  .hero-title-line-1,
  .hero-title-line-3 { font-size: 44px; }
  .hero-title-line-2 { font-size: 48px; }
  /* Fall back to single column for very narrow screens */
  .works-grid { grid-template-columns: 1fr; }
  .work-card  { aspect-ratio: 4/3; }
}

/* ── YOUTUBE FACADE (lazy-loaded video embed) ── */
.yt-facade {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #000; overflow: hidden; border-radius: inherit;
}
.yt-facade__thumb {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.yt-facade__play {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0.05));
  border: 0; padding: 0; margin: 0; cursor: pointer; appearance: none;
}
.yt-facade__play-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(34,34,34,0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(221,181,108,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), background 0.25s;
}
.yt-facade__play-btn svg { width: 20px; height: 20px; fill: var(--gold); margin-left: 3px; }
.yt-facade__play:hover .yt-facade__play-btn,
.yt-facade__play:focus-visible .yt-facade__play-btn {
  transform: scale(1.1); background: rgba(221,181,108,0.9);
}
.yt-facade__play:hover .yt-facade__play-btn svg,
.yt-facade__play:focus-visible .yt-facade__play-btn svg { fill: #222222; }
.yt-facade__play:focus-visible { outline: 2px solid var(--gold); outline-offset: -4px; }
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
