/* Scroll fade animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

    .nav-logo {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
      line-height: 1;
      text-decoration: none;
    }

    .nav-logo-img {
      height: 50px;
      width: 50px;
      display: block;
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .logo-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 22px;
      letter-spacing: 4px;
      text-transform: uppercase;
      transition: color 0.4s;
    }

    .logo-sub {
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      font-size: 8px;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-top: 4px;
      transition: color 0.4s;
    }

         /* =========================================================
       VARIABLES
    ========================================================= */

    :root {
      --black: #0a0a0a;
      --white: #ffffff;
      --gold: #c9a84c;
      --light-gray: #f4f4f2;
      --mid-gray: #888;
      --dark-gray: #1e1e1e;
    }


    /* =========================================================
       BASE
    ========================================================= */

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--white);
      color: var(--black);
    }


    /* =========================================================
       NAVIGATION
    ========================================================= */

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 56px;
      height: 80px;
      border-bottom: 1px solid #e8e8e8;
    }

    .logo-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 22px;
      letter-spacing: 4px;
      color: var(--black);
      text-transform: uppercase;
    }

    .logo-sub {
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      font-size: 8px;
      letter-spacing: 4px;
      color: var(--mid-gray);
      text-transform: uppercase;
      margin-top: 4px;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--black);
      text-decoration: none;
      position: relative;
      padding-bottom: 4px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;

      width: 0;
      height: 1px;

      background: var(--gold);

      transition: width 0.3s;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .nav-links a.active {
      color: var(--gold);
    }

 /* ── FOOTER ── */
    footer {
      background: var(--black);
      color: rgba(255,255,255,0.6);
      padding: 72px 56px 36px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 56px;
      max-width: 1200px;
      margin: 0 auto 56px;
    }

    .footer-brand .fn { font-family:'Montserrat',sans-serif; font-weight:900; font-size:18px; letter-spacing:3px; color:var(--white); text-transform:uppercase; }
    .footer-brand .fs { font-family:'Montserrat',sans-serif; font-size:9px; letter-spacing:4px; color:var(--gold); text-transform:uppercase; margin-top:4px; display:block; }
    .footer-brand p { margin-top:20px; font-size:13px; line-height:1.9; color:rgba(255,255,255,0.4); max-width:260px; }

    .footer-col h4 { font-family:'Montserrat',sans-serif; font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--white); margin-bottom:24px; }
    .footer-col ul { list-style:none; }
    .footer-col ul li { margin-bottom:12px; }
    .footer-col ul li a { font-size:13px; color:rgba(255,255,255,0.45); text-decoration:none; transition:color 0.2s; }
    .footer-col ul li a:hover { color:var(--gold); }
    .footer-col address { font-style:normal; font-size:13px; line-height:2; color:rgba(255,255,255,0.45); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 28px;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p { font-size:12px; letter-spacing:0.5px; color:rgba(255,255,255,0.35); }
    .footer-bottom span { color:var(--gold); }

    /* ── RESPONSIVE ── */
    @media (max-width:1024px) {
      .tiles { grid-template-columns: repeat(2,1fr); }
      .tile { border-bottom:1px solid rgba(255,255,255,0.07); }
      .statement { grid-template-columns:1fr; gap:40px; padding:80px 40px; }
      .hero-bg {
      transform: scale(1.5);
      background-position: center center;
     }
     .hero-bg.loaded {
       transform: scale(2.5); 
    }
  }

    @media (max-width:768px) {
      nav { padding:0 24px; }
      .nav-links { gap:20px; }
      .hero-content { padding:0 24px 64px; }
      .scroll-hint { display:none; }
      .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
      .hero-bg {
      transform: scale(1.7);
      background-position: center center;
     }
     .hero-bg.loaded {
       transform: scale(2.5); 
  }
    }

    @media (max-width:600px) {
      .nav-links { display:none; }
      .tiles { grid-template-columns:1fr; }
      footer { padding:56px 24px 28px; }
      .footer-grid { grid-template-columns:1fr; }
      .footer-bottom { flex-direction:column; text-align:center; }
    }