:root {
    --navy: #0a1628;
    --navy2: #0d1e3a;
    --navy3: #112244;
    --gold: #c9a96e;
    --gold-light: #e8cfa0;
    --gold-dark: #a07c45;
    --white: #f8f5ef;
    --gray: #8a8a8a;
    --light: #f0ebe0;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  #about, #gallery, #why, #projects, #contact {
    scroll-margin-top: 90px;
  }

  /* Screen-reader only — visually hidden but accessible */
  .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    width: 100%;
  }
  img { max-width: 100%; height: auto; }

  /* SECTION END DIVIDER */
  section { position: relative; overflow-x: clip; }
  section::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: min(560px, 72%);
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(201,169,110,0.45) 18%,
      rgba(232,207,160,0.95) 50%,
      rgba(201,169,110,0.45) 82%,
      transparent 100%
    );
    box-shadow:
      0 0 14px rgba(201,169,110,0.4),
      0 0 28px rgba(201,169,110,0.2);
    pointer-events: none;
    z-index: 8;
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--navy); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

  /* ═══════════════════════════════
     NAV
  ════════════════════════════════ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem clamp(1rem, 4vw, 5rem);
    /* Always readable over the canvas */
    background: rgba(10,22,40,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201,169,110,0.1);
    transition: background 0.4s, padding 0.4s, border-color 0.4s;
  }
  nav.scrolled {
    background: rgba(10,22,40,0.97);
    padding: 0.75rem clamp(1rem, 4vw, 5rem);
    border-bottom-color: rgba(201,169,110,0.25);
  }

  /* ── Logo image — filter coloured, no background ── */
  .nav-brand {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter:
      brightness(0)
      invert(1)
      sepia(1)
      saturate(3)
      hue-rotate(5deg)
      brightness(0.95);
    transition: filter 0.35s ease;
  }
  nav.scrolled .nav-logo-img {
    filter:
      brightness(0)
      invert(1)
      sepia(1)
      saturate(3.5)
      hue-rotate(5deg)
      brightness(1.1);
  }
  .nav-brand:hover .nav-logo-img {
    filter:
      brightness(0)
      invert(1)
      sepia(0.5)
      saturate(2)
      hue-rotate(5deg)
      brightness(1.4);
  }

  /* Brand name on the right of the icon, readable and bigger */
  .nav-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(248, 245, 239, 0.95);
    white-space: nowrap;
    line-height: 1;
  }
  .nav-brand-name strong {
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
  }

  /* ── Nav links ── */
  .nav-links { display: flex; align-items: center; gap: 2.8rem; list-style: none; }
  .nav-links a {
    color: rgba(248,245,239,0.82);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.3s;
    transform-origin: left;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* ── Enquire Now CTA ── */
  .nav-cta {
    background: transparent !important;
    border: 1px solid rgba(201,169,110,0.6) !important;
    color: var(--gold) !important;
    padding: 0.5rem 1.4rem;
    font-size: 0.65rem !important;
    letter-spacing: 2.5px !important;
    transition: background 0.3s, border-color 0.3s, color 0.3s !important;
  }
  .nav-cta:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy) !important;
  }
  .nav-cta::after { display: none !important; }

  /* ── Hamburger ── */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
  }

  /* ── Top scrim on canvas ── */
  .scrolly-top-scrim {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(
      to bottom,
      rgba(10,22,40,0.5) 0%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 5;
  }

  /* ─── BRAND REVEAL (last frame) ─────────────────────── */
  .scrolly-brand-reveal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 12;
    text-align: center;
    pointer-events: none;
    opacity: 0;          /* driven by JS */
    will-change: opacity, transform;
    /* Dark radial backdrop so text stays visible over the image */
    padding: 4rem 5rem;
    background: radial-gradient(
      ellipse 70% 60% at 50% 50%,
      rgba(10,22,40,0.95) 0%,
      rgba(10,22,40,0.92) 25%,
      rgba(10,22,40,0.88) 55%,
      rgba(10,22,40,0.82) 100%
    );
  }
  .sbr-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    opacity: 0.9;
  }
  .sbr-eyebrow strong {
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .sbr-eyebrow strong::before,
  .sbr-eyebrow strong::after {
    content: '';
    display: inline-block;
    width: 120px;
    max-width: 28vw;
    height: 2px;
    background: linear-gradient(90deg, rgba(201,169,110,0.85), rgba(232,207,160,0.95), rgba(201,169,110,0.85));
    border-radius: 2px;
    opacity: 0.95;
    margin: 0 0.75rem;
    transform: translateY(-1px);
    vertical-align: middle;
  }
  .sbr-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 300;
    font-style: italic;
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -2px;
    text-shadow: 0 4px 60px rgba(0,0,0,0.6);
  }
  .sbr-name em {
    font-style: italic;
    color: var(--gold-light);
  }
  .sbr-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    font-weight: 400;
    font-style: normal;
    color: rgba(248,245,239,0.9);
    letter-spacing: 1px;
    line-height: 1.1;
    margin-top: 1.4rem;
  }
  .sbr-tagline em {
    display: block;
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.05em;
    margin-top: 0.2rem;
  }

  /* SCROLL INDICATOR */
  .scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    animation: fadeUp 1s 1.3s ease both;
  }
  .scroll-dot {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
  }

  /* SHARED BUTTONS */
  .btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 0.9rem 2.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    border: none; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: background 0.3s, transform 0.3s;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    color: var(--gold-light);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,169,110,0.4);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
  }
  .btn-outline:hover { color: var(--gold); border-color: var(--gold); }

  /* SCROLLY HERO — actions + stats */
  .scrolly-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.2rem;
    pointer-events: all;
  }
  .scrolly-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201,169,110,0.15);
  }
  .sstat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
  }
  .sstat-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(248,245,239,0.65);
    margin-top: 3px;
  }


  /* ABOUT */
  #about {
    padding: 9rem clamp(1rem, 4vw, 5rem);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 7rem; align-items: center;
    position: relative;
  }
  #about::before {
    content: 'FORTUNE';
    position: absolute; right: -1rem; top: 50%; transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 14rem; font-weight: 300;
    color: rgba(201,169,110,0.04);
    pointer-events: none; line-height: 1; white-space: nowrap;
  }
  .gold-line {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
  }
  .gold-line .line { width: 30px; height: 1px; background: var(--gold); }
  .gold-line span {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
  }
  h1, h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
  }
  h2 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    margin-bottom: 1.5rem;
  }
  h2 em, h1 em { font-style: italic; color: var(--gold-light); }
  .about-text {
    font-size: 0.87rem; font-weight: 300;
    line-height: 1.9; color: rgba(248,245,239,0.78);
    margin-bottom: 1rem;
  }
  .about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.2rem; margin-top: 2.5rem;
  }
  .af-item {
    padding: 1.4rem;
    border: 1px solid rgba(201,169,110,0.15);
    transition: border-color 0.3s, background 0.3s;
  }
  .af-item:hover {
    border-color: rgba(201,169,110,0.4);
    background: rgba(201,169,110,0.04);
  }
  .af-icon { font-size: 1.3rem; margin-bottom: 0.6rem; }
  .af-title { font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; color: var(--gold-light); margin-bottom: 0.3rem; }
  .af-desc { font-size: 0.75rem; color: rgba(248,245,239,0.75); line-height: 1.6; }

  .about-img-stack {
    position: relative;
    padding: 0 2.5rem 2.5rem 0;
    isolation: isolate;
  }
  .img-main {
    width: 100%; aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(201,169,110,0.2);
  }
  .img-accent {
    position: absolute;
    bottom: -2.5rem; right: -2.5rem;
    width: 55%; aspect-ratio: 1;
    object-fit: cover;
    border: 4px solid var(--navy);
    outline: 1px solid rgba(201,169,110,0.3);
  }
  .years-badge {
    position: absolute;
    top: 2rem; left: -2rem;
    background: var(--gold);
    color: var(--navy);
    width: 80px; height: 80px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
  }
  .years-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; line-height: 1;
  }
  .years-badge .lbl { font-size: 0.52rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

  /* GALLERY */
  #gallery {
    padding: 7rem clamp(1rem, 4vw, 5rem);
    background: var(--navy2);
  }
  .section-header { text-align: center; margin-bottom: 4rem; }
  .section-header h2 { margin-bottom: 0; }

  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }
  .g-item {
    overflow: hidden; position: relative;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    min-height: clamp(150px, 24vh, 260px);
  }
  .g-item:first-child {
    grid-row: 1 / 3;
    aspect-ratio: auto;
    min-height: clamp(260px, 48vh, 520px);
  }
  .g-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
  }
  .g-item:hover img { transform: scale(1.05); }
  .g-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.7), transparent);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end;
    padding: 1.5rem;
  }
  .g-item:hover .g-overlay { opacity: 1; }
  .g-label {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold-light);
  }

  /* WHY US */
  #why {
    padding: 7rem clamp(1rem, 4vw, 5rem);
    background: var(--navy2);
    position: relative; overflow: hidden;
  }
  .why-container {
    max-width: 1100px;
    margin: 3.5rem auto 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
  }
  .why-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.18);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 4px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    padding: clamp(1rem, 3vw, 2.4rem);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .why-frame:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 110, 0.45);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  }

  /* Architectural corner lines */
  .why-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid var(--gold);
    z-index: 5;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .why-corner.top-left { top: 12px; left: 12px; border-right: none; border-bottom: none; }
  .why-corner.top-right { top: 12px; right: 12px; border-left: none; border-bottom: none; }
  .why-corner.bottom-left { bottom: 12px; left: 12px; border-right: none; border-top: none; }
  .why-corner.bottom-right { bottom: 12px; right: 12px; border-left: none; border-top: none; }

  .why-frame:hover .why-corner {
    width: 20px;
    height: 20px;
    border-color: var(--gold-light);
  }

  .why-image {
    width: 100%;
    height: auto;
    max-height: min(72vh, 720px);
    object-fit: contain;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  .why-frame:hover .why-image {
    transform: scale(1.015);
  }
  .why-card {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(201,169,110,0.1);
    position: relative; overflow: hidden;
    transition: background 0.4s;
  }
  .why-card:last-child { border-right: none; }
  .why-card:hover { background: rgba(201,169,110,0.04); }
  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 300;
    color: rgba(201,169,110,0.15);
    line-height: 1; margin-bottom: 1.5rem;
    transition: color 0.4s;
  }
  .why-card:hover .why-num { color: rgba(201,169,110,0.3); }
  .why-title {
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 1rem;
  }
  .why-desc {
    font-size: 0.83rem; font-weight: 300;
    line-height: 1.8; color: rgba(248,245,239,0.75);
  }
  .why-icon { font-size: 1.5rem; margin-bottom: 1rem; }

  /* CONTACT */
  #contact {
    padding: 9rem clamp(1rem, 4vw, 5rem);
    background: var(--navy2);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: start;
    position: relative;
  }
  .contact-tagline {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .contact-tagline em { font-style: italic; color: var(--gold-light); }
  .contact-sub {
    font-size: 0.83rem; font-weight: 300;
    line-height: 1.8; color: rgba(248,245,239,0.78);
    margin-bottom: 3rem;
  }
  .contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
  .cdetail {
    display: flex; align-items: center; gap: 1.2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201,169,110,0.1);
  }
  .cdetail:last-child { border-bottom: none; }
  .cdetail-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.22);
    background: rgba(201,169,110,0.03);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; flex-shrink: 0;
    color: var(--gold);
    transition: all 0.35s ease;
  }
  .cdetail:hover .cdetail-icon {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 0 15px rgba(201,169,110,0.3);
  }
  .cdetail-label { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(248,245,239,0.72); margin-bottom: 0.2rem; }
  .cdetail-val { font-size: 0.87rem; color: var(--white); font-weight: 400; }
  .cdetail-val a { color: var(--white); text-decoration: none; }
  .cdetail-val a:hover { color: var(--gold); }

  /* Redesigned Map block */
  .map-container {
    width: 100%;
    max-width: 100%;
    margin-top: 2.2rem;
    overflow: hidden;
    border-radius: 0.5rem;
  }
  .map-frame {
    position: relative;
    width: 100%;
    border: 1px solid rgba(201,169,110,0.18);
    box-shadow: 0 15px 35px rgba(0,0,0,0.45);
    background: var(--navy);
    border-radius: 4px;
    padding: 6px;
    overflow: hidden;
    transition: border-color 0.4s ease;
  }
  .map-frame:hover {
    border-color: rgba(201,169,110,0.45);
  }
  .map-frame iframe {
    width: 100% !important;
    height: auto !important;
    min-height: 300px;
    aspect-ratio: 4 / 3;
    display: block;
    border-radius: 2px;
    filter: grayscale(0.9) invert(0.92) contrast(1.1) opacity(0.85);
    transition: filter 0.5s ease, opacity 0.5s ease;
  }
  .map-frame:hover iframe {
    filter: grayscale(0) invert(0) contrast(1) opacity(1);
  }
  
  /* Map corner brackets */
  .map-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--gold);
    z-index: 5;
    pointer-events: none;
    transition: all 0.4s ease;
  }
  .map-corner.top-left { top: 12px; left: 12px; border-right: none; border-bottom: none; }
  .map-corner.top-right { top: 12px; right: 12px; border-left: none; border-bottom: none; }
  .map-corner.bottom-left { bottom: 12px; left: 12px; border-right: none; border-top: none; }
  .map-corner.bottom-right { bottom: 12px; right: 12px; border-left: none; border-top: none; }
  .map-frame:hover .map-corner {
    width: 14px;
    height: 14px;
    border-color: var(--gold-light);
  }

  /* Sleek luxury Form Card */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(201,169,110,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 2.5rem;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
  }
  .contact-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
  }

  .form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .form-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
  }

  .contact-form input,
  .contact-form select {
    width: 100%;
    background: rgba(10, 22, 40, 0.45);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 4px;
    padding: 0.85rem 1.1rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
  }
  .contact-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a96e'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
  }
  .contact-form select option {
    background: var(--navy);
    color: var(--white);
  }

  .contact-form input:focus,
  .contact-form select:focus {
    border-color: var(--gold);
    box-shadow:
      0 0 12px rgba(201,169,110,0.18),
      inset 0 2px 4px rgba(0,0,0,0.15);
    background: rgba(10, 22, 40, 0.7);
  }
  .contact-form input::placeholder {
    color: rgba(248,245,239,0.22);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .submit-btn {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 1.1rem 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    border: none; border-radius: 4px;
    cursor: pointer; align-self: flex-start;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(201,169,110,0.3);
    transition: all 0.3s ease;
  }
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,169,110,0.5);
    filter: brightness(1.08);
  }
  .submit-btn:active {
    transform: translateY(0);
  }

  /* SHARE */
  .share-bar {
    background: var(--navy);
    padding: 2.5rem clamp(1rem, 4vw, 5rem);
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(201,169,110,0.15);
    flex-wrap: wrap;
  }
  .share-label {
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-right: 0.5rem;
  }
  .share-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(201,169,110,0.25);
    background: transparent;
    color: rgba(248,245,239,0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer; text-decoration: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  .share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,110,0.06);
  }
  .share-btn svg { width: 15px; height: 15px; fill: currentColor; }
  .share-native {
    background: var(--gold); color: var(--navy);
    border-color: var(--gold);
    font-weight: 700;
  }
  .share-native:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }
  .share-copied {
    font-size: 0.68rem; color: var(--gold);
    letter-spacing: 2px; opacity: 0;
    transition: opacity 0.3s;
  }
  .share-copied.show { opacity: 1; }

  /* FOOTER */
  footer {
    background: #060d1a;
    padding: 3rem clamp(1rem, 4vw, 5rem);
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(201,169,110,0.15);
  }
  .footer-logo-link { display: inline-flex; }
  .footer-logo-img {
    height: 52px;
    width: auto;
    filter:
      brightness(0)
      invert(1)
      sepia(1)
      saturate(3)
      hue-rotate(5deg)
      brightness(1);
    opacity: 0.95;
    transition: opacity 0.3s, transform 0.3s;
  }

  .footer-logo-link:hover .footer-logo-img {
    opacity: 1;
    transform: scale(1.04);
  }
  footer p { font-size: 0.7rem; color: rgba(248,245,239,0.45); letter-spacing: 1px; }
  footer p span { color: var(--gold); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(248,245,239,0.4); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold); }

  /* DIVIDER */
  .gold-divider {
    display: flex; align-items: center; gap: 1rem;
    justify-content: center; margin-bottom: 1rem;
  }
  .gold-divider .dl { width: 60px; height: 1px; background: rgba(201,169,110,0.3); }
  .gold-divider .diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* REVEAL ON SCROLL */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .js .reveal {
    opacity: 0;
    transform: translateY(30px);
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }

  @media (hover: none) {
    .g-item:hover img { transform: none; }
    .g-item:hover .g-overlay { opacity: 0; }
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    nav { padding: 0.85rem 1.5rem; }
    nav.scrolled { padding: 0.7rem 1.5rem; }
    #about, #contact { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 4rem; }
    #gallery, #why { padding: 5rem 1.5rem; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.1); }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .g-item:first-child {
      grid-column: 1 / 3;
      grid-row: auto;
      aspect-ratio: 16 / 9;
      min-height: clamp(220px, 42vh, 440px);
    }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.active {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: rgba(10,22,40,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 1.2rem 0;
      text-align: center;
      max-height: calc(100vh - 60px);
      overflow-y: auto;
      z-index: 210;
      border-bottom: 1px solid rgba(201,169,110,0.2);
    }
    .nav-links li { margin: 0.4rem 0; }
    .nav-links .nav-cta { margin-top: 0.8rem; }
    /* Mobile: keep icon, hide text name */
    .nav-brand-name { display: none; }
    .nav-logo-img { height: 38px; }
    #about::before { display: none; }
    .img-accent { display: none; }
    .years-badge { left: 1rem; }
    .about-img-stack {
      padding: 0 0 1.5rem 0;
    }
  }

  @media (max-width: 768px) {
    .about-content {
      grid-template-columns: 1fr;
    }
    .about-features {
      grid-template-columns: 1fr;
      gap: 0.9rem;
    }
    .about-img-stack {
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .years-badge {
      position: static;
      width: 64px;
      height: 64px;
      margin: 0;
    }
    .img-main {
      aspect-ratio: 4 / 3;
    }
    .gallery-grid {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .g-item,
    .g-item:first-child {
      display: block;
      margin: 0;
      min-height: unset;
      aspect-ratio: auto;
      grid-column: auto;
      grid-row: auto;
    }
    .g-item img {
      width: 100%;
      height: auto;
      object-fit: initial;
      display: block;
      background: transparent;
    }
    .why-grid {
      grid-template-columns: 1fr;
      margin-top: 2rem;
      padding: 0.5rem;
    }
    .why-image {
      max-height: none;
    }
    .contact-form {
      max-width: 100%;
    }
    .form-row {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    .submit-btn {
      width: 100%;
      text-align: center;
    }
    .share-bar {
      justify-content: stretch;
      gap: 0.75rem;
      padding: 1.25rem 1rem;
    }
    .share-label {
      width: 100%;
      text-align: center;
      margin-right: 0;
      margin-bottom: 0.25rem;
    }
    .share-btn {
      flex: 1 1 calc(50% - 0.5rem);
      justify-content: center;
      min-width: 140px;
      padding: 0.7rem 0.9rem;
    }
    .cdetail {
      gap: 0.8rem;
      align-items: flex-start;
    }
    .map-container iframe {
      min-height: 240px;
    }
  }

  @media (max-width: 480px) {
    #hero .hero-title {
      font-size: 2rem;
    }
    #hero .hero-sub {
      font-size: 1rem;
    }
    .hero-content {
      padding: 0 1.5rem 3rem;
    }
    .hero-actions {
      gap: 0.75rem;
    }
    nav { padding: 0.8rem 0.75rem; }
    nav.scrolled { padding: 0.7rem 0.75rem; }
    .nav-logo img { height: 42px; }
    #about, #gallery, #why, #contact {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    .gold-line span {
      letter-spacing: 2px;
      font-size: 0.58rem;
    }
    h2 {
      font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .hero-stats {
      margin: 0 1rem 1.25rem;
    }
    .share-btn {
      flex: 1 1 100%;
      min-width: 100%;
    }
    .footer-links {
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .why-grid {
      padding: 0.35rem;
    }
    .map-container iframe {
      min-height: 220px;
    }
  }

  @media (max-height: 760px) {
    #hero {
      min-height: 620px;
    }
    .hero-content {
      padding-bottom: 3.25rem;
    }
    .hero-stats {
      bottom: 3rem;
      gap: 0.8rem;
    }
    .scroll-indicator {
      bottom: 1rem;
    }
  }

.form-message {
  display: none;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}
.reveal.delay-2 {
  transition-delay: 0.2s;
}
      .form-message.success {
        background: rgba(100, 200, 100, 0.2);
        border: 1px solid #64c864;
        color: #a8e6a8;
      }
      .form-message.error {
        background: rgba(255, 100, 100, 0.2);
        border: 1px solid #ff6464;
        color: #ff9999;
      }
      @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
      }
      .submit-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
      }

