
    :root {
      --black:     #1A1A1A;
      --black-soft:#212121;
      --gold:      #B08A4E;
      --gold-lt:   #C9A86C;
      --gold-dk:   #8A6A38;
      --cream:     #E7E0D4;
      --cream-lt:  #EDE8DF;
      --off-white: #F7F5F2;
      --gray:      #6B6B6B;
      --gray-lt:   #9A9A9A;
      --white:     #FFFFFF;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'Montserrat', sans-serif; background: var(--off-white); color: var(--black); line-height: 1.7; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ::selection { background: var(--gold); color: var(--white); }

    /* ─── UTILS ─── */
    .container { max-width: 1240px; margin: 0 auto; padding: 0 2.5rem; }
    .tag {
      display: inline-flex; align-items: center; gap: 0.8rem;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gold);
    }
    .tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
    .section-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      font-weight: 700; line-height: 1.1; color: var(--black);
    }
    .section-heading em { font-style: normal; color: var(--gold); }
    .section-heading--light { color: var(--white); }
    .rule { width: 52px; height: 2px; background: var(--gold); margin: 1.4rem 0 2rem; }
    .rule--center { margin-left: auto; margin-right: auto; }

    .btn {
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; padding: 0.9rem 2rem;
      border: 1.5px solid currentColor; cursor: pointer;
      transition: all 0.32s ease; white-space: nowrap; background: transparent;
    }
    .btn-gold { color: var(--gold); border-color: var(--gold); }
    .btn-gold:hover { background: var(--gold); color: var(--white); }
    .btn-fill { background: var(--gold); color: var(--white); border-color: var(--gold); }
    .btn-fill:hover { background: transparent; color: var(--gold); }
    .btn-white { color: var(--white); border-color: var(--white); }
    .btn-white:hover { background: var(--white); color: var(--black); }
    .btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; transition: transform 0.3s; }
    .btn:hover svg { transform: translateX(3px); }

    /* ─── CURSOR DOT ─── */
    .cursor-dot {
      width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
      position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%); transition: transform 0.08s, opacity 0.3s;
    }

    /* ─── NAVBAR ─── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      padding: 0 2.5rem; height: 88px; overflow: hidden;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
    }
    #nav.solid {
      background: rgba(247,245,242,0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(176,138,78,0.15);
    }
    .nav-logo {
      display: flex; flex-direction: column; line-height: 1;
      font-family: 'Playfair Display', serif;
    }
    .nav-logo .wordmark { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.02em; }
    .nav-logo .wordmark span { color: var(--gold); }
    .nav-logo .sub {
      font-family: 'Montserrat', sans-serif; font-size: 0.48rem;
      font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase;
      color: var(--gold); margin-top: 2px;
    }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
    .nav-links a {
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--black);
      position: relative; padding-bottom: 2px; transition: color 0.25s;
    }
    .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 { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-book {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; padding: 0.6rem 1.4rem;
      background: var(--gold); color: var(--white);
      border: 1.5px solid var(--gold); transition: all 0.3s;
    }
    .nav-book:hover { background: transparent; color: var(--gold); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { width: 22px; height: 1.5px; background: var(--black); display: block; transition: 0.35s; }

    /* ─── MOBILE MENU ─── */
    .mobile-nav {
      position: fixed; inset: 0; z-index: 950;
      background: var(--off-white); display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 0;
      transform: translateX(100%); transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
      overflow-y: auto; -webkit-overflow-scrolling: touch;
    }
    .mobile-nav.open { transform: translateX(0); }
    .mobile-nav a {
      font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 6vw, 2.4rem); font-weight: 700;
      color: var(--black); padding: 0.8rem 2rem; display: block;
      transition: color 0.25s; border-bottom: 1px solid var(--cream);
      width: 100%; text-align: center; -webkit-tap-highlight-color: transparent;
    }
    .mobile-nav a:hover, .mobile-nav a:active { color: var(--gold); }
    .mobile-nav .close-btn {
      position: absolute; top: 1.5rem; right: 1.5rem;
      font-size: 1.8rem; cursor: pointer; color: var(--black);
      font-family: 'Montserrat', sans-serif; font-weight: 300;
      padding: 0.5rem; -webkit-tap-highlight-color: transparent;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh; position: relative; overflow: hidden;
      display: flex; align-items: center; padding-top: 76px;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--off-white) 0%, var(--cream-lt) 55%, var(--cream) 100%);
    }
    .hero-bg-panel {
      position: absolute; right: 0; top: 0; bottom: 0; width: 46%;
      background: var(--cream); clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    }
    .hero-grid-lines {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(176,138,78,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176,138,78,0.04) 1px, transparent 1px);
      background-size: 80px 80px;
    }
    .hero-inner {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
      width: 100%;
    }
    .hero-text {}
    .hero-eyebrow {
      display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--gold);
    }
    .hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
    .hero-name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.5rem, 7vw, 6.5rem);
      font-weight: 700; line-height: 0.95; margin-bottom: 0.8rem;
    }
    .hero-name .nel { color: var(--black); display: block; }
    .hero-name .guru { color: var(--gold); display: block; }
    .hero-studio-line {
      font-size: clamp(0.7rem, 1.2vw, 0.85rem); font-weight: 400;
      letter-spacing: 0.65em; text-transform: uppercase; color: var(--gray);
      margin-bottom: 0.6rem;
    }
    .hero-services-line {
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem;
      display: flex; align-items: center; gap: 1rem;
    }
    .hero-services-line span { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; display: inline-block; }
    .hero-tagline {
      font-family: 'Playfair Display', serif; font-style: italic;
      font-size: clamp(1rem, 1.8vw, 1.25rem); color: var(--gray);
      margin-bottom: 3rem; line-height: 1.6;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-stats {
      display: flex; gap: 2.5rem; margin-top: 3.5rem;
      padding-top: 2.5rem; border-top: 1px solid var(--cream);
    }
    .hero-stat .num {
      font-family: 'Playfair Display', serif; font-size: 2rem;
      font-weight: 700; color: var(--gold); line-height: 1;
    }
    .hero-stat .lbl {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gray-lt); margin-top: 0.3rem;
    }
    .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
    .hero-card {
      background: var(--white); width: 100%; max-width: 420px;
      aspect-ratio: 3/4; position: relative; overflow: hidden;
      box-shadow: 40px 40px 0 var(--cream-lt), 0 40px 80px rgba(0,0,0,0.12);
    }
    .hero-card-inner {
      width: 100%; height: 100%;
      background: linear-gradient(160deg, #1a1a1a 0%, #2e2318 60%, #3d2e18 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 1.2rem;
    }
    .hero-monogram-large {
      font-family: 'Playfair Display', serif; font-size: 9rem; font-weight: 700;
      color: rgba(176,138,78,0.18); line-height: 1; user-select: none;
    }
    .hero-card-label {
      font-size: 0.6rem; font-weight: 600; letter-spacing: 0.4em;
      text-transform: uppercase; color: rgba(176,138,78,0.6);
    }
    .hero-award {
      position: absolute; top: 2rem; right: -1rem;
      background: var(--gold); color: var(--white);
      padding: 1rem; min-width: 90px; text-align: center;
    }
    .hero-award .award-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; line-height: 1; }
    .hero-award .award-lbl { font-size: 0.5rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px; }
    .hero-badge {
      position: absolute; bottom: 2rem; left: -1.5rem;
      background: var(--black); color: var(--white);
      padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1rem;
    }
    .hero-badge svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; flex-shrink: 0; }
    .hero-badge .badge-text .t1 { font-size: 0.6rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
    .hero-badge .badge-text .t2 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--white); }
    .scroll-cue {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      font-size: 0.58rem; font-weight: 600; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gray-lt);
    }
    .scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--gold), transparent); animation: pulse 2.2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{opacity:1;height:44px} 50%{opacity:0.4;height:24px} }

    /* ─── NUMBERS STRIP ─── */
    .numbers-strip {
      background: var(--black); padding: 3.5rem 0;
    }
    .numbers-strip .inner {
      display: flex; align-items: center; justify-content: space-around;
      flex-wrap: wrap; gap: 2rem;
    }
    .strip-item { text-align: center; }
    .strip-num {
      font-family: 'Playfair Display', serif; font-size: 2.8rem;
      font-weight: 700; color: var(--gold); line-height: 1;
    }
    .strip-lbl {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: rgba(247,245,242,0.45); margin-top: 0.4rem;
    }
    .strip-div { width: 1px; height: 50px; background: rgba(176,138,78,0.25); }

    /* ─── ABOUT ─── */
    #about { padding: 9rem 0; background: var(--off-white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
    .about-left { position: relative; }
    .about-portrait {
      width: 100%; aspect-ratio: 3/4;
      background: linear-gradient(150deg, var(--cream) 0%, var(--cream-lt) 100%);
      position: relative; overflow: hidden;
    }
    .about-portrait-inner {
      width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 0.5rem;
    }
    .about-monogram {
      font-family: 'Playfair Display', serif; font-size: 8rem; font-weight: 700;
      color: rgba(176,138,78,0.22); line-height: 1;
    }
    .about-since {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--gold);
    }
    .about-portrait::before {
      content: ''; position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
      border: 1.5px solid rgba(176,138,78,0.4); pointer-events: none; z-index: 1;
    }
    .about-float-card {
      position: absolute; bottom: -2rem; right: -2rem;
      background: var(--black); padding: 1.8rem; min-width: 150px; z-index: 2;
    }
    .about-float-card .fc-num {
      font-family: 'Playfair Display', serif; font-size: 3rem;
      font-weight: 700; color: var(--gold); line-height: 1;
    }
    .about-float-card .fc-lbl {
      font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(247,245,242,0.55); margin-top: 0.3rem;
    }
    .about-right .tag { margin-bottom: 1.2rem; }
    .about-right p { font-size: 0.93rem; color: var(--gray); line-height: 1.95; margin-bottom: 1.4rem; }
    .about-pillars {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.5rem 0 3rem;
    }
    .pillar {
      display: flex; align-items: flex-start; gap: 0.8rem;
      padding: 1rem; border: 1px solid var(--cream); transition: border-color 0.3s;
    }
    .pillar:hover { border-color: var(--gold); }
    .pillar-icon {
      width: 36px; height: 36px; background: var(--cream); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .pillar-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .pillar-body .pl-title { font-size: 0.75rem; font-weight: 700; color: var(--black); margin-bottom: 0.1rem; }
    .pillar-body .pl-desc { font-size: 0.7rem; color: var(--gray-lt); line-height: 1.5; }

    /* ─── SERVICES ─── */
    #services { padding: 9rem 0; background: var(--black); }
    .services-intro {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
      align-items: end; margin-bottom: 5rem;
    }
    .services-intro p { font-size: 0.92rem; color: var(--gray); line-height: 1.9; }
    .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(176,138,78,0.12); }
    .srv-card {
      background: #1c1c1c; padding: 3rem 2rem; position: relative; overflow: hidden;
      transition: background 0.35s;
    }
    .srv-card:hover { background: #222; }
    .srv-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: var(--gold); transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .srv-card:hover::after { transform: scaleX(1); }
    .srv-num {
      font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700;
      color: rgba(176,138,78,0.08); line-height: 1; margin-bottom: 2rem;
      user-select: none;
    }
    .srv-icon {
      width: 52px; height: 52px; border: 1.5px solid rgba(176,138,78,0.4);
      display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
      transition: border-color 0.3s, background 0.3s;
    }
    .srv-card:hover .srv-icon { border-color: var(--gold); background: rgba(176,138,78,0.1); }
    .srv-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .srv-title {
      font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
      color: var(--white); margin-bottom: 1rem;
    }
    .srv-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.85; margin-bottom: 2rem; }
    .srv-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
    .srv-list li {
      font-size: 0.76rem; color: rgba(231,224,212,0.6);
      display: flex; align-items: center; gap: 0.6rem;
    }
    .srv-list li::before { content: ''; width: 14px; height: 1px; background: var(--gold); opacity: 0.6; flex-shrink: 0; }

    /* ─── PACKAGES ─── */
    #packages { padding: 9rem 0; background: var(--cream); }
    .pkg-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; }
    .pkg-header p { font-size: 0.92rem; color: var(--gray); line-height: 1.9; }
    .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
    .pkg-card {
      padding: 3.5rem 2.5rem; background: var(--off-white);
      border-right: 1px solid var(--cream); position: relative;
      transition: transform 0.35s, box-shadow 0.35s;
    }
    .pkg-card:last-child { border-right: 0; }
    .pkg-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(0,0,0,0.1); z-index: 2; }
    .pkg-card.featured {
      background: var(--black); border-color: transparent;
      transform: translateY(-12px);
      box-shadow: 0 40px 80px rgba(0,0,0,0.18);
    }
    .pkg-card.featured:hover { transform: translateY(-18px); }
    .pkg-ribbon {
      position: absolute; top: 0; right: 2rem;
      background: var(--gold); color: var(--white);
      font-size: 0.55rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; padding: 0.4rem 0.9rem;
    }
    .pkg-tier { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
    .pkg-name {
      font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
      margin-bottom: 2rem; color: var(--black);
    }
    .featured .pkg-name { color: var(--white); }
    .pkg-price-row { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.4rem; }
    .pkg-currency { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
    .pkg-amount {
      font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700;
      color: var(--gold); line-height: 1;
    }
    .pkg-per { font-size: 0.72rem; color: var(--gray); }
    .pkg-note { font-size: 0.72rem; color: var(--gray); margin-bottom: 2.5rem; }
    .featured .pkg-note { color: rgba(231,224,212,0.5); }
    .pkg-hr { height: 1px; background: var(--cream); margin-bottom: 2rem; }
    .featured .pkg-hr { background: rgba(176,138,78,0.2); }
    .pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 3rem; }
    .pkg-features li { font-size: 0.82rem; color: var(--gray); display: flex; align-items: center; gap: 0.8rem; }
    .featured .pkg-features li { color: rgba(231,224,212,0.75); }
    .pkg-features li .chk {
      width: 18px; height: 18px; border: 1px solid var(--gold); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.6rem; color: var(--gold);
    }
    .pkg-cta {
      width: 100%; padding: 1rem; background: transparent;
      font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer;
      border: 1.5px solid var(--gold); color: var(--gold); transition: all 0.3s;
    }
    .pkg-cta:hover { background: var(--gold); color: var(--white); }
    .featured .pkg-cta { background: var(--gold); color: var(--white); }
    .featured .pkg-cta:hover { background: transparent; }

    /* ─── GALLERY PREVIEW ─── */
    #gallery-preview { padding: 9rem 0; background: var(--off-white); }
    .gallery-preview-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem;
    }
    .gallery-mosaic {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(3, 200px);
      gap: 10px;
    }
    .gm-item {
      overflow: hidden; position: relative; cursor: pointer;
    }
    .gm-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
    .gm-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
    .gm-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
    .gm-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
    .gm-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
    .gm-item:nth-child(6) { grid-column: span 4; grid-row: span 1; }
    .gm-item:nth-child(7) { grid-column: span 3; grid-row: span 1; }
    .gm-item:nth-child(8) { grid-column: span 5; grid-row: span 1; }
    .gm-cell {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif; font-style: italic;
      font-size: 1rem; color: rgba(255,255,255,0.35);
      transition: transform 0.55s ease;
    }
    .gm-item:hover .gm-cell { transform: scale(1.06); }
    .gm-hover {
      position: absolute; inset: 0; background: rgba(26,26,26,0);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.35s;
    }
    .gm-item:hover .gm-hover { background: rgba(26,26,26,0.45); }
    .gm-hover-icon {
      width: 48px; height: 48px; border: 1.5px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: scale(0.7); transition: all 0.3s;
    }
    .gm-item:hover .gm-hover-icon { opacity: 1; transform: scale(1); }
    .gm-hover-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; }
    .gm-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1rem; background: linear-gradient(transparent, rgba(0,0,0,0.7));
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(255,255,255,0.7);
      transform: translateY(100%); transition: transform 0.3s;
    }
    .gm-item:hover .gm-label { transform: translateY(0); }
    .gallery-cta { text-align: center; margin-top: 3.5rem; }

    /* Gallery cell colors */
    .gm-c1 { background: linear-gradient(150deg,#1e170e,#2d2010); }
    .gm-c2 { background: linear-gradient(150deg,#141414,#1e1e1e); }
    .gm-c3 { background: linear-gradient(150deg,#1a1006,#281a08); }
    .gm-c4 { background: linear-gradient(150deg,#181818,#242424); }
    .gm-c5 { background: linear-gradient(150deg,#1f1508,#2e1f0c); }
    .gm-c6 { background: linear-gradient(150deg,#131313,#1c1c1c); }
    .gm-c7 { background: linear-gradient(150deg,#1a1208,#261a0a); }
    .gm-c8 { background: linear-gradient(150deg,#1c1008,#2a180a); }

    /* ─── PROCESS ─── */
    #process { padding: 9rem 0; background: var(--black); }
    .process-header { text-align: center; margin-bottom: 6rem; }
    .process-header .tag { justify-content: center; margin-bottom: 1.2rem; }
    .process-header .tag::before { display: none; }
    .process-timeline {
      display: grid; grid-template-columns: repeat(5, 1fr); position: relative;
    }
    .process-timeline::before {
      content: ''; position: absolute;
      top: 36px; left: 10%; right: 10%; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0.3;
    }
    .pt-step { padding: 0 1rem; text-align: center; }
    .pt-dot {
      width: 72px; height: 72px; border: 1.5px solid rgba(176,138,78,0.5);
      background: var(--black); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem;
      font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold);
      position: relative; z-index: 1; transition: border-color 0.3s, background 0.3s;
    }
    .pt-step:hover .pt-dot { border-color: var(--gold); background: rgba(176,138,78,0.08); }
    .pt-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); margin-bottom: 0.7rem; }
    .pt-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.8; }

    /* ─── TESTIMONIALS ─── */
    #testimonials { padding: 9rem 0; background: var(--cream); }
    .testi-header { text-align: center; margin-bottom: 5rem; }
    .testi-header .tag { justify-content: center; margin-bottom: 1.2rem; }
    .testi-header .tag::before { display: none; }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .testi-card {
      background: var(--off-white); padding: 2.8rem; position: relative;
      transition: transform 0.35s, box-shadow 0.35s;
    }
    .testi-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
    .testi-quote-mark {
      font-family: 'Playfair Display', serif; font-size: 6rem;
      line-height: 0.7; color: rgba(176,138,78,0.18); margin-bottom: 1.5rem;
    }
    .testi-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.15em; margin-bottom: 1.2rem; }
    .testi-text {
      font-family: 'Playfair Display', serif; font-style: italic;
      font-size: 0.95rem; color: var(--black); line-height: 1.9; margin-bottom: 2.5rem;
    }
    .testi-author { display: flex; align-items: center; gap: 1rem; }
    .testi-avatar {
      width: 46px; height: 46px; border-radius: 50%; background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white);
      flex-shrink: 0;
    }
    .testi-name { font-size: 0.84rem; font-weight: 700; color: var(--black); }
    .testi-event { font-size: 0.7rem; color: var(--gray-lt); letter-spacing: 0.05em; }

    /* ─── CTA BAND ─── */
    .cta-band {
      padding: 7rem 0; background: var(--black); position: relative; overflow: hidden;
    }
    .cta-band-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 60% 50%, rgba(176,138,78,0.1) 0%, transparent 70%);
    }
    .cta-band-inner {
      position: relative; z-index: 2;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 3rem;
    }
    .cta-band-text .tag { margin-bottom: 1.2rem; }
    .cta-band-text h2 {
      font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; color: var(--white); line-height: 1.1;
    }
    .cta-band-text h2 em { font-style: normal; color: var(--gold); }
    .cta-band-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
    .cta-band-tagline {
      font-family: 'Playfair Display', serif; font-style: italic;
      font-size: 0.9rem; color: rgba(247,245,242,0.45);
    }

    /* ─── CONTACT ─── */
    #contact { padding: 9rem 0; background: var(--off-white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: start; }
    .contact-left .tag { margin-bottom: 1.2rem; }
    .contact-left p { font-size: 0.92rem; color: var(--gray); line-height: 1.9; margin-bottom: 3rem; }
    .contact-items { display: flex; flex-direction: column; gap: 2rem; }
    .c-item { display: flex; align-items: flex-start; gap: 1.2rem; }
    .c-icon {
      width: 44px; height: 44px; border: 1px solid rgba(176,138,78,0.4); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; transition: border-color 0.3s;
    }
    .c-item:hover .c-icon { border-color: var(--gold); }
    .c-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .c-lbl { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
    .c-val { font-size: 0.9rem; color: var(--black); line-height: 1.5; }
    /* form */
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .f-group { display: flex; flex-direction: column; gap: 0.45rem; }
    .f-group label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black); }
    .f-group input,
    .f-group select,
    .f-group textarea {
      padding: 0.85rem 1rem; border: 1px solid var(--cream);
      background: var(--white); font-family: 'Montserrat', sans-serif;
      font-size: 0.85rem; color: var(--black); outline: none;
      transition: border-color 0.3s; -webkit-appearance: none; border-radius: 0;
    }
    .f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--gold); }
    .f-group textarea { min-height: 110px; resize: vertical; }
    .f-submit {
      padding: 1rem 2rem; background: var(--black); color: var(--white);
      font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      border: 1.5px solid var(--black); cursor: pointer; transition: all 0.3s;
      align-self: flex-start; -webkit-tap-highlight-color: transparent;
    }
    @media (max-width: 640px) {
      .f-submit { align-self: stretch; text-align: center; }
    }
    .f-submit:hover { background: var(--gold); border-color: var(--gold); }

    /* ─── FOOTER ─── */
    footer { background: var(--black); padding: 5rem 0 2.5rem; }
    .footer-grid {
      display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 3rem; padding-bottom: 4rem;
      border-bottom: 1px solid rgba(176,138,78,0.15); margin-bottom: 2.5rem;
    }
    .f-brand .logo {
      font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700;
      color: var(--white); margin-bottom: 0.25rem;
    }
    .f-brand .logo span { color: var(--gold); }
    .f-brand .tagline {
      font-size: 0.52rem; font-weight: 600; letter-spacing: 0.45em;
      text-transform: uppercase; color: rgba(176,138,78,0.6); margin-bottom: 1.8rem;
    }
    .f-brand p { font-size: 0.82rem; color: rgba(247,245,242,0.4); line-height: 1.9; margin-bottom: 2rem; }
    .socials { display: flex; gap: 0.7rem; }
    .soc {
      width: 38px; height: 38px; border: 1px solid rgba(176,138,78,0.3);
      display: flex; align-items: center; justify-content: center; transition: all 0.3s;
    }
    .soc:hover { border-color: var(--gold); background: var(--gold); }
    .soc svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; transition: stroke 0.3s; }
    .soc:hover svg { stroke: var(--white); }
    .f-col h4 {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 1.8rem;
    }
    .f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
    .f-col ul li a { font-size: 0.82rem; color: rgba(247,245,242,0.4); transition: color 0.3s; }
    .f-col ul li a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    .f-copy { font-size: 0.7rem; color: rgba(247,245,242,0.25); letter-spacing: 0.05em; }
    .f-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.82rem; color: rgba(176,138,78,0.5); }

    /* ─── REVEAL ANIMATION ─── */
    /* Reveal: visible by default — JS adds animation only when ready */
    .reveal { opacity: 1; transform: none; }
    .reveal.js-ready { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.in { opacity: 1 !important; transform: translateY(0) !important; }

    /* ─── RESPONSIVE ─── */

    /* Large desktops (≤1280px) */
    @media (max-width: 1280px) {
      .hero-name { font-size: clamp(3rem, 6vw, 5.5rem); }
      .hero-card { max-width: 360px; }
    }

    /* Laptops / small desktops (≤1100px) */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
      .footer-grid .f-col:last-child { grid-column: span 1; }
    }

    /* Tablets landscape / small laptops (≤960px) */
    @media (max-width: 960px) {
      /* Nav */
      #nav .nav-links, #nav .nav-book { display: none; }
      .hamburger { display: flex; }

      /* Hero */
      .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
      .hero-eyebrow { justify-content: center; }
      .hero-studio-line { text-align: center; }
      .hero-services-line { justify-content: center; }
      .hero-tagline { text-align: center; }
      .hero-actions { justify-content: center; }
      .hero-stats { justify-content: center; padding-top: 2rem; margin-top: 2rem; }
      .hero-visual { display: none; }
      .hero-name { font-size: clamp(3.5rem, 10vw, 5rem); }
      .scroll-cue { display: none; }

      /* Sections */
      #about, #services, #packages, #gallery-preview, #process, #testimonials, #contact { padding: 6rem 0; }

      /* About */
      .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
      .about-left { max-width: 480px; margin: 0 auto; width: 100%; }
      .about-portrait { aspect-ratio: 4/3; }
      .about-float-card { bottom: -1.5rem; right: -1rem; }
      .about-pillars { grid-template-columns: 1fr 1fr; }

      /* Services */
      .services-intro { grid-template-columns: 1fr; gap: 1.5rem; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }

      /* Packages */
      .pkg-header { grid-template-columns: 1fr; gap: 1.5rem; }
      .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .pkg-card.featured { transform: translateY(0); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

      /* Gallery preview */
      .gallery-preview-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .gallery-mosaic {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(4, 180px);
      }
      .gm-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
      .gm-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
      .gm-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
      .gm-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
      .gm-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
      .gm-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
      .gm-item:nth-child(7) { grid-column: span 2; grid-row: span 1; }
      .gm-item:nth-child(8) { grid-column: span 2; grid-row: span 1; }

      /* Process */
      .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
      .process-timeline::before { display: none; }

      /* Testimonials */
      .testi-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }

      /* CTA band */
      .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
      .cta-band-actions { align-items: flex-start; }

      /* Contact */
      .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .footer-grid .f-brand { grid-column: span 2; }
    }

    /* Tablets portrait (≤768px) */
    @media (max-width: 768px) {
      .container { padding: 0 1.8rem; }
      #about, #services, #packages, #gallery-preview, #process, #testimonials, #contact { padding: 5rem 0; }

      /* Numbers strip */
      .numbers-strip .inner { flex-wrap: wrap; justify-content: center; gap: 2rem; }
      .numbers-strip .strip-div { display: none; }
      .strip-item { min-width: 110px; }

      /* Services */
      .services-grid { grid-template-columns: 1fr; }

      /* Process */
      .process-timeline { grid-template-columns: 1fr 1fr; gap: 2rem; }

      /* Testimonials */
      .testi-grid { grid-template-columns: 1fr; }

      /* Gallery mosaic */
      .gallery-mosaic {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 160px);
      }
      .gm-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
      .gm-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
      .gm-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
      .gm-item:nth-child(4) { grid-column: span 2; grid-row: span 1; }
      .gm-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
      .gm-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
      .gm-item:nth-child(7) { grid-column: span 2; grid-row: span 1; display: none; }
      .gm-item:nth-child(8) { display: none; }

      /* Packages */
      .packages-grid { max-width: 100%; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid .f-brand { grid-column: span 2; }
    }

    /* Large phones (≤640px) */
    @media (max-width: 640px) {
      .container { padding: 0 1.2rem; }
      #about, #services, #packages, #gallery-preview, #process, #testimonials, #contact { padding: 4rem 0; }
      .numbers-strip { padding: 2.5rem 0; }

      /* Hero */
      .hero-name { font-size: clamp(3rem, 14vw, 4.5rem); }
      .hero-tagline { font-size: 0.95rem; }
      .hero-actions { flex-direction: column; width: 100%; }
      .hero-actions .btn { width: 100%; justify-content: center; }
      .hero-stats { gap: 1.5rem; }
      .hero-bg-panel { display: none; }

      /* About */
      .about-pillars { grid-template-columns: 1fr; gap: 0.8rem; }
      .about-float-card { position: static; margin-top: 1rem; }
      .about-portrait::before { display: none; }

      /* Process */
      .process-timeline { grid-template-columns: 1fr; gap: 2rem; }
      .pt-dot { width: 56px; height: 56px; font-size: 1.1rem; }

      /* Gallery mosaic */
      .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .gm-item { grid-column: span 1 !important; grid-row: span 1 !important; }
      .gm-cell { height: 150px !important; }
      .gm-item:nth-child(n+7) { display: none; }

      /* Form */
      .f-row { grid-template-columns: 1fr; }
      .f-submit { width: 100%; text-align: center; justify-content: center; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; }
      .footer-grid .f-brand { grid-column: span 1; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }

      /* Packages */
      .pkg-card { padding: 2rem 1.5rem; }
      .packages-grid { border: 1px solid var(--cream); }

      /* Services */
      .srv-card { padding: 2rem 1.5rem; }

      /* CTA band */
      .cta-band { padding: 5rem 0; }
      .cta-band-text h2 { font-size: 1.8rem; }
    }

    /* Small phones (≤480px) */
    @media (max-width: 480px) {
      .container { padding: 0 1rem; }
      #nav { padding: 0 1rem; }
      .nav-logo .wordmark { font-size: 1.1rem; }

      .hero-name { font-size: clamp(2.8rem, 16vw, 4rem); }
      .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.2em; }
      .hero-studio-line { letter-spacing: 0.4em; }
      .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
      .hero-stat .num { font-size: 1.6rem; }

      .strip-num { font-size: 2.2rem; }
      .strip-lbl { font-size: 0.55rem; }

      .about-portrait { aspect-ratio: 1/1; }
      .about-monogram { font-size: 6rem; }

      .section-heading { font-size: clamp(1.8rem, 7vw, 2.4rem); }

      .services-grid { gap: 0; }
      .srv-card { padding: 1.8rem 1.2rem; }
      .srv-num { font-size: 3rem; }

      .testi-card { padding: 2rem 1.2rem; }

      .pkg-amount { font-size: 2.4rem; }

      .contact-items { gap: 1.5rem; }
      .c-icon { width: 38px; height: 38px; flex-shrink: 0; }

      .gm-cell { height: 130px !important; }

      .ph-monogram { font-size: 10rem; }
      footer { padding: 3rem 0 2rem; }
    }

    /* Very small phones (≤360px) */
    @media (max-width: 360px) {
      .hero-name { font-size: 2.6rem; }
      .hero-actions .btn { font-size: 0.6rem; padding: 0.8rem 1.2rem; }
      .btn { font-size: 0.62rem; padding: 0.8rem 1.4rem; }
      .strip-item { min-width: 80px; }
      .about-pillars .pillar { padding: 0.8rem; }
      .footer-grid { gap: 1.5rem; }
    }
  
    /* ─── Hide cursor dot on touch/mobile ─── */
    @media (hover: none), (pointer: coarse) {
      .cursor-dot { display: none !important; }
    }

/* ═══════════════════════════════════════════════
   SMOOTH ANIMATIONS — Enhanced
═══════════════════════════════════════════════ */

/* ── Hero entrance stagger ── */
.hero-eyebrow  { opacity:0; transform:translateY(20px); animation: fadeUp 0.7s ease forwards 0.1s; }
.hero-studio-line { opacity:0; transform:translateY(20px); animation: fadeUp 0.7s ease forwards 0.2s; }
.hero-name     { opacity:0; transform:translateY(30px); animation: fadeUp 0.8s ease forwards 0.3s; }
.hero-services-line { opacity:0; transform:translateY(20px); animation: fadeUp 0.7s ease forwards 0.45s; }
.hero-tagline  { opacity:0; transform:translateY(20px); animation: fadeUp 0.7s ease forwards 0.55s; }
.hero-actions  { opacity:0; transform:translateY(20px); animation: fadeUp 0.7s ease forwards 0.65s; }
.hero-stats    { opacity:0; transform:translateY(20px); animation: fadeUp 0.7s ease forwards 0.8s; }
.hero-visual   { opacity:0; transform:translateX(40px); animation: fadeLeft 0.9s ease forwards 0.4s; }

@keyframes fadeUp {
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeLeft {
  to { opacity:1; transform:translateX(0); }
}

/* ── Floating hero card ── */
.hero-card {
  animation: float 4s ease-in-out infinite;
}
.hero-award {
  animation: float 4s ease-in-out infinite 1s;
}
.hero-badge {
  animation: float 4s ease-in-out infinite 2s;
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}

/* ── Stagger reveal (children) ── */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Section heading underline animation ── */
.section-heading em {
  position: relative;
  display: inline-block;
}
.section-heading em::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.8s ease 0.3s;
}
.reveal.in .section-heading em::after {
  width: 100%;
}

/* ── Service card lift ── */
.srv-card {
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease !important;
}
.srv-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 20px 50px rgba(176,138,78,0.12) !important;
}

/* ── Package card smooth lift ── */
.pkg-card {
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.4s ease !important;
}

/* ── Numbers strip count-up visual ── */
.strip-num {
  display: inline-block;
  transition: transform 0.3s ease;
}
.strip-item:hover .strip-num {
  transform: scale(1.1);
  color: var(--gold);
}

/* ── Scroll cue fade out on scroll ── */
.scroll-cue {
  transition: opacity 0.5s ease;
}
.scroll-cue.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── Pillar cards stagger ── */
.about-pillars .pillar {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in .about-pillars .pillar:nth-child(1) { opacity:1; transform:none; transition-delay:0.2s; }
.reveal.in .about-pillars .pillar:nth-child(2) { opacity:1; transform:none; transition-delay:0.35s; }
.reveal.in .about-pillars .pillar:nth-child(3) { opacity:1; transform:none; transition-delay:0.5s; }

/* ── Process step stagger ── */
.proc-step {
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}
.proc-step:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
}

/* ── Testimonial cards hover ── */
.testi-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}
.testi-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08) !important;
}

/* ── Button ripple feel ── */
.btn, .nav-book, .f-submit {
  position: relative;
  overflow: hidden;
}
.btn::after, .nav-book::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after, .nav-book:hover::after {
  opacity: 1;
}

/* ── Footer link hover ── */
.f-col ul li a {
  position: relative;
  transition: color 0.3s, padding-left 0.3s !important;
}
.f-col ul li a:hover {
  padding-left: 6px !important;
}

/* ── Reduce motion for accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Logo image ── */
.nav-logo { display: flex; align-items: center; overflow: hidden; }
.nav-logo a { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 64px !important;
  width: auto !important;
  max-width: 220px !important;
  max-height: 64px !important;
  object-fit: contain;
  display: block;
}
@media (max-width: 960px) { .nav-logo-img { height: 52px !important; max-height: 52px !important; max-width: 180px !important; } }
@media (max-width: 480px) { .nav-logo-img { height: 42px !important; max-height: 42px !important; max-width: 150px !important; } }
