:root {
    --gold: #8C6535;
    --gold-light: #A97E49;
    --gold-pale: #F0E8DC;
    --dark: #0A0A08;
    --dark-2: #141410;
    --dark-3: #1E1E18;
    --mid: #2C2C24;
    --text: #E8E4D9;
    --text-muted: #9A9480;
    --white: #FAFAF7;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: grid; grid-template-columns: auto 1fr auto;
    align-items: center; gap: 24px;
    padding: 22px 60px;
    background: linear-gradient(to bottom, rgba(10,10,8,.95) 0%, transparent 100%);
    transition: background .4s;
  }
  nav.scrolled { background: rgba(10,10,8,.97); backdrop-filter: blur(12px); }

  .nav-logo-img {
    display: flex; align-items: center; text-decoration: none;
  }

  .nav-links { display: flex; gap: 32px; list-style: none; justify-content: center; }
  .nav-links a {
    font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--text-muted); text-decoration: none;
    transition: color .25s;
  }
  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--dark); background: var(--gold-light);
    padding: 12px 28px; text-decoration: none;
    transition: background .25s;
  }
  .nav-cta:hover { background: var(--gold); }

  /* ─── HERO ─── */
  #hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  .hero-bg { position: absolute; inset: 0; overflow: hidden; }
  .hero-bg::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      to bottom,
      rgba(10,10,8,.45) 0%,
      rgba(10,10,8,.35) 40%,
      rgba(10,10,8,.75) 100%
    );
  }

  .hero-content { position: relative; z-index: 2; padding-bottom: 120px;
    position: relative; text-align: center;
    max-width: 900px; padding: 0 40px;
    animation: heroIn 1.4s cubic-bezier(.16,1,.3,1) both;
  }

  @keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 28px;
    animation: heroIn 1.4s .15s cubic-bezier(.16,1,.3,1) both;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 300; line-height: .92;
    letter-spacing: -.01em;
    color: var(--white);
    margin-bottom: 20px;
    animation: heroIn 1.4s .25s cubic-bezier(.16,1,.3,1) both;
  }
  .hero-title em { color: var(--gold-light); font-style: italic; }

  .hero-subtitle {
    font-size: 13px; letter-spacing: .06em; line-height: 1.8;
    color: var(--text-muted); max-width: 480px; margin: 0 auto 36px;
    animation: heroIn 1.4s .35s cubic-bezier(.16,1,.3,1) both;
  }

  .hero-actions {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    animation: heroIn 1.4s .45s cubic-bezier(.16,1,.3,1) both;
  }

  .btn-primary {
    display: inline-block;
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--dark); background: var(--gold-light);
    padding: 18px 44px; text-decoration: none;
    transition: background .25s, transform .2s;
  }
  .btn-primary:hover { background: var(--gold); transform: translateY(-1px); }

  .btn-secondary {
    display: inline-block;
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--text-muted); border: 0.5px solid rgba(169,126,73,.35);
    padding: 18px 44px; text-decoration: none;
    transition: color .25s, border-color .25s;
  }
  .btn-secondary:hover { color: var(--gold-light); border-color: var(--gold-light); }

  .hero-scroll { z-index: 2;
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    animation: heroIn 1.4s .65s cubic-bezier(.16,1,.3,1) both;
  }
  .hero-scroll span { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--text-muted); }
  .scroll-line {
    width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

  
  
  

  /* ─── SECTION COMMONS ─── */
  section { padding: 120px 60px; }
  .section-label {
    font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300; line-height: 1.05; letter-spacing: -.01em;
    color: var(--white);
  }
  .section-title em { color: var(--gold-light); font-style: italic; }
  .divider {
    width: 40px; height: 0.5px; background: rgba(169,126,73,.4);
    margin: 24px 0;
  }

  /* ─── VENUES ─── */
  #venues { background: var(--dark); }
  .venues-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
    margin-bottom: 72px;
  }
  .venues-text p {
    font-size: 14px; line-height: 1.9; color: var(--text-muted); margin-top: 20px;
  }
  .venues-stat {
    text-align: right;
  }
  .stat-row { display: flex; justify-content: flex-end; gap: 60px; }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px; font-weight: 300; color: var(--gold-light); line-height: 1;
  }
  .stat-label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }

  .venues-list {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }
  .venue-item {
    background: var(--dark-3); padding: 36px 32px;
    border-left: 2px solid transparent;
    transition: border-color .3s, background .3s;
    position: relative;
  }
  .venue-item:hover { border-color: var(--gold-light); background: var(--mid); }
  .venue-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 8px;
  }
  .venue-type {
    font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted);
  }
  .venue-badge {
    display: inline-block; margin-top: 14px;
    font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
    color: var(--gold); border: 0.5px solid rgba(169,126,73,.4);
    padding: 4px 10px;
  }

  /* ─── TESTIMONIALS ─── */
  #testimonials { background: var(--dark-2); }
  .testi-layout {
    display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start;
    margin-top: 72px;
  }
  .testi-nav { display: flex; flex-direction: column; gap: 2px; }
  .testi-tab {
    padding: 20px 24px; cursor: pointer;
    border-left: 2px solid rgba(255,255,255,.06);
    transition: border-color .25s, background .25s;
  }
  .testi-tab.active {
    border-color: var(--gold-light); background: rgba(169,126,73,.05);
  }
  .testi-tab-company {
    font-size: 12px; font-weight: 500; letter-spacing: .06em;
    color: var(--text); margin-bottom: 4px;
  }
  .testi-tab-role { font-size: 11px; color: var(--text-muted); }

  .testi-content { position: relative; }
  .testi-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 200px; line-height: .7;
    color: rgba(169,126,73,.08); position: absolute;
    top: -20px; left: -20px; pointer-events: none;
  }
  .testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-style: italic; font-weight: 300; line-height: 1.5;
    color: var(--white); position: relative; z-index: 1;
    min-height: 200px;
  }
  .testi-author {
    margin-top: 36px; display: flex; align-items: center; gap: 20px;
  }
  .testi-line { flex: 1; height: 0.5px; background: rgba(169,126,73,.2); }
  .testi-name {
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--gold-light);
  }

  /* ─── JOURNEYS ─── */
  #journeys {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, rgba(169,126,73,.04) 100%);
    position: relative; overflow: hidden;
  }
  #journeys::before {
    content: '';
    position: absolute; top: 0; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(169,126,73,.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .journeys-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
  }
  .journeys-text p {
    font-size: 14px; line-height: 1.9; color: var(--text-muted); margin: 20px 0 40px;
  }
  .journeys-features { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
  .journey-feature {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; border: 0.5px solid rgba(255,255,255,.05);
    transition: border-color .25s;
  }
  .journey-feature:hover { border-color: rgba(169,126,73,.3); }
  .journey-icon {
    width: 32px; height: 32px; border: 0.5px solid rgba(169,126,73,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
    color: var(--gold-light);
  }
  .journey-feature h4 { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
  .journey-feature p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

  .journeys-visual {
    position: relative;
  }
  .journeys-card {
    background: var(--dark-3); border: 0.5px solid rgba(255,255,255,.07);
    padding: 40px; position: relative;
  }
  .journeys-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300; color: var(--white); margin-bottom: 8px;
  }
  .journeys-card-sub { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 32px; }
  .destinations {
    display: flex; flex-direction: column; gap: 12px;
  }
  .dest {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; border-bottom: 0.5px solid rgba(255,255,255,.05);
  }
  .dest-name { font-size: 14px; color: var(--text); }
  .dest-type { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); }
  .journeys-card-footer {
    margin-top: 32px; padding-top: 24px; border-top: 0.5px solid rgba(169,126,73,.2);
    font-size: 11px; color: var(--text-muted);
  }

  /* ─── CLIENTS ─── */
  #clients { background: var(--dark); text-align: center; padding: 80px 60px; }
  .clients-label {
    font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 48px;
  }
  .clients-logos {
    display: flex; gap: 0; flex-wrap: wrap; justify-content: center;
    border: 0.5px solid rgba(255,255,255,.05);
  }
  .client-item {
    width: 180px; height: 100px; padding: 0 24px;
    border-right: 0.5px solid rgba(255,255,255,.05);
    border-bottom: 0.5px solid rgba(255,255,255,.05);
    display: flex; align-items: center; justify-content: center;
    transition: background .25s; flex-shrink: 0;
  }
  .client-item:hover { background: rgba(169,126,73,.04); }
  .client-item img { display: block; max-width: 110px; height: 28px; object-fit: contain; }
  .client-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.35); transition: color .25s;
  }
  .client-item:hover span { color: rgba(255,255,255,.7); }

  /* ─── CONTACT ─── */
  #contact {
    background: #F5F0E8;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    padding: 0;
  }
  .contact-left {
    padding: 100px 80px; background: #F5F0E8;
    position: relative; overflow: hidden;
    display:flex; flex-direction:column; justify-content:flex-start;
  }
  .contact-left::before {
    content: '';
    position: absolute; bottom: -100px; left: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(169,126,73,.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .contact-left .section-title { margin-bottom: 20px; color: #141410; }
  .contact-left p { font-size: 14px; line-height: 1.9; color: #5A5545; margin-bottom: 48px; }
  .contact-info { display: flex; flex-direction: column; gap: 28px; }
  .contact-info-item { display: flex; gap: 16px; }
  .contact-info-label {
    font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
    color: #8C6535; min-width: 70px; padding-top: 2px;
  }
  .contact-info-val { font-size: 14px; color: #141410; }

  .contact-right { padding: 100px 80px; background: #FAFAF5; display:flex; flex-direction:column; justify-content:center; }
  .contact-right .section-label { margin-bottom: 40px; color: #8C6535; }
  .form-group { margin-bottom: 28px; }
  .form-group label {
    display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
    color: #8A8070; margin-bottom: 10px;
  }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; background: transparent;
    border: none; border-bottom: 0.5px solid rgba(0,0,0,.18);
    padding: 12px 0; font-family: 'Montserrat', sans-serif;
    font-size: 14px; font-weight: 400; color: #141410;
    outline: none; transition: border-color .25s;
    -webkit-appearance: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: #8C6535;
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-group select { cursor: pointer; }
  .form-group select option { background: #F5F0E8; color: #141410; }
  .form-submit {
    width: 100%; padding: 18px;
    background: var(--gold-light); border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--dark); font-weight: 500;
    transition: background .25s; margin-top: 8px;
  }
  .form-submit:hover { background: var(--gold); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark); padding: 60px;
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; gap: 40px;
    border-top: 0.5px solid rgba(169,126,73,.2);
  }
  .footer-left {
    font-size: 11px; color: var(--text-muted); letter-spacing: .05em;
  }
  .footer-center {
    text-align: center; display: flex; align-items: center; justify-content: center;
  }
  .footer-right {
    display: flex; gap: 32px; justify-content: flex-end; flex-wrap: wrap;
  }
  .footer-right a {
    font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--text-muted); text-decoration: none; transition: color .25s;
  }
  .footer-right a:hover { color: var(--gold-light); }

  /* ─── FADE IN ON SCROLL ─── */
  .fade-in {
    opacity: 0; transform: translateY(32px);
    transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .fade-in-delay { transition-delay: .15s; }
  .fade-in-delay-2 { transition-delay: .3s; }

  /* ─── RESPONSIVE ─── */
  @media(max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    section { padding: 80px 24px; }
    .services-grid, .venues-intro, .journeys-layout,
    #contact { grid-template-columns: 1fr; }
    .venues-list { grid-template-columns: 1fr 1fr; }
    .testi-layout { grid-template-columns: 1fr; }
    .testi-nav { flex-direction: row; overflow-x: auto; }
    footer { grid-template-columns: 1fr; text-align: center; }
    .footer-right { justify-content: center; }
    .contact-left, .contact-right { padding: 60px 24px; }
    .stat-row { gap: 32px; }
    .venues-stat { text-align: left; }
  }

  /* ─── MARQUEE ─── */
  .marquee-wrap {
    overflow: hidden; border-top: 0.5px solid rgba(169,126,73,.15);
    border-bottom: 0.5px solid rgba(169,126,73,.15);
    background: var(--dark-2); padding: 18px 0;
  }
  .marquee-track {
    display: flex; white-space: nowrap;
    animation: marquee 35s linear infinite;
  }
  @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 40px; padding: 0 40px;
    font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--text-muted);
  }
  .marquee-item::after {
    content: '✦'; color: var(--gold); font-size: 7px;
  }


  /* ===== Earnest hero (transplanted from v17) ===== */
  #hero {
    display: block;
    --ink:#0a0a0a; --cream:#F5EDE0; --cream-deep:#D9CDB6;
    --gold-h:#C49A6C; --gold-light-h:#E0BE8E; --gold-deep:#8B6F47;
    --display:'Italiana','Times New Roman',serif;
    --body-h:'Cormorant Garamond',Georgia,serif;
    position: relative; width:100%; height:100vh; min-height:640px;
    overflow:hidden; background:var(--ink);
  }
  #hero video {
    position:absolute; inset:0; width:100%; height:100%;
    object-fit:cover; object-position:center; z-index:0;
  }
  #hero::before {
    content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
    background:
      radial-gradient(ellipse at center, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%),
      linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0) 28%, rgba(10,10,10,0) 60%, rgba(10,10,10,0.78) 100%);
  }
  #hero .hero-stage {
    position:absolute; inset:0; z-index:2;
    display:grid; grid-template-rows:1fr auto; pointer-events:none;
  }
  #hero .bubbles-layer { position:relative; width:100%; height:100%; pointer-events:none; }
  #hero .bubble {
    position:absolute; pointer-events:auto; top:14%; right:5%;
    width:min(380px,33vw); background:var(--cream); color:var(--ink);
    padding:1.5rem 1.7rem 1.2rem; border-radius:22px; border:1.5px solid var(--gold-h);
    box-shadow:0 30px 70px -15px rgba(0,0,0,0.65), 0 0 0 6px rgba(245,237,224,0.05);
    opacity:0; transform:translateY(20px) scale(0.92);
    animation:e-bubble-in 0.85s 1.1s cubic-bezier(.2,.8,.2,1) forwards;
  }
  #hero .bubble-tail { position:absolute; left:-28px; top:38%; width:30px; height:36px; overflow:visible; pointer-events:none; }
  #hero .bubble-tail .fill { fill:var(--cream); }
  #hero .bubble-tail .stroke { fill:none; stroke:var(--gold-h); stroke-width:1.5; stroke-linejoin:round; stroke-linecap:round; }
  #hero .bubble-greeting {
    font-family:var(--display); font-size:1.4rem; line-height:1.25; color:var(--ink);
    padding-bottom:1rem; margin-bottom:0.5rem; border-bottom:1px solid rgba(196,154,108,0.28);
  }
  #hero .bubble-greeting em {
    font-family:var(--body-h); font-style:italic; color:var(--gold-deep);
    display:block; margin-top:0.3rem; font-size:1.05rem;
  }
  #hero .bubble-options { list-style:none; margin:0; padding:0; }
  #hero .bubble-options li + li { border-top:1px solid rgba(196,154,108,0.18); }
  #hero .bubble-option {
    width:100%; display:grid; grid-template-columns:30px 1fr 18px; align-items:center;
    gap:0.85rem; padding:0.7rem 0.3rem 0.7rem 0.4rem; text-align:left;
    font-family:var(--body-h); font-size:1.08rem; font-style:italic; color:var(--ink);
    cursor:pointer; transition:padding .3s ease,color .3s ease,background .3s ease;
    border-radius:6px; background:none; border:none;
  }
  #hero .bubble-option .roman {
    font-family:var(--display); font-style:normal; font-size:0.78rem;
    letter-spacing:0.18em; color:var(--gold-deep); opacity:0.85; text-align:center;
  }
  #hero .bubble-option .arrow {
    font-style:normal; color:var(--gold-deep); font-size:1.05rem; text-align:right;
    transition:transform .3s ease,color .3s ease;
  }
  #hero .bubble-option:hover { padding-left:0.8rem; color:var(--gold-deep); }
  #hero .bubble-option:hover .arrow { transform:translateX(4px); color:var(--gold-h); }
  #hero .bubble-option:hover .roman { color:var(--gold-h); opacity:1; }
  #hero .hero-greeting {
    grid-row:2; text-align:center; padding:0 1.5rem 5.5rem; z-index:2;
    color:var(--cream); pointer-events:auto; opacity:0;
    animation:e-fade-up 1s 0.5s cubic-bezier(.2,.8,.2,1) forwards;
  }
  #hero .hero-greeting .name-tag {
    font-family:var(--body-h); font-size:0.7rem; letter-spacing:0.42em;
    text-transform:uppercase; color:var(--gold-light-h); margin-bottom:1rem; display:inline-block;
  }
  #hero .hero-greeting .name-tag::before, #hero .hero-greeting .name-tag::after {
    content:'\2014\2014'; color:var(--gold-h); margin:0 1rem; letter-spacing:-0.1em; opacity:0.55;
  }
  #hero .hero-greeting h1 {
    font-family:var(--display); font-size:clamp(1.5rem,3.2vw,2.4rem); font-weight:400;
    line-height:1.25; letter-spacing:0.01em; color:var(--cream); max-width:880px; margin:0 auto;
  }
  #hero .hero-greeting h1 em { font-family:var(--body-h); font-style:italic; color:var(--gold-light-h); }
  #hero .scroll-cue {
    position:absolute; bottom:1rem; left:50%; transform:translateX(-50%); z-index:3;
    font-family:var(--body-h); font-size:0.65rem; letter-spacing:0.42em; text-transform:uppercase;
    color:var(--cream-deep); opacity:0.7; animation:e-bob 2.6s ease-in-out infinite;
  }
  #hero .scroll-cue::after {
    content:''; display:block; width:1px; height:28px; background:var(--gold-h);
    margin:0.7rem auto 0; opacity:0.6;
  }
  @keyframes e-bubble-in { to { opacity:1; transform:translateY(0) scale(1); } }
  @keyframes e-fade-up { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
  @keyframes e-bob { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(6px);} }
  @media (max-width:760px){
    #hero .bubble { width:min(320px,78vw); right:auto; left:50%; transform:translateX(-50%) translateY(20px) scale(0.92); top:10%; }
    @keyframes e-bubble-in { to { opacity:1; transform:translateX(-50%) translateY(0) scale(1); } }
    #hero .bubble-tail { display:none; }
  }


  /* ===== Inline Earnest clip slots ===== */
  .earnest-slot { position:relative; margin:0 0 26px; }
  .earnest-slot__frame {
    position:relative; width:100%; border-radius:14px; overflow:hidden;
    border:1px solid var(--gold); background:var(--dark-3);
    box-shadow:0 24px 60px -22px rgba(0,0,0,.7), inset 0 0 0 1px rgba(240,232,220,.04);
    aspect-ratio:4/3;
  }
  .earnest-slot .earnest-clip { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
  .earnest-slot.is-empty .earnest-clip { display:none; }
  .earnest-slot__ph {
    position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:10px; text-align:center; color:var(--gold-light);
    background:
      radial-gradient(120% 120% at 50% 30%, rgba(140,101,53,.16), transparent 60%),
      repeating-linear-gradient(45deg, rgba(240,232,220,.018) 0 2px, transparent 2px 7px);
  }
  .earnest-slot:not(.is-empty) .earnest-slot__ph { display:none; }
  .earnest-slot__mono {
    font-family:'Italiana','Times New Roman',serif; font-size:46px; line-height:1;
    color:var(--gold-pale); letter-spacing:.02em;
    border:1px solid rgba(169,126,73,.5); border-radius:50%; width:74px; height:74px;
    display:flex; align-items:center; justify-content:center;
  }
  .earnest-slot__cap {
    font-family:'Montserrat',sans-serif; font-size:10px; letter-spacing:.28em;
    text-transform:uppercase; color:var(--text-muted);
  }
  .earnest-aside {
    margin:12px 2px 0; padding-left:14px; border-left:2px solid var(--gold);
    font-family:'Cormorant Garamond',serif; font-style:italic; font-size:17px;
    line-height:1.4; color:var(--gold-pale);
  }
  .earnest-aside span { display:block; margin-top:4px; font-size:12px; font-style:normal;
    letter-spacing:.22em; text-transform:uppercase; color:var(--text-muted); }


  /* ===== Earnest inline speech bubbles ===== */
  .earnest-bubble {
    position:absolute; left:7%; right:7%; bottom:12px; z-index:4;
    background:#F6EFE2; color:#1b1813; border:1px solid var(--gold);
    border-radius:13px; padding:11px 13px 9px;
    box-shadow:0 16px 36px -14px rgba(0,0,0,.6);
    font-family:'Cormorant Garamond',serif; font-style:italic;
    font-size:13.5px; line-height:1.32; text-align:left;
  }
  .earnest-bubble::before { content:''; position:absolute; top:-10px; left:22px;
    border:5px solid transparent; border-bottom-color:var(--gold); }
  .earnest-bubble::after  { content:''; position:absolute; top:-8px; left:23px;
    border:4px solid transparent; border-bottom-color:#F6EFE2; }
  .earnest-bubble .who { display:block; margin-top:5px; font-style:normal;
    font-family:'Montserrat',sans-serif; font-size:8.5px; letter-spacing:.24em;
    text-transform:uppercase; color:var(--gold); }
  .earnest-slot--sm { max-width:190px; margin-top:40px; }
  .earnest-slot--sm .earnest-bubble { font-size:12px; bottom:10px; }


  /* ===== Journeys comic speech (Earnest narrates the offerings) ===== */
  .je-comic { display:flex; gap:18px; align-items:flex-start; margin-top:36px; }
  .je-comic__vid { flex:0 0 260px; width:260px; margin:0; }
  .je-comic__bubbles { flex:1; display:flex; flex-direction:column; gap:14px; }
  .comic-bubble {
    position:relative; align-self:flex-start;
    background:#F6EFE2; color:#1b1813; border:1px solid var(--gold); border-radius:14px;
    padding:11px 15px; font-family:'Cormorant Garamond',serif; font-style:italic;
    font-size:15px; line-height:1.3; box-shadow:0 16px 34px -16px rgba(0,0,0,.6);
  }
  .comic-bubble::before { content:''; position:absolute; left:-10px; top:50%; transform:translateY(-50%);
    border:6px solid transparent; border-right-color:var(--gold); }
  .comic-bubble::after  { content:''; position:absolute; left:-8px; top:50%; transform:translateY(-50%);
    border:5px solid transparent; border-right-color:#F6EFE2; }
  .comic-bubble .lead { display:block; font-style:normal; font-family:'Montserrat',sans-serif;
    font-size:8.5px; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); margin-bottom:3px; }
  @media (max-width:760px){ .je-comic { flex-direction:column; align-items:flex-start; } .je-comic__vid { width:55%; } }


  /* ===== Contact: Earnest built into the column ===== */
  .earnest-slot--contact { width:100%; max-width:460px; margin:30px 0 44px; }
  .earnest-slot--contact .earnest-bubble { font-size:14px; bottom:14px; }
  @media (max-width:760px){ .earnest-slot--contact { max-width:320px; } }


  /* ===== Journeys: interactive Earnest chat bubble ===== */
  .je-comic__chat {
    position:relative; align-self:flex-start; flex:1; margin-top:30px; cursor:pointer;
    background:#F6EFE2; color:#1b1813; border:1px solid var(--gold); border-radius:16px;
    padding:14px 16px 12px; font-family:'Cormorant Garamond',serif; font-style:italic;
    font-size:15.5px; line-height:1.32; box-shadow:0 18px 38px -16px rgba(0,0,0,.6);
    transition:transform .15s ease, box-shadow .15s ease; user-select:none;
  }
  .je-comic__chat:hover { transform:translateY(-2px); box-shadow:0 22px 46px -16px rgba(0,0,0,.66); }
  .je-comic__chat::before { content:''; position:absolute; left:-11px; top:34px;
    border:7px solid transparent; border-right-color:var(--gold); }
  .je-comic__chat::after  { content:''; position:absolute; left:-9px; top:35px;
    border:6px solid transparent; border-right-color:#F6EFE2; }
  .je-comic__chat .lead { display:block; font-style:normal; font-family:'Montserrat',sans-serif;
    font-size:8.5px; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); margin-bottom:4px; }
  .je-comic__chat .line { display:block; min-height:2.6em; }
  .je-comic__chat .cue { display:flex; align-items:center; justify-content:space-between; margin-top:9px; }
  .je-comic__chat .dots { display:inline-flex; gap:4px; }
  .je-comic__chat .dots i { width:5px; height:5px; border-radius:50%;
    background:rgba(140,101,53,.28); display:inline-block; transition:background .2s ease; }
  .je-comic__chat .dots i.on { background:var(--gold); }
  .je-comic__chat .tap { font-style:normal; font-family:'Montserrat',sans-serif; font-size:8px;
    letter-spacing:.18em; text-transform:uppercase; color:var(--gold); }
  .je-comic__chat.pop { animation:chatpop .22s ease; }
  @keyframes chatpop { 0%{transform:scale(.984);} 100%{transform:scale(1);} }
  @media (max-width:760px){ .je-comic__chat { margin-top:14px; }
    .je-comic__chat::before, .je-comic__chat::after { display:none; } }


  /* ===== Journeys: concierge menu states ===== */
  .je-comic__chat { cursor:default; }
  .je-comic__chat:hover { transform:none; box-shadow:0 18px 38px -16px rgba(0,0,0,.6); }
  .je-comic__chat .line { min-height:auto; display:block; }
  .ec-options { display:flex; flex-direction:column; gap:7px; margin-top:11px; }
  .ec-opt {
    display:flex; align-items:center; justify-content:space-between; gap:10px;
    width:100%; text-align:left; cursor:pointer;
    background:rgba(140,101,53,.06); border:1px solid rgba(140,101,53,.34); border-radius:9px;
    padding:8px 11px; font-family:'Cormorant Garamond',serif; font-style:italic; font-size:14px; color:#1b1813;
    transition:background .2s ease, border-color .2s ease, transform .15s ease;
  }
  .ec-opt:hover { background:rgba(140,101,53,.14); border-color:var(--gold); transform:translateX(2px); }
  .ec-opt .ec-arrow { font-style:normal; color:var(--gold); }
  .ec-back {
    margin-top:13px; background:none; border:none; cursor:pointer; padding:0;
    font-family:'Montserrat',sans-serif; font-size:9px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold);
  }
  .ec-back:hover { text-decoration:underline; }


  /* ===== Service cards: light-up reveal (condensed detail) ===== */
  .sc-card { min-height:480px; cursor:pointer; }
  .sc-card:hover, .sc-card.open { box-shadow: inset 0 0 0 1.5px rgba(196,154,108,.5); }
  .sc-card:hover .sc-overlay, .sc-card.open .sc-overlay {
    background: linear-gradient(to top, rgba(10,10,8,.95) 0%, rgba(10,10,8,.5) 52%, rgba(26,19,9,.08) 100%);
  }
  .sc-card:hover .sc-num, .sc-card.open .sc-num { color: var(--gold-light); }
  .sc-card:hover .sc-title, .sc-card.open .sc-title { color: var(--gold-pale); }
  .sc-cue {
    display:inline-block; margin-top:6px; font-family:'Montserrat',sans-serif;
    font-size:9px; letter-spacing:.22em; text-transform:uppercase; color:var(--gold-light);
    opacity:.85; transition:opacity .3s;
  }
  .sc-card:hover .sc-cue, .sc-card.open .sc-cue { opacity:0; height:0; margin:0; }
  .sc-reveal {
    display:flex; flex-direction:column; gap:12px;
    opacity:0; transform:translateY(10px); max-height:0; overflow:hidden;
    transition:opacity .4s, transform .4s, max-height .5s ease;
  }
  .sc-card:hover .sc-reveal, .sc-card.open .sc-reveal { opacity:1; transform:none; max-height:440px; margin-top:12px; }
  .sc-reveal p { font-size:12px; line-height:1.65; color:rgba(232,228,217,.82); margin:0; max-width:440px; }


  /* ===== Intro / welcome splash ===== */
  html.intro-lock, body.intro-lock { overflow:hidden; height:100%; }
  #intro { position:fixed; inset:0; z-index:99999; background:#080808;
    display:flex; align-items:center; justify-content:center; transition:opacity .85s ease; }
  #intro.done { opacity:0; pointer-events:none; }
  #introVideo { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
  #introVeil { position:absolute; inset:0; transition:opacity .6s ease;
    background:radial-gradient(ellipse at center, rgba(8,8,8,.4) 0%, rgba(8,8,8,.82) 100%); }
  #introStart { position:relative; z-index:2; text-align:center; padding:0 24px; }
  #introStart .intro-mark { font-family:'Italiana','Times New Roman',serif;
    font-size:clamp(42px,8vw,88px); letter-spacing:.02em; color:#F5EDE0; line-height:1; }
  #introStart .intro-sub { font-family:'Cormorant Garamond',serif; font-style:italic;
    font-size:clamp(15px,2.4vw,21px); color:var(--gold-light,#A97E49); margin-top:12px; }
  #introStart .intro-logo { width:clamp(170px,26vw,300px); height:auto; display:block; margin:0 auto; filter:drop-shadow(0 8px 30px rgba(0,0,0,.5)); }

  #introEnter { margin-top:30px; cursor:pointer; background:transparent;
    border:1px solid var(--gold,#8C6535); color:#F5EDE0; font-family:'Montserrat',sans-serif;
    font-size:11px; letter-spacing:.32em; text-transform:uppercase; padding:14px 36px; border-radius:2px;
    transition:background .3s ease, color .3s ease; }
  #introEnter:hover { background:var(--gold,#8C6535); color:#080808; }
  #introSkip { position:absolute; bottom:26px; right:28px; z-index:3; display:none; cursor:pointer;
    background:none; border:none; color:rgba(245,237,224,.6); font-family:'Montserrat',sans-serif;
    font-size:10px; letter-spacing:.26em; text-transform:uppercase; }
  #introSkip:hover { color:#F5EDE0; }

