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

    body {
      font-family: 'Montserrat', sans-serif;
      background: #fff;
      min-height: 100vh;
    
    }

    /* ── NAVBAR ── */
 nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    /* box-shadow: 0 1px 6px rgba(0,0,0,.08); */
    max-width: 1157px;
    margin: 0 auto;
    position: relative;
}
    .logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
    .logo-ring {
      width: 52px; height: 52px;
      border: 2.5px solid #c8941a;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; color: #c8941a; font-weight: 900;
    }
    .logo-text .t { font-size: 17px; font-weight: 800; color: #1a1a2e; letter-spacing: .06em; }
    .logo-text .b { font-size: 10px; font-weight: 700; color: #1a1a2e; letter-spacing: .28em; }
    .nav-links { display: flex; gap: 36px; }
    .nav-links a {
      font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: #1a1a2e; text-decoration: none;
      position: relative; padding-bottom: 4px;
    }
    .nav-links a.active { color: #c8941a; }
    .nav-links a.active::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: #c8941a;
    }
    .nav-toggle,
    .nav-toggle-label,
    .nav-close-label {
      display: none;
    }
    .nav-toggle-label {
      width: 44px;
      height: 44px;
      border: 1.5px solid #e6d3a0;
      background: #fff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
      width: 20px;
      height: 2px;
      background: #1a1a2e;
      display: block;
      transition: transform .2s ease, opacity .2s ease, background .2s ease;
    }
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
      content: '';
      position: absolute;
    }
    .nav-toggle-label span::before {
      transform: translateY(-7px);
    }
    .nav-toggle-label span::after {
      transform: translateY(7px);
    }
    .nav-toggle:focus-visible + .nav-toggle-label {
      outline: 3px solid rgba(200,148,26,.28);
      outline-offset: 3px;
    }
    .nav-toggle:checked + .nav-toggle-label span {
      background: transparent;
    }
    .nav-toggle:checked + .nav-toggle-label span::before {
      transform: rotate(45deg);
    }
    .nav-toggle:checked + .nav-toggle-label span::after {
      transform: rotate(-45deg);
    }

    /* ── HERO TEXT (static, unchanged) ── */
    .hero {
      text-align: center;
      padding: 40px 20px;
      background: #f5f5f5;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .welcome-row {
      display: flex; align-items: center; justify-content: center; gap: 14px;
      font-size: 11px; font-weight: 700; letter-spacing: .26em;
      color: #c8941a; text-transform: uppercase; margin-bottom: 6px;
    }
    .welcome-row::before, .welcome-row::after {
      content: ''; flex: 0 0 55px; height: 1.5px; background: #c8941a;
    }
    .hero h1 {
      font-size: clamp(40px, 6.5vw, 82px);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.01em;
      margin-bottom: 14px;
    }
    .hero h1 .dark { color: #1a1a2e; }
    .hero h1 .gold { color: #c8941a; }
    .hero p {
      font-size: 13.5px; color: #555; line-height: 1.75;
      margin-bottom: 0;
    }

    /* ── DRUM STAGE: the image itself is always on screen and never swapped.
         Only what's shown ON the drums toggles between the 3 slides
         (logos / logos-2 / typing), via the arrows / dots / swipe.
         Navigation is manual only — there is no autoplay timer. ── */
    .drum-wrap {
      background: #f5f5f5;
      display: flex;
      justify-content: center;
      padding: 10px 0 60px;
      position: relative;
    }
    .drum-stage {
      position: relative;
      width: 100%;
      max-width: 1157px;
    }
    .drum-stage img {
      width: 100%;
      height: auto;
      display: block;
      user-select: none;
      -webkit-user-drag: none;
    }

    /* Clickable drum-head hotspots, positioned in % so they stay aligned at every size.
       These stay clickable on every slide. */
    .drum-hotspot {
      position: absolute;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .drum-hotspot:hover,
    .drum-hotspot:focus-visible {
      transform: scale(1.06);
      outline: none;
    }
    #drumImgColored {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: 0;
      transition: opacity .5s ease;
    }
    .drum-stage.mode-typing-colored #drumImgColored { opacity: 1; }

    /* Company logo "printed" on each drum head.
       Slide 1 uses .drum-logo, slide 2 uses .drum-logo-2 — two independent
       overlapping layers, each with its own image path (see the drums[]
       data in index.html: `logo` for slide 1, `logo2` for slide 2), so the
       slide-2 logo can be changed without touching slide 1 at all.
       If an image fails to load, JS automatically falls back to the
       initials badge so the page never shows a broken image. */
    .drum-logo,
    .drum-logo-2 {
      position: absolute;
      top: 22.5%;
      left: 22.5%;
      width: 55%;
      height: 55%;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      opacity: 0;
      transition: opacity .5s ease;
    }
    .drum-logo-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 1px 3px rgba(0,0,0,.18));
    }
    /* Fallback badge (only used if a logo image is missing) */
    .drum-logo.fallback,
    .drum-logo-2.fallback {
      font-weight: 800;
      letter-spacing: .04em;
      color: var(--drum-color, #c8941a);
      font-size: clamp(9px, 1.6vw, 20px);
    }
    /* Show only the logo layer that matches the active slide */
    .drum-stage.mode-labels  .drum-logo   { opacity: 1; }
    .drum-stage.mode-labels2 .drum-logo-2 { opacity: 1; }

    /* Per-drum typing label (typing slide) — each drum types its OWN name
       once when this slide is activated. Sits in the same spot as the
       logo layers and simply swaps places with them. */
.drum-typed-label {
    width: 82%;
    height: 82%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6%;
    font-weight: 800;
    line-height: 1.15;
    color: var(--drum-color, #c8941a);
    font-size: clamp(6.5px, 1.15vw, 12px);
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease;
    position: absolute;
    inset: 0;
    top: 10%;
    left: 10%;
    font-size: 24px;
    z-index: 1;
}
    .drum-stage.mode-typing .drum-typed-label { opacity: 1; }
    .drum-stage.mode-typing-taglines .drum-typed-label { font-size: 16px !important; }
    /* The fifth slide uses darker colored drum heads, so its text stays white
       for contrast without altering the first four slides. */
    .drum-stage.mode-typing-colored .drum-typed-label { color: #fff; }
    .drum-stage.mode-typing-colored .drum-typed-label .typing-cursor { background-color: #fff; }
    .drum-typed-label .typing-cursor {
      display: inline-block;
      width: 2px;
      margin-left: 2px;
      background: var(--drum-color, #c8941a);
      animation: blinkCursor 1s step-end infinite;
      vertical-align: -0.08em;
    }
    @keyframes blinkCursor {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    /* ── Tooltip ── */
    #drum-tooltip {
      position: fixed;
      background: #1a1a2e;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 7px 14px;
      border-radius: 6px;
      pointer-events: none;
      opacity: 0;
      transition: opacity .18s;
      z-index: 999;
      white-space: nowrap;
    }
    #drum-tooltip.show { opacity: 1; }

    /* ── SLIDER CONTROLS (toggle what's shown on the drums; manual only) ── */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 1.5px solid #c8941a;
      background: rgba(255,255,255,.85);
      color: #c8941a;
      font-size: 18px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 20;
      transition: background .18s, color .18s, transform .18s;
    }
    .slider-arrow:hover { background: #c8941a; color: #fff; }
    .slider-arrow.prev { left: 8px; }
    .slider-arrow.next { right: 8px; }

    .slider-dots {
      position: absolute;
      left: 50%;
      bottom: -20px;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 20;
    }
    .slider-dot {
      width: 9px; height: 9px;
      border-radius: 50%;
      background: rgba(26,26,46,.25);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background .2s, transform .2s;
    }
    .slider-dot.active {
      background: #c8941a;
      transform: scale(1.25);
    }
    .drum-logo-2 img {
    width: 70%;
}


    /* ── EXPLORE ── */
    .explore {
      text-align: center;
      padding: 18px 0 10px;
      background: #f5f5f5;
    }
    .explore-title {
      font-size: 10.5px; font-weight: 800; letter-spacing: .22em;
      text-transform: uppercase; color: #1a1a2e; margin-bottom: 6px;
    }
    .explore-chevron { font-size: 22px; color: #1a1a2e; line-height: 1; }

    /* ── FOOTER NAV ── */
    .footer-nav {
      display: flex;
      justify-content: center;
      border-top: 1.5px solid #ddd;
      background: #fff;
      flex-wrap: wrap;
    }
    .footer-item {
      display: flex; align-items: center; gap: 10px;
      padding: 16px 26px;
      border-right: 1px solid #e0e0e0;
      text-decoration: none;
      transition: background .18s;
      position: relative;
    }
    .footer-item:last-child { border-right: none; }
    .footer-item:hover { background: #fafafa; }
    .footer-item.active::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: #c8941a;
    }
    .f-num { font-size: 11px; font-weight: 700; color: #c8941a; }
    .f-label { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #1a1a2e; line-height: 1.4; }

    .logo-wrap img, .site-footer-brand img {
    max-width: 140px;
    width: 100%;
}
    @media (max-width: 980px) {
      nav {
        padding: 16px 32px;
      }
      .footer-item {
        flex: 1 1 33.333%;
        padding: 16px 20px;
      }
    }

    @media (max-width: 760px) {
      nav {
        align-items: center;
        flex-wrap: wrap;
        padding: 14px 22px;
      }
      .logo-ring {
        width: 46px;
        height: 46px;
        font-size: 23px;
      }
      .logo-text .t {
        font-size: 15px;
      }
      .logo-text .b {
        font-size: 9px;
      }
      .nav-toggle {
        display: block;
        position: absolute;
        right: 22px;
        top: 15px;
        width: 44px;
        height: 44px;
        opacity: 0;
        z-index: 4;
        cursor: pointer;
      }
      .nav-toggle-label {
        display: flex;
        margin-left: auto;
        z-index: 3;
      }
      .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1000;
        width: 100%;
        max-width: 480px;
        margin: 0;
        padding: 82px 26px 28px;
        border-right: 1px solid #e6d3a0;
        background: #fff;
        box-shadow: 16px 0 34px rgba(0,0,0,.14);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: translateX(-105%);
        transition: transform .28s ease;
      }
      .nav-toggle:checked ~ .nav-links {
        transform: translateX(0);
      }
      .nav-close-label {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 18px;
        right: 22px;
        width: 42px;
        height: 42px;
        border: 1.5px solid #e6d3a0;
        background: #fff;
        color: #1a1a2e;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
      }
      .nav-links a {
        padding: 17px 0;
        border-bottom: 1px solid #eee;
        font-size: 12px;
      }
      .nav-links a.active::after {
        left: 0;
        right: auto;
        width: 42px;
      }
      .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .footer-item {
        min-width: 0;
        padding: 15px 16px;
        border-right: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
      }
      .footer-item:nth-child(2n) {
        border-right: none;
      }
      .footer-item:last-child,
      .footer-item:nth-last-child(2) {
        border-bottom: none;
      }
    }

    @media (max-width: 420px) {
      nav {
        padding: 12px 16px;
      }
      .nav-toggle {
        right: 16px;
        top: 13px;
      }
      .footer-nav {
        grid-template-columns: 1fr;
      }
      .footer-item,
      .footer-item:nth-child(2n) {
        border-right: none;
      }
      .footer-item:nth-last-child(2) {
        border-bottom: 1px solid #e0e0e0;
      }
      .footer-item:last-child {
        border-bottom: none;
      }
    }

    /* ── Background music mute/unmute button ── */
    #muteToggle {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 46px; height: 46px;
      border-radius: 50%;
      border: 1.5px solid #c8941a;
      background: rgba(255,255,255,.92);
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 999;
      box-shadow: 0 2px 10px rgba(0,0,0,.15);
      transition: transform .18s, background .18s;
    }
    #muteToggle:hover { transform: scale(1.08); background: #fff; }
    /* ABOUT PAGE */
    .about-hero {
      padding-bottom: 52px;
    }
    .about-main {
      max-width: 1157px;
      margin: 0 auto;
      padding: 58px 60px 70px;
      background: #fff;
    }
    .about-intro {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(220px, .55fr);
      gap: 56px;
      align-items: center;
    }
    .section-kicker {
      color: #c8941a;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .22em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .about-copy h2 {
      color: #1a1a2e;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 900;
      line-height: 1.08;
      max-width: 760px;
      margin-bottom: 20px;
    }
    .about-copy p {
      color: #555;
      font-size: 14px;
      line-height: 1.85;
      max-width: 760px;
      margin-bottom: 14px;
    }
    .about-mark {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 260px;
      border: 1.5px solid #e6d3a0;
      background: #fafafa;
    }
    .about-mark img {
      width: min(68%, 210px);
      height: auto;
      display: block;
      filter: drop-shadow(0 10px 22px rgba(0,0,0,.12));
    }
    .about-values {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0;
      margin-top: 54px;
      border-top: 1.5px solid #ddd;
      border-bottom: 1.5px solid #ddd;
    }
    .about-values article {
      padding: 28px 26px;
      border-right: 1px solid #e0e0e0;
    }
    .about-values article:last-child {
      border-right: none;
    }
    .about-values span {
      display: block;
      color: #c8941a;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .about-values h3 {
      color: #1a1a2e;
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .about-values p {
      color: #555;
      font-size: 13px;
      line-height: 1.7;
    }
    @media (max-width: 760px) {
      .hero {
        padding-top: 30px;
      }
      .welcome-row::before,
      .welcome-row::after {
        flex-basis: 34px;
      }
      .about-main {
        padding: 42px 22px 54px;
      }
      .about-intro {
        grid-template-columns: 1fr;
        gap: 34px;
      }
      .about-mark {
        min-height: 220px;
      }
      .about-values {
        grid-template-columns: 1fr;
      }
      .about-values article {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
      }
      .about-values article:last-child {
        border-bottom: none;
      }
    }

    /* CONTACT PAGE */
  
    .contact-main {
      max-width: 1157px;
      margin: 0 auto;
      padding: 58px 60px 70px;
      background: #fff;
    }
    .contact-layout {
      display: grid;
      grid-template-columns: minmax(280px, .95fr) minmax(280px, 1.05fr);
      gap: 46px;
      align-items: stretch;
    }
    .contact-copy h2 {
      color: #1a1a2e;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 900;
      line-height: 1.08;
      margin-bottom: 10px;
    }
    .contact-copy p {
      color: #555;
      font-size: 14px;
      line-height: 1.85;
      margin-bottom: 24px;
    }
    .contact-details {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .contact-details article,
    .contact-info-strip article {
      border: 1.5px solid #e6d3a0;
      background: #fafafa;
      padding: 10px;
    }
    .contact-details span,
    .contact-office span,
    .contact-info-strip span {
      display: block;
      color: #c8941a;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 9px;
    }
    .contact-details a {
      color: #1a1a2e;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.6;
      text-decoration: none;
      overflow-wrap: anywhere;
    }
    .contact-details a:hover {
      color: #c8941a;
    }
    .contact-office {
      min-height: 100%;
      padding: 34px;
      border: 1.5px solid #d8d8d8;
      background: linear-gradient(135deg, #1a1a2e 0%, #252541 100%);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .contact-office h3 {
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.1;
      margin-bottom: 18px;
      font-weight: 900;
    }
    .contact-office p {
      color: #f5f1e7;
      font-size: 15px;
      line-height: 1.9;
      margin: 0;
    }
    .contact-info-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }
    .contact-info-strip p {
      color: #555;
      font-size: 13px;
      line-height: 1.7;
      margin: 0;
    }

    @media (max-width: 760px) {
      .contact-main {
        padding: 42px 22px 54px;
      }
      .contact-layout,
      .contact-details,
      .contact-info-strip {
        grid-template-columns: 1fr;
      }
      .contact-layout {
        gap: 24px;
      }
      .contact-office {
        padding: 26px 22px;
      }
    }

    /* SITE FOOTER */
    .site-footer {
      background: #1a1a2e;
      color: #fff;
      border-top: 3px solid #c8941a;
    }
      .site-footer-inner {
      max-width: 1157px;
      margin: 0 auto;
      padding: 28px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .site-footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
      text-decoration: none;
      color: inherit;
    }
    .site-footer-brand .logo-ring {
      width: 44px;
      height: 44px;
      font-size: 22px;
      background: #fff;
    }
    .site-footer-brand .logo-text .t,
    .site-footer-brand .logo-text .b {
      color: #fff;
    }
    .site-footer-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 26px;
      flex-wrap: wrap;
    }
    .site-footer-links a {
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      text-decoration: none;
      transition: color .18s;
    }
    .site-footer-links a:hover {
      color: #c8941a;
    }
    .site-footer p {
      color: rgba(255,255,255,.72);
      font-size: 11px;
      font-weight: 600;
      line-height: 1.6;
      text-align: right;
      margin: 0;
      max-width: 250px;
    }

    @media (max-width: 760px) {
      .site-footer-inner {
        padding: 28px 22px;
        flex-direction: column;
        text-align: center;
        align-items: center;
      }
      .site-footer-links {
        gap: 14px 22px;
      }
      .site-footer p {
        text-align: center;
      }
      .drum-typed-label {
    font-size: 14px;
}
[src="images/logo1.svg"] {
    width: 61px !important;
    height: auto !important;
}

[src="images/logo3.svg"] {
    width: 41px !important;
    height: auto !important;
}
[src="images/logo2.svg"] {
    width: 44px !important;
    height: auto !important;
            margin-top: -7px;
}
[src="images/logo4.svg"] {
    width: 42px !important;
    height: auto !important;
}
[src="images/logo6.svg"] {
    width: 61px !important;
    height: auto !important;
    margin-top: -9px;
}
[src="images/logo5.svg"] {
    width: 60px !important;
    height: auto !important;
}
.drum-stage.mode-typing-taglines .drum-typed-label {
    font-size: 9px !important;
    letter-spacing: -1px;
}

    }
    @media (max-width: 420px) {
      .site-footer-inner {
        padding: 26px 16px;
      }
      .site-footer-links {
        flex-direction: column;
        gap: 12px;
      }
      .site-footer p {
        max-width: none;
      }
      .slider-arrow {
    transform: translateY(10%);
    top: auto;
}
    }