/* ═══════════════════════════════════════════════════════════
   SCROLLY SECTION — scroll-linked image sequence
═══════════════════════════════════════════════════════════ */
#scrolly {
  position: relative;
  height: 500vh;          /* 5× viewport = scroll travel distance */
  background: var(--navy);
}
#scrolly::after { display: none; }   /* suppress section divider here */

.scrolly-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ── Canvas ── */
#scrolly-canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

/* ── Loader overlay ── */
#scrolly-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  z-index: 20;
  transition: opacity 0.6s ease;
  gap: 1.6rem;
}
#scrolly-loader.hidden { opacity: 0; pointer-events: none; }

.scrolly-loader-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.scrolly-loader-track {
  width: min(320px, 60vw);
  height: 1px;
  background: rgba(201,169,110,0.15);
  position: relative;
}
#scrolly-load-bar {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%;
  transition: width 0.15s linear;
  box-shadow: 0 0 12px rgba(201,169,110,0.6);
}

/* ── Progress line ── */
#scrolly-progress-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(201,169,110,0.1);
  z-index: 15;
}
#scrolly-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 8px rgba(201,169,110,0.5);
  transition: width 0.05s linear;
}

/* ── Overlays shared ── */
.scrolly-overlay {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  will-change: opacity, transform;
  transition: none;           /* driven by JS, no CSS delay */
  max-width: min(560px, 88vw);
  padding: 0 clamp(1rem, 5vw, 5rem);
}