/* ── clients carousel ── */
/* Service cards */
  .sc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .sc-card {
    position: relative; overflow: hidden;
    min-height: 420px;
    background-size: cover; background-position: center;
    cursor: default;
  }
  .sc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,8,.92) 0%, rgba(10,10,8,.45) 60%, rgba(10,10,8,.2) 100%);
    transition: background .4s;
  }
  .sc-card:hover .sc-overlay {
    background: linear-gradient(to top, rgba(10,10,8,.96) 0%, rgba(10,10,8,.6) 60%, rgba(10,10,8,.3) 100%);
  }
  .sc-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 44px 44px;
    z-index: 1;
    transform: translateY(0);
    transition: transform .35s cubic-bezier(.16,1,.3,1);
  }
  .sc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px; font-weight: 300; line-height: 1;
    color: rgba(169,126,73,.25); margin-bottom: 10px;
    transition: color .3s;
  }
  .sc-card:hover .sc-num { color: rgba(169,126,73,.4); }
  .sc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400; color: var(--white);
    margin: 0 0 14px; line-height: 1.2; letter-spacing: -.01em;
  }
  .sc-desc {
    font-size: 12.5px; line-height: 1.8; color: rgba(232,228,217,.7);
    margin: 0; max-width: 360px;
    opacity: 0; transform: translateY(8px);
    transition: opacity .35s .05s, transform .35s .05s;
  }
  .sc-card:hover .sc-desc {
    opacity: 1; transform: translateY(0);
  }

  /* Detail rows */
  .dp-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    padding: 40px 0;
    border-top: 0.5px solid rgba(255,255,255,.05);
    align-items: start;
  }
  .dp-head { position: sticky; top: 90px; }
  .dp-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 300;
    color: rgba(169,126,73,.2); display: block; line-height: 1; margin-bottom: 8px;
  }
  .dp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; color: var(--white);
    margin: 0; line-height: 1.3;
  }
  .dp-body { display: flex; flex-direction: column; gap: 14px; }
  .dp-body p { font-size: 13px; line-height: 1.9; color: var(--text-muted); margin: 0; }

  @media(max-width: 900px) {
    .sc-grid { grid-template-columns: 1fr; }
    .sc-card { min-height: 300px; }
    .sc-desc { opacity: 1; transform: none; }
    .dp-row { grid-template-columns: 1fr; gap: 16px; }
    .dp-head { position: static; }
    #about > div:first-child { padding: 80px 24px 60px !important; }
    #about > div:first-child > div { grid-template-columns: 1fr; gap: 36px; }
    #about > div:last-child { padding: 0 24px 80px !important; }
  }


