  :root{
    --black: #0a0908;
    --charcoal: #14110d;
    --charcoal-2: #1c1712;
    --gold-bright: #e9cd8a;
    --gold: #c9a24b;
    --gold-deep: #8a6a2c;
    --gold-line: rgba(201,162,75,0.35);
    --ivory: #efe6d3;
    --muted: #9a8f78;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html,body{height:100%;}
  body{
    background: var(--black);
    color: var(--ivory);
    font-family: 'Jost', sans-serif;
    overflow-x:hidden;
    position:relative;
    min-height:100vh;
  }

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
  }

  /* ---------- background: marble + vignette ---------- */
  .bg{
    position:fixed; inset:0; z-index:0;
    background:
      radial-gradient(ellipse 120% 80% at 50% 8%, rgba(120,92,32,0.18), transparent 55%),
      radial-gradient(ellipse 90% 70% at 50% 100%, rgba(80,60,20,0.14), transparent 60%),
      linear-gradient(180deg, #0d0c0a 0%, #0a0908 45%, #060505 100%);
  }
  .bg::before{
    content:"";
    position:absolute; inset:0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity:0.6;
  }

  .lightsweep{
    position:absolute; top:-20%; left:-30%; width:60%; height:160%;
    background: linear-gradient(100deg, transparent 40%, rgba(233,205,138,0.05) 48%, rgba(233,205,138,0.09) 50%, rgba(233,205,138,0.05) 52%, transparent 60%);
    animation: sweep 9s ease-in-out infinite;
    pointer-events:none;
  }
  @keyframes sweep{
    0%   { transform: translateX(0) rotate(6deg); opacity:0.6;}
    50%  { transform: translateX(160vw) rotate(6deg); opacity:0.9;}
    100% { transform: translateX(0) rotate(6deg); opacity:0.6;}
  }

  /* ---------- layout ---------- */
  .stage{
    position:relative; z-index:2;
    min-height:100vh;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center;
    padding: 110px 6vw 60px;
  }

  .emblem{
    position:relative;
    width: clamp(140px, 18vw, 220px);
    height: clamp(140px, 18vw, 220px);
    margin-top: clamp(60px, 10vh, 120px);
    margin-bottom: clamp(28px, 4vh, 44px);
  }
  .ring{
    position:absolute; inset:-22px;
    border-radius:50%;
    border: 1px solid var(--gold-line);
  }
  .ring.spin{
    animation: rotate 40s linear infinite;
  }
  .ring.spin::before, .ring.spin::after{
    content:"";
    position:absolute; width:5px; height:5px; border-radius:50%;
    background: var(--gold-bright);
    box-shadow: 0 0 8px 2px rgba(233,205,138,0.7);
  }
  .ring.spin::before{ top:-2.5px; left:50%; transform:translateX(-50%); }
  .ring.spin::after{ bottom:-2.5px; left:50%; transform:translateX(-50%); }
  @keyframes rotate{ to{ transform: rotate(360deg); } }

  .emblem-glow{
    position:absolute; inset:-40px;
    border-radius:50%;
    background: radial-gradient(circle, rgba(201,162,75,0.22) 0%, transparent 70%);
    filter: blur(6px);
    animation: pulse 6s ease-in-out infinite;
  }
  @keyframes pulse{
    0%,100%{ opacity:0.7; }
    50%{ opacity:1; }
  }
  .emblem img{
    position:relative; z-index:2;
    width:100%; height:100%;
    object-fit:contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
  }

  .eyebrow{
    font-family:'Jost', sans-serif;
    font-weight:500;
    font-size: clamp(11px, 1.1vw, 13px);
    letter-spacing: 0.42em;
    text-transform:uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    opacity:0.9;
  }

  h1{
    font-family:'Cormorant Garamond', serif;
    font-weight:500;
    font-size: clamp(48px, 9vw, 108px);
    line-height: 0.98;
    letter-spacing: 0.04em;
    color: var(--ivory);
    text-transform:uppercase;
  }
  h1 .thin{
    font-weight:300;
    color: var(--gold-bright);
  }

  .divider{
    width: 68px; height:1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 30px auto 30px;
  }

  .tagline{
    max-width: 680px;
    font-family:'Cormorant Garamond', serif;
    font-style: italic;
    font-weight:400;
    font-size: clamp(18px, 2vw, 23px);
    line-height:1.55;
    color: var(--muted);
    margin-bottom: clamp(56px, 8vh, 80px);
  }
  .tagline strong{
    color: var(--ivory);
    font-style: normal;
    font-weight:500;
  }

  .status{
    display:flex; align-items:center; gap:14px;
    font-size:12px; letter-spacing:0.3em; text-transform:uppercase;
    color: var(--muted);
    margin-bottom: clamp(22px, 3vh, 30px);
  }
  .status .dot{
    width:7px; height:7px; border-radius:50%;
    background: var(--gold-bright);
    box-shadow: 0 0 10px 2px rgba(233,205,138,0.8);
    animation: blink 2.4s ease-in-out infinite;
  }
  @keyframes blink{ 0%,100%{opacity:1;} 50%{opacity:0.35;} }

  .lines-wrap{
    width:100%;
    max-width: 860px;
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
  }
  .lines-row{
    display:flex;
  }
  .lines-row + .lines-row{
    border-top: 1px solid var(--gold-line);
  }
  .lines-row .line-item{
    flex: 1 1 0;
  }
  .line-item{
    padding: 26px 22px;
    min-height: 104px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-left: 1px solid var(--gold-line);
    position:relative;
    text-decoration: none;
    color: inherit;
  }
  .line-item:first-child{ border-left:none; }
  .line-item .label{
    font-family:'Jost', sans-serif;
    font-weight:500;
    font-size:10.5px;
    letter-spacing:0.22em;
    text-transform:uppercase;
    color: var(--gold);
    margin-bottom:8px;
  }
  .line-item .name{
    font-family:'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--ivory);
    font-weight:500;
    line-height:1.3;
  }
  .lines-note{
    max-width: 700px;
    margin: 20px auto 0;
    font-family:'Jost', sans-serif;
    font-size:11px;
    letter-spacing:0.03em;
    line-height:1.8;
    color: var(--muted);
  }

  @media (max-width: 640px){
    .lines-row{ flex-direction:column; }
    .lines-row .line-item{ border-left:none; }
    .lines-row .line-item + .line-item{ border-top: 1px solid var(--gold-line); }
  }

  footer{
    position:relative; z-index:2;
    text-align:center;
    padding: 28px 20px 34px;
    font-size:11px;
    letter-spacing:0.2em;
    text-transform:uppercase;
    color: var(--muted);
  }
  footer .domain{
    color: var(--gold-bright);
    font-weight:500;
  }

  a {
    color: inherit;
    text-decoration: none;
  }
  a, button{ outline-offset:4px; }
  *:focus-visible{ outline: 2px solid var(--gold-bright); outline-offset: 3px; }

  /* ---------- header / navbar ---------- */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(10, 9, 8, 0.75);
    border-bottom: 1px solid var(--gold-line);
    transition: all 0.3s ease;
  }
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ivory);
    transition: transform 0.2s ease;
  }
  .logo-area:hover {
    transform: scale(1.02);
  }
  .nav-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
  }
  .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .logo-text .thin {
    font-weight: 300;
    color: var(--gold-bright);
  }
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
  }
  .nav-link:hover {
    color: var(--gold-bright);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-bright);
    transition: width 0.3s ease;
  }
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  .nav-link.active {
    color: var(--gold-bright);
  }

  /* Mobile Toggle */
  .mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }
  .mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--ivory);
    transition: all 0.3s ease;
  }
  .mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile Nav Overlay */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 9, 8, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-link {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .mobile-link:hover,
  .mobile-link.active {
    color: var(--gold-bright);
  }

  body.no-scroll {
    overflow: hidden;
  }

  @media (max-width: 768px) {
    .nav-menu {
      display: none;
    }
    .mobile-toggle {
      display: flex;
    }
    .mobile-nav {
      display: flex;
    }
  }

  /* ---------- Content Page Adjustments ---------- */
  .stage-start {
    justify-content: flex-start !important;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .section-title .gold {
    color: var(--gold-bright);
  }
  .section-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: clamp(12px, 1.3vw, 15px);
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 40px;
  }

  /* ---------- Business Page ---------- */
  .business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 50px;
  }
  .business-card {
    background: rgba(20, 17, 13, 0.45);
    border: 1px solid var(--gold-line);
    border-radius: 8px;
    padding: 36px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    position: relative;
    overflow: hidden;
  }
  .business-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233,205,138,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .business-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201,162,75,0.08);
  }
  .business-card:hover::before {
    opacity: 1;
  }
  .card-top {
    position: relative;
    z-index: 2;
  }
  .card-category {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 14px;
    line-height: 1.25;
  }
  .card-desc {
    font-family: 'Jost', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
    font-weight: 300;
  }
  .card-bottom {
    margin-top: 24px;
    position: relative;
    z-index: 2;
  }
  .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-bright);
    text-decoration: none;
    border: 1px solid var(--gold-line);
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
  }
  .btn-gold:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(201, 162, 75, 0.2);
  }

  @media (max-width: 992px) {
    .business-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 640px) {
    .business-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ---------- About Page ---------- */
  .about-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 50px;
    text-align: center;
  }
  .about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 40px;
  }
  .about-lead strong {
    color: var(--ivory);
    font-style: normal;
  }
  
  .about-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
  }
  .about-box {
    background: rgba(20, 17, 13, 0.45);
    border: 1px solid var(--gold-line);
    border-radius: 8px;
    padding: 40px;
  }
  .about-box-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--gold-bright);
    margin-bottom: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .about-box-text {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 300;
  }
  .about-box-text p {
    margin-bottom: 14px;
  }
  .about-box-text p:last-child {
    margin-bottom: 0;
  }

  .values-section {
    width: 100%;
    max-width: 1000px;
    margin-top: 20px;
  }
  .values-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .value-card {
    background: rgba(20, 17, 13, 0.3);
    border: 1px solid rgba(201, 162, 75, 0.15);
    border-radius: 6px;
    padding: 24px 20px;
    transition: all 0.3s ease;
  }
  .value-card:hover {
    border-color: var(--gold-line);
    background: rgba(20, 17, 13, 0.5);
  }
  .value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 10px;
  }
  .value-title {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }
  .value-desc {
    font-family: 'Jost', sans-serif;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--muted);
    font-weight: 300;
  }

  @media (max-width: 868px) {
    .about-sections {
      grid-template-columns: 1fr;
    }
    .values-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 480px) {
    .values-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ---------- Contact Page ---------- */
  .contact-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: left;
  }
  .contact-form-card {
    background: rgba(20, 17, 13, 0.45);
    border: 1px solid var(--gold-line);
    border-radius: 8px;
    padding: 40px;
  }
  .contact-info-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
  }
  .info-box {
    background: rgba(20, 17, 13, 0.25);
    border: 1px solid rgba(201, 162, 75, 0.15);
    border-radius: 8px;
    padding: 30px;
  }
  .info-title {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 12px;
  }
  .info-text {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ivory);
    font-weight: 300;
  }
  .info-text a {
    color: var(--ivory);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .info-text a:hover {
    color: var(--gold-bright);
  }

  /* Form Elements */
  .form-group {
    margin-bottom: 24px;
  }
  .form-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .form-control {
    width: 100%;
    background: rgba(10, 9, 8, 0.6);
    border: 1px solid var(--gold-line);
    border-radius: 4px;
    padding: 12px 16px;
    font-family: 'Jost', sans-serif;
    color: var(--ivory);
    font-size: 14px;
    transition: all 0.3s ease;
  }
  .form-control:focus {
    outline: none;
    border-color: var(--gold-bright);
    background: rgba(10, 9, 8, 0.9);
    box-shadow: 0 0 8px rgba(233,205,138,0.15);
  }
  textarea.form-control {
    min-height: 130px;
    resize: vertical;
  }
  .btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
    padding: 14px 20px;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .btn-submit:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    box-shadow: 0 4px 20px rgba(233, 205, 138, 0.25);
  }

  @media (max-width: 868px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
  }

  /* ---------- Header Compact & Scroll State ---------- */
  .header {
    padding: 6px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header.scrolled {
    background-color: rgba(10, 9, 8, 0.92);
    padding: 2px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  }
  .header.scrolled .nav-logo {
    height: 30px;
  }
  .header.scrolled .logo-text {
    font-size: 19px;
  }
  .nav-container {
    padding: 10px 24px;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ---------- Home Page Restructure ---------- */
  .home-container {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 6vw 80px;
    position: relative;
  }
  .summary-section {
    padding: 100px 6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(201, 162, 75, 0.1);
    background: rgba(10, 9, 8, 0.35);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
  }
  .section-header {
    margin-bottom: 50px;
  }
  .hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
  }
  .btn-gold-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: 1px solid var(--gold);
    padding: 15px 36px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
  }
  .btn-gold-large:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    box-shadow: 0 8px 25px rgba(233,205,138,0.25);
    transform: translateY(-2px);
  }
  .btn-outline-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ivory);
    background: transparent;
    border: 1px solid var(--gold-line);
    padding: 15px 36px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
  }
  .btn-outline-large:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background: rgba(233,205,138,0.03);
    transform: translateY(-2px);
  }
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
  }
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
  }
  .scroll-indicator .mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--gold-line);
    border-radius: 12px;
    position: relative;
  }
  .scroll-indicator .mouse .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold-bright);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
  }
  @keyframes scrollMouse {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
  }

  /* Make sure line items show hover state and click pointer */
  .lines-wrap .line-item {
    transition: all 0.3s ease;
  }
  .lines-wrap .line-item:hover {
    background-color: rgba(201, 162, 75, 0.05);
    border-color: var(--gold);
    z-index: 5;
  }

  @media (max-width: 640px) {
    .hero-actions {
      flex-direction: column;
      width: 100%;
      max-width: 280px;
      gap: 12px;
      margin-bottom: 40px;
    }
    .btn-gold-large, .btn-outline-large {
      padding: 12px 24px;
    }
  }