/* A — centre */
#scrolly-overlay-a {
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: min(680px, 90vw);
  pointer-events: all;
}
/* B — left */
#scrolly-overlay-b {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: left;
}
/* C — right */
#scrolly-overlay-c {
  top: 50%;
  right: 0; left: auto;
  transform: translateY(-50%);
  text-align: right;
}

.scrolly-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  justify-content: inherit;    /* inherit from parent text-align */
}
.scrolly-eyebrow .line {
  flex: none;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.scrolly-eyebrow span {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.scrolly-headline {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
  letter-spacing: -0.5px;
}
.scrolly-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.scrolly-sub {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.8;
  color: rgba(248,245,239,0.72);
  text-shadow: 0 1px 20px rgba(0,0,0,0.9);
}

/* Frame counter */
#scrolly-frame-counter {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1rem, 4vw, 5rem);
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201,169,110,0.45);
  z-index: 12;
  font-family: 'Montserrat', monospace;
}

/* ── Scroll hint ── */
.scrolly-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.3s;
}
.scrolly-hint.gone { opacity: 0; }
.scrolly-hint span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(248,245,239,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.scrolly-hint-arrow {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.95), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   PROJECTS GRID  — glassmorphism cards
═══════════════════════════════════════════════════════════ */
#projects {
  padding: 9rem clamp(1rem, 4vw, 5rem);
  background: var(--navy);
  position: relative;
}
#projects::before {
  content: 'PORTFOLIO';
  position: absolute;
  left: 50%; top: 3.5rem;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 300;
  color: rgba(201, 169, 110, 0.025);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.8rem;
  z-index: 0;
}