/* ═══════════════════════════════════════════════════════════════════════════
   ADDITIONS — mobile nav, gallery lightbox, form states, Earnest chat,
   accessibility and reduced-motion handling.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Accessibility helpers ───────────────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  padding: 12px 20px; border-radius: 3px;
  background: var(--gold-light); color: var(--dark);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* One visible focus style for the whole site. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Mobile navigation ───────────────────────────────────────────────────── */
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 11px 10px;
  flex-direction: column; justify-content: space-between;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle__bar {
  display: block; height: 1px; width: 100%;
  background: var(--text); transition: transform .3s, opacity .2s;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 88px 0 0; z-index: 99;
  background: rgba(10, 10, 8, .98);
  backdrop-filter: blur(14px);
  padding: 32px 24px;
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block; padding: 18px 4px;
  border-bottom: .5px solid rgba(169, 126, 73, .18);
  color: var(--text); text-decoration: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 300; letter-spacing: .02em;
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--gold-light); }
.mobile-menu__cta {
  margin-top: 20px; border: 0 !important;
  color: var(--gold-light) !important;
  font-size: 12px !important; letter-spacing: .18em; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif !important;
}
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}

/* ── Intro gate: hidden until JS decides to show it ──────────────────────── */
#intro[hidden] { display: none; }

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

.gal-item {
  position: relative; display: block; overflow: hidden;
  height: 340px; padding: 0; border: 0; background: none; cursor: zoom-in;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s ease;
}
.gal-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10, 10, 8, .28);
  opacity: 0; transition: opacity .4s;
}
.gal-item:hover img, .gal-item:focus-visible img { transform: scale(1.05); }
.gal-item:hover::after { opacity: 1; }

@media (max-width: 760px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item, .gal-item--wide { grid-column: auto !important; height: 220px; }
}

/* ── Lightbox ────────────────────────────────────────────────────────────── */
.lightbox {
  max-width: 100vw; max-height: 100vh;
  width: 100%; height: 100%;
  border: 0; padding: 0; background: transparent;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  grid-template-rows: 1fr auto;
  align-items: center; justify-items: center;
}
.lightbox::backdrop { background: rgba(6, 6, 5, .94); }
.lightbox[open] { display: grid; }
.lightbox img {
  grid-column: 2; grid-row: 1;
  max-width: 100%; max-height: 82vh;
  object-fit: contain; display: block;
}
.lightbox__caption {
  grid-column: 1 / -1; grid-row: 2;
  padding: 18px 24px 28px;
  color: var(--text-muted); font-size: 12px; letter-spacing: .1em; text-align: center;
}
.lightbox__nav, .lightbox__close {
  background: none; border: 0; cursor: pointer;
  color: var(--text); font-size: 40px; line-height: 1;
  padding: 12px; opacity: .55; transition: opacity .25s;
}
.lightbox__nav:hover, .lightbox__close:hover { opacity: 1; }
.lightbox__nav--prev { grid-column: 1; grid-row: 1; }
.lightbox__nav--next { grid-column: 3; grid-row: 1; }
.lightbox__close {
  position: absolute; top: 12px; right: 18px;
  font-size: 34px; z-index: 2;
}