.projects-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── Glassmorphism card ── */
.proj-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,169,110,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Luxury pseudo corners for project cards on hover */
.proj-card::before, .proj-card::after {
  content: '';
  position: absolute;
  width: 0; height: 0;
  border: 1.5px solid transparent;
  z-index: 10;
  pointer-events: none;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.proj-card::before { top: 12px; left: 12px; }
.proj-card::after { bottom: 12px; right: 12px; }

.proj-card:hover::before {
  width: 14px; height: 14px;
  border-top-color: var(--gold-light);
  border-left-color: var(--gold-light);
}
.proj-card:hover::after {
  width: 14px; height: 14px;
  border-bottom-color: var(--gold-light);
  border-right-color: var(--gold-light);
}

.proj-card:hover {
  border-color: rgba(201,169,110,0.4);
  box-shadow:
    0 0 0 1px rgba(201,169,110,0.1),
    0 25px 55px rgba(0,0,0,0.6),
    inset 0 0 40px rgba(201,169,110,0.03);
  transform: translateY(-8px);
}

/* Featured card spans 2 cols */
.proj-card.featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.proj-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.proj-card:hover .proj-card-img {
  transform: scale(1.045);
}

.proj-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    185deg,
    transparent 15%,
    rgba(10,22,40,0.25) 50%,
    rgba(10,22,40,0.9) 100%
  );
  z-index: 1;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}