/* ── Form ────────────────────────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

.form-optional { color: var(--text-muted); text-transform: none; letter-spacing: 0; }

.form-error {
  display: block; min-height: 16px;
  margin-top: 6px; font-size: 11px; letter-spacing: .04em;
  color: #D98A6A;
}
input.has-error, select.has-error, textarea.has-error {
  border-color: #D98A6A !important;
}

/* Honeypot: off-screen rather than display:none, which some bots detect. */
.form-honeypot {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

.form-status {
  margin-top: 16px; min-height: 20px;
  font-size: 13px; line-height: 1.6;
}
.form-status.is-error   { color: #D98A6A; }
.form-status.is-success { color: #8FBF6A; }
.form-submit[disabled]  { opacity: .6; cursor: progress; }

/* ── Earnest chat ────────────────────────────────────────────────────────── */
.ec { display: flex; flex-direction: column; gap: 12px; }

.ec-log {
  display: flex; flex-direction: column; gap: 12px;
  max-height: 320px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: rgba(169, 126, 73, .4) transparent;
}

.ec-msg { display: flex; flex-direction: column; gap: 4px; }
.ec-msg--you {
  align-self: flex-end; max-width: 85%;
  padding: 10px 14px; border-radius: 14px 14px 2px 14px;
  background: rgba(169, 126, 73, .16);
  border: 1px solid rgba(169, 126, 73, .3);
  font-size: 13px; line-height: 1.6; color: var(--text);
}
.ec-msg--earnest .lead {
  font-family: 'Italiana', serif; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light);
}
.ec-msg--earnest .line { font-size: 13px; line-height: 1.75; color: var(--text-muted); }

/* Typing indicator */
.ec-msg.is-thinking .line { display: flex; gap: 5px; align-items: center; height: 22px; }
.ec-msg.is-thinking i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-light); opacity: .4;
  animation: ec-blink 1.2s infinite;
}
.ec-msg.is-thinking i:nth-child(2) { animation-delay: .2s; }
.ec-msg.is-thinking i:nth-child(3) { animation-delay: .4s; }
@keyframes ec-blink { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }

.ec-suggest { display: flex; flex-direction: column; gap: 6px; }

.ec-composer { display: flex; gap: 8px; align-items: center; }
.ec-composer input {
  flex: 1; min-width: 0;
  padding: 11px 14px; border-radius: 999px;
  background: rgba(240, 232, 220, .04);
  border: 1px solid rgba(169, 126, 73, .34);
  color: var(--text); font-family: inherit; font-size: 13px;
}
.ec-composer input::placeholder { color: var(--text-muted); }
.ec-composer input:focus { border-color: var(--gold-light); outline: none; }

.ec-send {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(169, 126, 73, .34);
  background: var(--gold-light); color: var(--dark);
  font-size: 17px; cursor: pointer; transition: background .25s;
}
.ec-send:hover { background: var(--gold-pale); }

.ec-note {
  font-size: 10px; line-height: 1.6; letter-spacing: .04em;
  color: var(--text-muted); opacity: .65;
}

/* ── Reduced motion: honour it everywhere, not just the logo carousel ────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track, .carousel-track { animation: none !important; transform: none !important; }
  .fade-in { opacity: 1 !important; transform: none !important; }
  .gal-item:hover img { transform: none; }
}