.proj-card:hover .proj-card-gradient {
  opacity: 1;
}


.proj-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    circle at 50% 110%,
    rgba(201,169,110,0.15),
    transparent 70%
  );
  z-index: 1;
}
.proj-card:hover .proj-card-glow { opacity: 1; }

.proj-card-body {
  position: relative;
  z-index: 2;
  padding: 1.8rem 2rem;
  border-top: 1px solid rgba(201,169,110,0.15);
  background: rgba(10,22,40,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.4s ease, background 0.4s ease;
}
.proj-card:hover .proj-card-body {
  border-top-color: rgba(201,169,110,0.35);
  background: rgba(10,22,40,0.8);
}

.proj-tag {
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.proj-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.proj-card:hover .proj-tag {
  border-color: var(--gold);
  background: rgba(201,169,110,0.18);
}

.proj-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.proj-desc {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248,245,239,0.62);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.proj-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}
.proj-arrow::after {
  content: '→';
  transition: transform 0.3s;
}
.proj-card:hover .proj-arrow { gap: 0.8rem; }
.proj-card:hover .proj-arrow::after { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proj-card.featured {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .proj-card.featured {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
  .proj-card { aspect-ratio: 4 / 3; }

  #scrolly-overlay-b,
  #scrolly-overlay-c {
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 1.2rem;
  }
  #scrolly-overlay-c {
    transform: translateY(-50%);
  }
  .scrolly-eyebrow { justify-content: center; }

  .scrolly-stats {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .scrolly-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .btn-gold, .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* ─── GLOBAL SPLASH LOADER CSS ─────────────────────── */
#splash-loader {
  position: fixed;
  inset: 0;
  background: #0a1628;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10vh 2rem 6vh 2rem;
  color: var(--white);
  overflow: hidden;
}

.splash-brand-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

.splash-logo-container {
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(30px);
  filter: drop-shadow(0 0 35px rgba(201,169,110,0.18));
}

.splash-logo-img {
  height: 110px;
  width: auto;
  display: block;
  filter:
    brightness(0)
    invert(1)
    sepia(1)
    saturate(3)
    hue-rotate(5deg)
    brightness(1.05);
}

.splash-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 11px;
  text-transform: uppercase;
  color: rgba(248,245,239,0.95);
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(20px);
  text-indent: 11px; /* visual balancing for letter-spacing */
}

.splash-brand-name span {
  font-weight: 700;
  color: var(--gold);
}

.splash-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(15px);
  text-indent: 6px;
}

.splash-footer-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-top: auto;
}

.splash-counter-wrap {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
}

.splash-percent {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  margin-left: 2px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: normal;
}

.splash-track {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.0rem;
  opacity: 0;
}

.splash-bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--gold);
}

.splash-status {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  opacity: 0;
  text-indent: 5px;
}
