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

    :root {
      /* Dark palette */
      --dk: #000000;
      --dk2: #080808;
      --dk3: #0e0e0e;
      --dks: #141414;
      --dks2: #1c1c1c;
      --dkb: #1e1e1e;
      --dkb2: #2a2a2a;
      --dkt1: #f0f0f0;
      --dkt2: #888;
      --dkt3: #8a8a8a;
      /* Light palette */
      --lt: #ffffff;
      --lt2: #f6f6f6;
      --lt3: #eeeeee;
      --ltb: #e0e0e0;
      --ltb2: #ccc;
      --ltt1: #111;
      --ltt2: #555;
      --ltt3: #717171;
      /* Shared */
      --accent: #F5C518;
      --a2: #c9a000;
    }

    html {
      scroll-behavior: smooth
    }

    /* anchor offset: clear the fixed header on in-page jumps */
    :target,
    section[id] {
      scroll-margin-top: 72px
    }

    /* keyboard focus visibility (WCAG 2.4.7) */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    .ham:focus-visible,
    [tabindex]:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
      border-radius: 2px
    }

    /* Suppress the browser's default (blue) focus ring on mouse/touch focus.
       Keyboard focus still shows the gold ring via :focus-visible above. */
    a:focus:not(:focus-visible),
    button:focus:not(:focus-visible),
    [tabindex]:focus:not(:focus-visible) {
      outline: none
    }

    body {
      background: var(--dk);
      color: var(--dkt1);
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 16px;
      overflow-x: hidden;
      padding-bottom: 56px
    }

    /* sections alternate */
    .dark-sec {
      background: var(--dk2);
      color: var(--dkt1)
    }

    .dark-sec-alt {
      background: var(--dk3);
      color: var(--dkt1)
    }

    .light-sec {
      background: var(--lt);
      color: var(--ltt1)
    }

    .light-sec-alt {
      background: var(--lt2);
      color: var(--ltt1)
    }

    /* section divider line */
    .sec-div {
      height: 3px;
      background: var(--accent)
    }

    /* fade-in */
    .fi {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .65s ease, transform .65s ease
    }

    .fi.vis {
      opacity: 1;
      transform: none
    }

    .d1 {
      transition-delay: .1s
    }

    .d2 {
      transition-delay: .2s
    }

    .d3 {
      transition-delay: .3s
    }

    .d4 {
      transition-delay: .4s
    }

    .d5 {
      transition-delay: .5s
    }

    /* layout */
    .sec {
      padding: 72px 20px
    }

    .wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px
    }

    .sec-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 36px
    }

    /* eyebrow + headings (dark context) */
    .ey-d {
      font-size: 11px;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--dkt3);
      margin-bottom: 10px
    }

    .ey-d::before {
      content: '— ';
      color: var(--accent)
    }

    .sh-d {
      font-size: clamp(26px, 6vw, 52px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .02em;
      line-height: 1.04;
      color: var(--dkt1);
      margin-bottom: 36px
    }

    /* eyebrow + headings (light context) */
    .ey-l {
      font-size: 11px;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--ltt3);
      margin-bottom: 10px
    }

    .ey-l::before {
      content: '— ';
      color: var(--a2)
    }

    .sh-l {
      font-size: clamp(26px, 6vw, 52px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .02em;
      line-height: 1.04;
      color: var(--ltt1);
      margin-bottom: 36px
    }

    .view-all-d {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--dkt3);
      text-decoration: none;
      transition: color .2s
    }

    .view-all-d:hover {
      color: var(--accent)
    }

    .view-all-l {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ltt3);
      text-decoration: none;
      border-bottom: 2px solid transparent;
      padding-bottom: 2px;
      transition: all .2s
    }

    .view-all-l:hover {
      color: var(--ltt1);
      border-color: var(--accent)
    }

    .sec-cta {
      text-align: center;
      margin-top: 32px
    }

    .sec-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      padding: 0 32px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1.5px solid var(--accent);
      color: var(--accent);
      background: transparent;
      transition: all .25s
    }

    .sec-cta-btn:hover {
      background: var(--accent);
      color: #000
    }

    /* buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 52px;
      padding: 0 36px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all .22s
    }

    .btn-y {
      background: var(--accent);
      color: #000
    }

    .btn-y:hover {
      background: var(--a2)
    }

    .btn-od {
      background: transparent;
      color: var(--dkt1);
      border: 1px solid rgba(255, 255, 255, .3)
    }

    .btn-od:hover {
      border-color: var(--accent);
      color: var(--accent)
    }

    .btn-ol {
      background: transparent;
      color: var(--ltt1);
      border: 2px solid var(--ltt1)
    }

    .btn-ol:hover {
      background: var(--ltt1);
      color: #fff
    }

    /* ── HEADER ── */
    .hdr {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
      padding: 0 20px;
      background: rgba(0, 0, 0, .85);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--dkb);
      transition: all .3s
    }

    .hdr.lite {
      background: rgba(255, 255, 255, .96);
      border-bottom-color: var(--ltb);
      border-bottom-width: 2px
    }

    .logo {
      font-size: 15px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--dkt1);
      text-decoration: none;
      transition: color .2s
    }

    .hdr.lite .logo {
      color: var(--ltt1)
    }

    .logo em {
      color: var(--accent);
      font-style: normal
    }

    .hdr-r {
      display: flex;
      align-items: center;
      gap: 16px
    }

    .hdr-icon {
      color: rgba(255, 255, 255, .6);
      text-decoration: none;
      font-size: 18px;
      transition: opacity .2s;
      opacity: .85
    }

    .hdr.lite .hdr-icon {
      opacity: .7
    }

    .hdr-icon:hover {
      opacity: 1
    }

    .ham {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 4px
    }

    .ham span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dkt1);
      transition: all .3s
    }

    .hdr.lite .ham span {
      background: var(--ltt1)
    }

    /* drawer */
    .drawer {
      position: fixed;
      top: 0;
      right: -100%;
      bottom: 0;
      width: min(300px, 88vw);
      z-index: 200;
      background: var(--dk2);
      border-left: 1px solid var(--dkb);
      transition: right .35s ease;
      display: flex;
      flex-direction: column;
      overflow: hidden
    }

    .drawer.open {
      right: 0
    }

    .d-hdr {
      display: flex;
      align-items: center;
      padding: 0 16px;
      height: 54px;
      border-bottom: 1px solid var(--dkb);
      flex-shrink: 0
    }

    .d-hdr-logo {
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .15em;
      color: var(--dkt1)
    }

    .drawer-close {
      background: none;
      border: 1px solid var(--dkb2);
      border-radius: 4px;
      cursor: pointer;
      color: var(--dkt2);
      font-size: 13px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      flex-shrink: 0
    }

    .d-lang-row {
      padding: 11px 16px;
      border-bottom: 1px solid var(--dkb);
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0
    }

    .d-lang {
      display: inline-flex;
      height: 26px;
      border: 1.5px solid var(--dkb2);
      border-radius: 4px;
      overflow: hidden
    }

    .d-lang-btn {
      height: 100%;
      padding: 0 9px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--dkt3);
      display: flex;
      align-items: center;
      cursor: pointer;
      text-decoration: none;
      transition: color .15s, background .15s
    }

    a.d-lang-btn:hover {
      color: var(--dkt2)
    }

    .d-lang-btn.active {
      background: var(--accent);
      color: var(--ltt1);
      font-weight: 800;
      cursor: default
    }

    .d-lang-sep {
      width: 1px;
      background: var(--dkb2)
    }

    .d-lang-badge {
      font-size: 6px;
      font-weight: 700;
      background: var(--dks);
      color: var(--dkt3);
      border-radius: 2px;
      padding: 2px 5px;
      letter-spacing: .08em;
      border: 1px solid var(--dkb)
    }

    .d-lang-note {
      font-size: 7.5px;
      color: var(--dkt3)
    }

    .d-nav {
      flex: 1;
      overflow-y: auto
    }

    .d-nav-item {
      display: flex;
      align-items: center;
      height: 52px;
      padding: 0 16px;
      border-bottom: 1px solid var(--dkb);
      cursor: pointer;
      user-select: none
    }

    .d-nav-item.current {
      border-left: 3px solid var(--dkt3);
      padding-left: 13px;
      background: rgba(255, 255, 255, .015)
    }

    .d-nav-item.open {
      background: rgba(255, 255, 255, .02)
    }

    .d-nav-label {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--dkt2);
      flex: 1;
      text-decoration: none
    }

    .d-nav-item.current .d-nav-label,
    .d-nav-item.open .d-nav-label {
      color: var(--dkt1)
    }

    .d-chevron {
      font-size: 9px;
      color: var(--dkt3);
      transition: transform .2s;
      flex-shrink: 0
    }

    .d-nav-item.open .d-chevron {
      transform: rotate(180deg)
    }

    .d-sub {
      background: var(--dk);
      display: none;
      border-bottom: 1px solid var(--dkb)
    }

    .d-sub.open {
      display: block
    }

    .d-sub-row {
      display: flex;
      align-items: center;
      min-height: 40px;
      padding: 8px 16px 8px 28px;
      border-bottom: 1px solid var(--dkb);
      gap: 10px;
      text-decoration: none
    }

    .d-sub-row:last-child {
      border-bottom: none
    }

    .d-sub-dash {
      width: 10px;
      height: 1px;
      background: var(--dkb2);
      flex-shrink: 0
    }

    .d-sub-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .05em;
      color: var(--dkt3)
    }

    .d-footer {
      border-top: 1px solid var(--dkb);
      padding: 14px 16px 16px;
      flex-shrink: 0
    }

    .d-sns {
      display: flex;
      gap: 8px;
      margin-bottom: 12px
    }

    .d-sns-btn {
      width: 32px;
      height: 32px;
      border: 1px solid var(--dkb);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8.5px;
      font-weight: 700;
      color: var(--dkt3);
      text-decoration: none
    }

    .d-contact-txt {
      font-size: 8.5px;
      color: var(--dkt3);
      line-height: 2;
      letter-spacing: .03em
    }

    .scrim {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 150;
      background: rgba(0, 0, 0, .6)
    }

    .scrim.on {
      display: block
    }

    /* ── HERO — DARK ── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: var(--dk)
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      will-change: transform
    }

    /* ── Hero Fade Slider ── */
    .hero-slides {
      position: absolute;
      inset: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 35%;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1.4s ease;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .36) 35%, rgba(0, 0, 0, .96) 100%)
    }

    /* ── Slider Dots ── */
    .hero-dots {
      /* In flow where .hero-line used to sit (active dot doubles as the
         gold accent bar) — never collides with text at any viewport. */
      display: flex;
      gap: 8px;
      margin: 10px 0 22px;
    }

    .hero-dot {
      width: 28px;
      height: 3px;
      background: rgba(255, 255, 255, .22);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background .35s ease, width .35s ease;
    }

    .hero-dot.active {
      background: var(--accent);
      width: 44px;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding: 120px 24px 0;
      flex: 1;
      max-width: 800px
    }

    .hero-ey {
      font-size: 9px;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 18px
    }

    .hero-h1 {
      font-size: clamp(36px, 9vw, 92px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .01em;
      line-height: .92;
      color: #fff;
      margin-bottom: 20px
    }

    .hero-h1 .dot {
      color: var(--accent)
    }

    .hero-sub {
      font-size: 12px;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 36px
    }

    .hero-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    .scroll-ind {
      position: absolute;
      bottom: 128px;
      right: 24px;
      z-index: 1;
      font-size: 7px;
      letter-spacing: .34em;
      text-transform: uppercase;
      color: var(--dkt3);
      writing-mode: vertical-lr
    }

    .scroll-ind::after {
      content: '';
      display: block;
      width: 1px;
      height: 44px;
      background: var(--dkt3);
      margin: 8px auto 0
    }

    /* stats bar — DARK style */
    .stats-bar {
      position: relative;
      z-index: 1;
      display: flex;
      border-top: 1px solid rgba(255, 255, 255, .08);
      background: rgba(0, 0, 0, .78);
      backdrop-filter: blur(8px)
    }

    .stat {
      flex: 1;
      padding: 22px 14px;
      border-right: 1px solid rgba(255, 255, 255, .06)
    }

    .stat:last-child {
      border-right: none
    }

    .stat-n {
      font-size: clamp(22px, 5vw, 38px);
      font-weight: 900;
      color: var(--accent);
      line-height: 1
    }

    .stat-l {
      font-size: 9px;
      letter-spacing: .22em;
      text-transform: uppercase;
      margin-top: 4px
    }

    /* ── WHY — LIGHT ── */
    .why-sec {
      background: var(--lt);
      padding: 80px 20px
    }

    /* heading accent (moved off inline style for Polylang/wp_kses output) */
    .why-sec .sh-l em {
      color: var(--accent);
      font-style: normal
    }

    /* accent left-rule on section */
    .why-sec::before {
      display: none
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin-top: 40px;
      border: 2px solid var(--ltb)
    }

    .why-card {
      padding: 28px 22px;
      border-right: 2px solid var(--ltb);
      border-bottom: 2px solid var(--ltb);
      position: relative;
      overflow: hidden;
      background: var(--lt)
    }

    .why-card:nth-child(2n) {
      border-right: none
    }

    .why-card:nth-child(5),
    .why-card:nth-child(6) {
      border-bottom: none
    }

    .why-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--accent);
      z-index: 0
    }

    .why-num {
      display: block;
      font-size: 38px;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 10px;
      position: relative;
      z-index: 1
    }

    .why-t {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ltt1);
      margin-bottom: 8px;
      position: relative;
      z-index: 1
    }

    .why-d {
      font-size: 13px;
      color: var(--ltt2);
      line-height: 1.65;
      position: relative;
      z-index: 1
    }

    /* ── SERVICES — DARK ── */
    .svc-sec {
      background: var(--dk3);
      padding: 72px 20px
    }

    .svc-grid {
      display: grid;
      gap: 12px;
      margin-top: 40px
    }

    /* JA: hide the US-military-only Yahoo Auctions Proxy service tile + nav entries */
    body.mmf-ja .svc-yahoo,
    body.mmf-ja .nav-yahoo {
      display: none
    }

    /* JA: badge labels (在庫あり / お取り寄せ) are self-explanatory — drop the "= ..." legend notes + separator */
    body.mmf-ja .badge-note,
    body.mmf-ja .badge-sep {
      display: none
    }

    .svc-card {
      display: block;
      color: inherit;
      text-decoration: none;
      background: var(--dks);
      border: 1px solid var(--dkb);
      padding: 0;
      position: relative;
      overflow: hidden
    }

    .svc-card:hover {
      border-color: var(--accent)
    }

    .svc-card:hover .svc-lnk {
      border-color: var(--accent);
      opacity: .75
    }

    .svc-card-inner {
      position: relative;
      z-index: 1
    }

    .svc-icon {
      font-size: 30px;
      margin-bottom: 18px;
      display: block
    }

    .svc-img {
      width: 100%;
      aspect-ratio: 2/1;
      overflow: hidden;
      display: block;
      position: relative
    }

    .svc-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
          transparent 30%,
          rgba(0, 0, 0, .55) 70%,
          rgba(0, 0, 0, .82) 100%);
      pointer-events: none;
      z-index: 1
    }

    .svc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease
    }

    .svc-body {
      padding: 24px 24px 26px
    }

    .svc-t {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--dkt1);
      margin-bottom: 10px
    }

    .svc-d {
      font-size: 14px;
      color: var(--dkt2);
      line-height: 1.65;
      margin-bottom: 20px
    }

    .svc-lnk {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1.5px solid transparent;
      padding-bottom: 1px;
      transition: border-color .2s, opacity .2s
    }

    .svc-lnk:hover {
      border-color: var(--accent);
      opacity: .75
    }

    .svc-card:hover .svc-img img {
      transform: scale(1.05)
    }

    /* ── BRANDS — LIGHT WHITE diagonal ── */
    .brands-sec {
      background: var(--lt);
      padding: 80px 20px 0;
      clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 calc(100% - 28px));
      margin: -28px 0;
      position: relative;
      z-index: 2
    }

    .brand-track-wrap {
      margin-top: 36px;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%)
    }

    .brand-track {
      display: flex;
      gap: 44px;
      width: max-content;
      animation: bScroll 20s linear infinite
    }

    @keyframes bScroll {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    @media(max-width:767px) {
      .brand-track {
        animation-duration: 30s
      }
    }

    .brand-item {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      cursor: default
    }

    .brand-item img {
      height: 40px;
      width: auto;
      display: block;
      object-fit: contain
    }

    .brand-item.txt {
      height: 40px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .08em;
      color: rgba(255, 255, 255, .7);
      text-transform: uppercase;
      white-space: nowrap
    }

    /* ── BRAND MORE ACCORDION ── */
    .brand-more-wrap {
      text-align: center;
      padding: 28px 0 56px
    }

    .brand-more-cta {
      margin-top: 28px;
      padding: 24px 20px;
      border-top: 1px solid rgba(0, 0, 0, .1)
    }

    .brand-more-cta p {
      font-size: 13px;
      color: #444;
      letter-spacing: .03em;
      line-height: 1.7;
      margin-bottom: 16px
    }

    .brand-more-cta a {
      display: inline-block;
      background: var(--accent);
      color: #000;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 12px 28px;
      text-decoration: none;
      transition: opacity .2s
    }

    .brand-more-cta a:hover {
      opacity: .8
    }

    .brand-more-btn {
      display: block;
      width: 100%;
      text-align: center;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      color: #111;
      text-transform: uppercase;
      padding: 20px 0 6px;
      line-height: 2
    }

    .brand-more-btn em {
      color: var(--accent);
      font-style: normal;
      text-decoration: underline;
      text-underline-offset: 3px
    }

    .ic-arrow-dn,
    .ic-arrow-up {
      width: 18px;
      height: 18px;
      color: var(--accent);
      vertical-align: middle;
      margin-left: 6px;
      flex-shrink: 0
    }

    .ic-arrow-up {
      display: none
    }

    .brand-more-btn.open .ic-arrow-dn {
      display: none
    }

    .brand-more-btn.open .ic-arrow-up {
      display: inline-block
    }

    .brand-more-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height .6s ease
    }

    .brand-more-panel.open {
      max-height: 900px
    }

    @media(max-width: 767px) {
      .brand-more-panel.open {
        max-height: 2200px
      }
    }

    .brand-more-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 20px;
      border-top: 1px solid rgba(0, 0, 0, .1);
      border-left: 1px solid rgba(0, 0, 0, .1)
    }

    .brand-more-grid span {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      color: #111;
      padding: 9px 6px;
      text-align: center;
      border-right: 1px solid rgba(0, 0, 0, .1);
      border-bottom: 1px solid rgba(0, 0, 0, .1)
    }

    @media(max-width: 767px) {
      .brand-more-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    /* ── VEHICLES — DARK ── */
    .veh-sec {
      background: var(--dk2);
      padding: 72px 20px
    }

    .veh-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .veh-card {
      overflow: hidden;
      display: block
    }

    .veh-img {
      position: relative;
      padding-top: 65%;
      overflow: hidden;
      background: var(--dks2)
    }

    .veh-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .veh-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      background: var(--accent);
      color: #000;
      padding: 4px 10px;
      margin-bottom: 8px
    }



    .veh-body {
      padding: 18px 0px
    }

    .veh-price {
      font-size: 15px;
      font-weight: 900;
      color: var(--accent);
      margin-bottom: 5px
    }

    .veh-name {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--dkt1);
      margin-bottom: 5px
    }

    .veh-spec {
      font-size: 13px;
      color: var(--dkt2)
    }

    /* ── PARTS — LIGHT ── */
    .parts-sec {
      background: var(--lt);
      padding: 72px 20px
    }

    .parts-inner {
      border: 2px solid var(--ltb);
      padding: 40px 28px;
      position: relative;
      overflow: hidden
    }

    .parts-inner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: var(--accent)
    }

    .parts-big {
      font-size: clamp(60px, 18vw, 140px);
      font-weight: 900;
      color: var(--accent);
      letter-spacing: -.02em;
      line-height: .9;
      margin-bottom: 4px
    }

    .parts-big-sub {
      font-size: 12px;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--ltt2);
      margin-bottom: 36px
    }

    .parts-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px
    }

    .chip-l {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ltt2);
      border: 1.5px solid var(--ltb2);
      padding: 6px 14px;
      transition: all .2s;
      cursor: default
    }

    .chip-l:hover {
      border-color: var(--accent);
      color: var(--a2)
    }

    /* ── CUSTOM WORK — DARK ── */
    .custom-sec {
      background: var(--dk3);
      padding: 72px 20px
    }

    .custom-grid {
      display: grid;
      gap: 20px;
      margin-top: 36px
    }

    .ccard {
      background: var(--dks);
      border: 1px solid var(--dkb);
      overflow: hidden
    }

    .ccard:hover {
      border-color: var(--accent)
    }

    .ccard:hover .chalf img {
      transform: scale(1.05)
    }

    .ccard-imgs {
      display: flex;
      position: relative
    }

    .ccard-imgs::after {
      content: '';
      position: absolute;
      left: calc(50% - 1.5px);
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--accent);
      z-index: 2;
      pointer-events: none
    }

    .chalf {
      flex: 1;
      position: relative;
      padding-top: 58%;
      background: var(--dks2);
      overflow: hidden
    }

    .chalf img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease
    }

    .chalf-before img {
      filter: none
    }

    /* no-before: BEFOREなしカード → AFTERを全幅表示・仕切りライン非表示 */
    .ccard.no-before .chalf-before {
      display: none
    }

    .ccard.no-before .ccard-imgs::after {
      display: none
    }

    .ba-lbl {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
      padding: 7px 0;
      text-align: center
    }

    .ba-b {
      background: rgba(0, 0, 0, .82);
      color: #fff
    }

    .ba-a {
      background: var(--accent);
      color: #000
    }

    .ccard-info {
      padding: 14px 16px;
      border-top: 2px solid var(--accent)
    }

    .ccard-t {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--dkt1)
    }

    .ccard-d {
      font-size: 12px;
      line-height: 1.65;
      color: var(--dkt2);
      margin-top: 6px
    }

    /* ── AWARDS — LIGHT ── */
    .awards-sec {
      background: var(--lt2);
      text-align: center;
      padding: 80px 24px;
      clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 calc(100% - 28px));
      margin: -28px 0;
      position: relative;
      z-index: 2
    }

    .awards-line {
      width: 3px;
      height: 64px;
      background: var(--accent);
      margin: 0 auto 28px
    }

    .awards-eye {
      font-size: 11px;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--ltt3);
      margin-bottom: 12px
    }

    .awards-h {
      font-size: clamp(22px, 6vw, 48px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: var(--ltt1);
      line-height: 1.1;
      margin-bottom: 20px
    }

    .awards-desc {
      font-size: 14px;
      color: var(--ltt2);
      line-height: 1.75;
      max-width: 520px;
      margin: 0 auto 32px
    }

    .awards-wins {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--accent);
      max-width: 500px;
      margin: 0 auto 32px
    }

    .award-win {
      background: var(--lt);
      padding: 22px 16px;
      position: relative;
      overflow: hidden;
      min-height: 160px;
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    .award-win::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/icon/award_bg_gold.png') center/100% no-repeat;
      opacity: 0.45;
      pointer-events: none
    }

    .award-win-yr {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      color: var(--accent);
      margin-bottom: 8px
    }

    .award-win-name {
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ltt1);
      margin-bottom: 6px;
      line-height: 1.25
    }

    .award-win-event {
      font-size: 10px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--ltt3)
    }

    .awards-feat {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px 20px
    }

    .af-item {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--ltt3)
    }

    .af-sep {
      color: var(--ltb2)
    }

    .awards-photo-row {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 36px;
      padding-top: 32px;
      border-top: 1px solid var(--ltb)
    }

    .awards-photo-item {
      width: 140px;
      background: var(--lt3);
      border: 2px dashed var(--ltb2);
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 16px 10px;
      gap: 8px
    }

    .awards-photo-item.ap-has-photo {
      border: none;
      padding: 0;
      overflow: hidden;
      background: none;
      border-radius: 0
    }

    .awards-photo-item.ap-has-photo img {
      width: 140px;
      height: 140px;
      object-fit: cover;
      border-radius: 0;
      display: block
    }

    .awards-photo-item.ap-has-photo .ap-label {
      padding: 6px 4px 2px;
      font-size: 8px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ltt3);
      text-align: center;
      line-height: 1.5
    }

    .awards-photo-item .ap-icon {
      font-size: 22px;
      opacity: .4
    }

    .awards-photo-item .ap-label {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ltt3);
      text-align: center;
      line-height: 1.5
    }

    .awards-rays {
      margin-top: 36px;
      padding: 20px 24px;
      background: var(--lt);
      border: 2px solid var(--accent);
      border-radius: 4px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto
    }

    .awards-rays-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--ltt3);
      margin-bottom: 6px
    }

    .awards-rays-title {
      font-size: 15px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ltt1);
      margin-bottom: 4px
    }

    .awards-rays-sub {
      font-size: 10px;
      color: var(--ltt3);
      letter-spacing: .06em
    }

    /* ── REVIEWS — DARK ── */
    .reviews-sec {
      background: var(--dk2);
      padding: 72px 20px
    }

    .rev-grid {
      display: grid;
      gap: 20px;
      margin-top: 36px
    }

    .rev-card {
      background: var(--dks);
      border: 1px solid var(--dkb);
      padding: 24px;
      position: relative
    }

    .rev-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 100%;
      background: var(--accent)
    }

    .rev-stars {
      color: var(--accent);
      font-size: 13px;
      letter-spacing: 2px;
      margin-bottom: 12px
    }

    .rev-txt {
      font-size: 14px;
      color: var(--dkt1);
      line-height: 1.7;
      margin-bottom: 16px
    }

    .rev-name {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--dkt2)
    }

    /* ── EVENTS — LIGHT ── */
    .events-sec {
      background: var(--lt);
      padding: 72px 20px
    }

    .events-grid {
      display: grid;
      gap: 10px;
      margin-top: 36px
    }

    .ev-card {
      background: var(--lt);
      border: 2px solid var(--ltb);
      display: flex;
      overflow: hidden;
      text-decoration: none;
      transition: border-color .25s, box-shadow .25s
    }

    .ev-card:hover {
      border-color: var(--accent);
      box-shadow: 0 4px 16px rgba(0, 0, 0, .07)
    }

    .ev-arrow {
      font-size: 14px;
      flex-shrink: 0;
      align-self: center;
      color: var(--ltt3);
      padding-right: 16px;
      transition: color .2s, transform .2s
    }

    .ev-card:hover .ev-arrow {
      color: var(--accent);
      transform: translateX(4px)
    }

    .ev-date {
      flex-shrink: 0;
      text-align: center;
      background: var(--dk);
      color: #fff;
      padding: 14px 12px;
      min-width: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center
    }

    .ev-mo {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--accent)
    }

    .ev-d {
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
      color: #fff
    }

    .ev-body {
      padding: 16px 18px;
      flex: 1
    }

    .ev-t {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ltt1);
      margin-bottom: 5px
    }

    .ev-desc {
      font-size: 13px;
      color: var(--ltt2);
      line-height: 1.55
    }

    /* ── VIDEO — DARK ── */
    .video-sec {
      background: var(--dk3);
      padding: 72px 20px
    }

    .vid-wrap {
      position: relative;
      padding-top: 56.25%;
      margin-top: 36px;
      background: var(--dks);
      border: 1px solid var(--dkb)
    }

    .vid-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none
    }

    .video-chevron {
      height: 72px;
      background: var(--lt2);
      clip-path: polygon(0 0, 100% 0, 50% 100%)
    }

    .ev-fb-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #1877F2;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 4px;
      transition: background .2s
    }

    .ev-fb-btn:hover {
      background: #1464d8
    }

    /* Reviews CTA: Google-branded button (external, new tab) */
    .rev-google-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: #1a1a1a;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 13px 24px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
      transition: box-shadow .2s, transform .2s
    }

    .rev-google-btn:hover {
      box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
      transform: translateY(-1px)
    }

    .rev-google-btn .g-logo {
      width: 18px;
      height: 18px;
      flex-shrink: 0
    }

    .rev-google-btn .ext {
      width: 14px;
      height: 14px;
      opacity: .5;
      flex-shrink: 0
    }

    /* Video CTA: YouTube-branded button (external, new tab) */
    .vid-yt-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #FF0000;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 13px 24px;
      border-radius: 4px;
      transition: background .2s, transform .2s
    }

    .vid-yt-btn:hover {
      background: #d90000;
      transform: translateY(-1px)
    }

    .vid-yt-btn .yt-logo {
      width: 24px;
      height: 17px;
      flex-shrink: 0
    }

    .vid-yt-btn .ext {
      width: 14px;
      height: 14px;
      opacity: .8;
      flex-shrink: 0
    }

    /* Instagram CTA: Instagram-branded button (external, new tab) */
    .ig-follow-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 13px 24px;
      border-radius: 4px;
      transition: filter .2s, transform .2s
    }

    .ig-follow-btn:hover {
      filter: brightness(1.08);
      transform: translateY(-1px)
    }

    .ig-follow-btn .ig-logo {
      width: 18px;
      height: 18px;
      flex-shrink: 0
    }

    .ig-follow-btn .ext {
      width: 14px;
      height: 14px;
      opacity: .85;
      flex-shrink: 0
    }

    .ev-fb-icon {
      width: 20px;
      height: 20px;
      filter: none;
      border-radius: 50%;
      flex-shrink: 0
    }

    /* ── FAQ — LIGHT ── */
    .faq-sec {
      background: var(--lt2);
      padding: 72px 20px
    }

    /* QUESTIONS? accent (moved off inline style for Polylang/wp_kses output) */
    .faq-sec .sh-l .accent {
      color: var(--accent)
    }

    .faq-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 36px
    }

    .faq-chat-lnk {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--ltt3);
      text-decoration: none;
      border-bottom: 2px solid transparent;
      padding-bottom: 2px;
      transition: all .2s
    }

    .faq-chat-lnk:hover {
      color: var(--ltt1);
      border-color: var(--accent)
    }

    .faq-list {
      display: flex;
      flex-direction: column
    }

    .faq-item {
      border-top: 2px solid var(--ltb)
    }

    .faq-item:last-child {
      border-bottom: 2px solid var(--ltb)
    }

    .faq-item.open {
      border-color: var(--accent)
    }

    .faq-q {
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      padding: 18px 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left
    }

    .faq-qn {
      font-size: 28px;
      font-weight: 900;
      color: var(--accent);
      flex-shrink: 0;
      min-width: 36px;
      line-height: 1
    }

    .faq-qt {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ltt1);
      flex: 1;
      text-align: left
    }

    .faq-tog {
      font-size: 20px;
      color: var(--ltt3);
      flex-shrink: 0;
      transition: transform .3s, color .3s;
      font-style: normal
    }

    .faq-item.open .faq-tog {
      transform: rotate(45deg);
      color: var(--accent)
    }

    .faq-ans {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease
    }

    .faq-ans-in {
      padding: 0 0 20px 38px;
      font-size: 14px;
      color: var(--ltt2);
      line-height: 1.75
    }

    /* ── CONTACT CTA — YELLOW ACCENT ── */
    .contact-sec {
      background: var(--accent);
      text-align: center;
      padding: 80px 24px
    }

    .contact-eye {
      font-size: 11px;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: rgba(0, 0, 0, .4);
      margin-bottom: 12px
    }

    .contact-h {
      font-size: clamp(28px, 7vw, 64px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .02em;
      color: var(--dk);
      line-height: 1.04;
      margin-bottom: 36px
    }

    .contact-icons {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 40px
    }

    .ci {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-decoration: none
    }

    .ci-ring {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(0, 0, 0, .2);
      font-size: 20px;
      background: rgba(0, 0, 0, .06);
      transition: all .2s
    }

    .ci:hover .ci-ring {
      background: var(--dk);
      border-color: var(--dk)
    }

    .ci-lbl {
      font-size: 11px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(0, 0, 0, .45)
    }

    /* ── CONTACT FORM (wireframe-aligned) ── */
    .contact-sec {
      text-align: left
    }

    .contact-inner-grid {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-top: 0
    }

    .contact-desc {
      font-size: 16px;
      color: rgba(0, 0, 0, .6);
      line-height: 1.8;
      margin-bottom: 20px
    }

    .contact-phone {
      font-size: 17px;
      font-weight: 800;
      color: var(--dk);
      letter-spacing: .02em;
      margin-bottom: 8px
    }

    .contact-hours-lbl {
      font-size: 17px;
      font-weight: 800;
      letter-spacing: .02em;
      text-transform: uppercase;
      color: var(--dk);
      margin-bottom: 6px
    }

    .contact-hours {
      font-size: 16px;
      color: rgba(0, 0, 0, .75);
      line-height: 1.8;
      letter-spacing: .04em;
      margin-bottom: 28px
    }

    /* gold section: phone & clock icons must be dark to be visible */
    .contact-phone .ic-phone,
    .contact-hours-lbl .ic-clock {
      filter: brightness(0) !important
    }

    .inquiry-form {
      display: flex;
      flex-direction: column;
      gap: 14px
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 5px
    }

    .form-lbl {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(0, 0, 0, .45)
    }

    .form-input {
      background: rgba(0, 0, 0, .06);
      border: 1px solid rgba(0, 0, 0, .15);
      border-radius: 3px;
      height: 44px;
      padding: 0 14px;
      font-size: 13px;
      color: rgba(0, 0, 0, .45);
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    select.form-select {
      width: 100%;
      background: rgba(0, 0, 0, .06);
      border: 1px solid rgba(0, 0, 0, .15);
      border-radius: 3px;
      height: 44px;
      padding: 0 14px;
      font-size: 13px;
      color: rgba(0, 0, 0, .45);
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(0,0,0,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      cursor: pointer;
      font-family: inherit
    }

    select.form-select:focus {
      outline: none;
      border-color: rgba(0, 0, 0, .35)
    }

    .form-textarea {
      background: rgba(0, 0, 0, .06);
      border: 1px solid rgba(0, 0, 0, .15);
      border-radius: 3px;
      min-height: 110px;
      padding: 12px 14px;
      font-size: 13px;
      color: rgba(0, 0, 0, .4);
      line-height: 1.65
    }

    .contact-divider {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 2px 0
    }

    .divider-line {
      flex: 1;
      height: 1px;
      background: rgba(0, 0, 0, .15)
    }

    .divider-txt {
      font-size: 10px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(0, 0, 0, .35)
    }

    @media(min-width:640px) {
      .contact-inner-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start
      }
    }

    /* ── FIND US — DARK ── */
    .findus-sec {
      background: var(--dk2);
      padding: 64px 24px
    }

    .findus-grid {
      display: grid;
      gap: 28px
    }

    .fi-info dt {
      font-size: 10px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--dkt3);
      margin-bottom: 4px
    }

    .fi-info dd {
      font-size: 14px;
      color: var(--dkt1);
      line-height: 1.65;
      margin-bottom: 20px
    }

    .map-ph {
      width: 100%;
      padding-top: 65%;
      background: var(--dks);
      border: 1px solid var(--dkb);
      position: relative;
      overflow: hidden;
      min-height: 240px
    }

    .map-ph span {
      position: absolute;
      inset: 0;
      display: block
    }

    .map-ph iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block
    }

    @media(min-width:600px) {
      .map-ph {
        padding-top: 55%;
        min-height: 0
      }
    }

    .fi-info dd a {
      color: inherit;
      text-decoration: none;
      transition: color .2s
    }

    .fi-info dd a:hover {
      color: var(--accent)
    }

    .fi-follow {
      margin-top: 28px;
      border-top: 1px solid var(--dkb);
      padding-top: 20px
    }

    .fi-follow-lbl {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--dkt3);
      margin-bottom: 12px
    }

    .fi-sns {
      display: flex;
      gap: 10px;
      flex-wrap: wrap
    }

    .fi-sns-link {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      border: 1px solid var(--dkb2);
      padding: 10px 16px;
      transition: border-color .2s
    }

    .fi-sns-link:hover {
      border-color: var(--accent)
    }

    .fi-sns-icon {
      font-size: 16px
    }

    .fi-sns-name {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--dkt2);
      transition: color .2s
    }

    .fi-sns-link:hover .fi-sns-name {
      color: var(--accent)
    }

    /* ── INSTAGRAM — LIGHT ── */
    .ig-sec {
      background: var(--lt);
      padding: 64px 20px
    }

    .ig-hdr {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px
    }

    .ig-handle {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ltt3);
      text-decoration: none;
      border-bottom: 2px solid transparent;
      padding-bottom: 2px;
      transition: all .2s
    }

    .ig-handle:hover {
      color: var(--ltt1);
      border-color: var(--accent)
    }

    .ig-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px
    }

    @media(min-width:600px) {
      .ig-grid {
        grid-template-columns: repeat(4, 1fr)
      }
    }

    @media(min-width:1024px) {
      .ig-grid {
        grid-template-columns: repeat(6, 1fr)
      }
    }

    .ig-item {
      position: relative;
      padding-top: 100%;
      overflow: hidden;
      background: var(--lt3)
    }

    .ig-item img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s
    }

    .ig-item:hover img {
      transform: scale(1.07)
    }

    /* ── ANTI-COUNTERFEIT ── */
    .anti-sec {
      background: var(--dk2);
      padding: 80px 24px;
      border-top: 3px solid var(--accent);
      border-bottom: 3px solid var(--accent)
    }

    .anti-inner {
      max-width: 960px;
      margin: 0 auto;
      text-align: center
    }

    .anti-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent);
      color: #000;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      padding: 8px 22px;
      margin-bottom: 20px
    }

    .anti-h {
      font-size: clamp(26px, 5.5vw, 46px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .03em;
      color: var(--dkt1);
      line-height: 1.05;
      margin-bottom: 16px
    }

    .anti-h em {
      color: var(--accent);
      font-style: normal
    }

    .anti-lead {
      font-size: 14px;
      color: var(--dkt2);
      line-height: 1.75;
      max-width: 580px;
      margin: 0 auto 48px
    }

    .anti-grid {
      display: grid;
      gap: 1px;
      text-align: left
    }

    .anti-point {
      background: var(--dks);
      padding: 28px 24px;
      position: relative;
      overflow: hidden
    }

    .anti-point::before {
      display: none
    }

    .anti-pi {
      font-size: 28px;
      margin-bottom: 14px;
      display: block
    }

    .anti-pt {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px
    }

    .anti-pd {
      font-size: 13px;
      color: var(--dkt2);
      line-height: 1.65
    }

    /* ── FOOTER ── */
    .footer {
      background: var(--dk);
      padding: 48px 24px 32px;
      border-top: 1px solid var(--dkb)
    }

    .f-inner {
      max-width: 1280px;
      margin: 0 auto
    }

    .f-logo {
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--dkt1);
      text-decoration: none;
      display: block;
      margin-bottom: 10px
    }

    .f-logo em {
      color: var(--accent);
      font-style: normal
    }

    .f-tag {
      font-size: 11px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--dkt3);
      margin-bottom: 36px
    }

    .f-grid {
      display: grid;
      gap: 32px;
      margin-bottom: 40px
    }

    .f-col h3 {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px
    }

    .f-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .f-list a {
      font-size: 12px;
      color: var(--dkt2);
      text-decoration: none;
      letter-spacing: .08em;
      transition: color .2s
    }

    .f-list a:hover {
      color: var(--accent)
    }

    /* Footer nav column mirrors the header nav; uppercase the EN labels to keep
       the footer look (no effect on Japanese characters). */
    .f-list.f-nav a {
      text-transform: uppercase
    }

    .f-sns-row {
      display: flex;
      gap: 14px;
      align-items: center;
      margin-top: 4px
    }

    .f-sns-row a {
      display: flex;
      align-items: center;
      opacity: .85;
      transition: opacity .2s
    }

    .f-sns-row a:hover {
      opacity: 1
    }

    .f-sns-icon {
      width: 26px;
      height: 26px;
      filter: none !important;
      display: block
    }

    .f-sns-icon.fb {
      border-radius: 50%
    }

    .f-sns-icon.yt {
      width: 30px;
      height: 26px;
      border-radius: 6px
    }

    .f-info {
      font-size: 13px;
      color: var(--dkt2);
      line-height: 1.75
    }

    .f-hours-lbl {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-top: 10px;
      margin-bottom: 4px
    }

    .f-btm {
      border-top: 1px solid var(--dkb);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px
    }

    .f-copy {
      font-size: 9px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--dkt3)
    }

    /* ── STICKY BAR ── */
    .sticky {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 90;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      height: 56px;
      background: var(--dk2);
      border-top: 1px solid var(--dkb)
    }

    .s-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      text-decoration: none;
      color: var(--dkt2);
      font-size: 7px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      border-right: 1px solid var(--dkb);
      transition: background .2s, color .2s
    }

    .s-btn:last-child {
      border-right: none
    }

    .s-btn:hover,
    .s-btn.hi {
      background: var(--accent);
      color: #000
    }

    .s-ic {
      font-size: 16px
    }

    /* ── DESKTOP GLOBAL NAV ── */
    .hdr-nav {
      display: none
    }

    .hdr-phone {
      display: none
    }

    .lang-tog {
      display: none
    }

    @media(min-width:1024px) {
      .hdr {
        padding: 0 40px
      }

      .hdr-nav {
        display: flex;
        align-items: center;
        gap: 28px;
        flex: 1;
        margin-left: 36px
      }

      .hdr-nav a {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--dkt2);
        text-decoration: none;
        white-space: nowrap;
        transition: color .2s
      }

      .hdr-nav a:hover {
        color: var(--dkt1)
      }

      .hdr.lite .hdr-nav a {
        color: var(--ltt2)
      }

      .hdr.lite .hdr-nav a:hover {
        color: var(--ltt1)
      }

      .hdr-nav a.has-sub::after {
        content: ' ▾';
        font-size: 8px;
        color: var(--dkt3)
      }

      .hdr.lite .hdr-nav a.has-sub::after {
        color: var(--ltt3)
      }

      /* ── DESKTOP DROPDOWN ── */
      .nav-grp {
        position: relative;
        display: flex;
        align-items: center;
        height: 60px
      }

      .nav-drop {
        position: absolute;
        top: 100%;
        left: -20px;
        min-width: 230px;
        background: rgba(0, 0, 0, .95);
        backdrop-filter: blur(10px);
        border: 1px solid var(--dkb2);
        padding: 6px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s
      }

      .nav-grp:hover .nav-drop {
        opacity: 1;
        visibility: visible;
        transform: none
      }

      .hdr-nav .nav-drop a {
        display: block;
        padding: 11px 20px;
        font-size: 10px;
        letter-spacing: .14em;
        color: var(--dkt2);
        border-bottom: 1px solid rgba(255, 255, 255, .06)
      }

      .hdr-nav .nav-drop a:last-child {
        border-bottom: none
      }

      .hdr-nav .nav-drop a:hover {
        color: var(--accent);
        background: rgba(255, 255, 255, .04)
      }

      .hdr.lite .nav-drop {
        background: rgba(255, 255, 255, .97);
        border-color: var(--ltb)
      }

      .hdr.lite .hdr-nav .nav-drop a {
        color: var(--ltt2);
        border-bottom-color: rgba(0, 0, 0, .06)
      }

      .hdr.lite .hdr-nav .nav-drop a:hover {
        color: var(--a2);
        background: rgba(0, 0, 0, .03)
      }

      .hdr-phone {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: var(--dkt2);
        letter-spacing: .06em;
        white-space: nowrap;
        text-decoration: none;
        transition: color .2s
      }

      .hdr-phone:hover {
        color: var(--dkt1)
      }

      .hdr.lite .hdr-phone {
        color: var(--ltt2)
      }

      .hdr.lite .hdr-phone:hover {
        color: var(--ltt1)
      }

      .lang-tog {
        display: flex;
        align-items: center;
        border: 1px solid var(--dkb2);
        border-radius: 3px;
        overflow: hidden
      }

      .lang-btn {
        font-size: 9px;
        font-weight: 700;
        padding: 5px 10px;
        letter-spacing: .1em;
        color: var(--dkt3);
        cursor: pointer;
        text-decoration: none;
        transition: color .15s, background .15s
      }

      a.lang-btn:hover {
        color: var(--dkt1)
      }

      .lang-btn.active {
        background: var(--accent);
        color: var(--ltt1);
        font-weight: 800;
        cursor: default
      }

      .hdr.lite a.lang-btn:hover {
        color: var(--ltt1)
      }

      .hdr.lite .lang-tog {
        border-color: var(--ltb)
      }

      .hdr.lite .lang-btn {
        color: var(--ltt3)
      }

      .hdr.lite .lang-btn.active {
        background: var(--accent);
        color: var(--ltt1);
        font-weight: 800
      }

      .ham {
        display: none
      }

      .hdr-icon {
        display: none
      }

      .sticky {
        display: none
      }

      body {
        padding-bottom: 0
      }
    }

    /* ── RESPONSIVE ── */
    @media(min-width:600px) {
      .why-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .why-card:nth-child(2n) {
        border-right: 2px solid var(--ltb)
      }

      .why-card:nth-child(3n) {
        border-right: none
      }

      .why-card:nth-child(4) {
        border-bottom: none
      }

      .anti-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .svc-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      /* JA: Yahoo Auctions Proxy hidden (US-military only) -> 2 full-width tiles */
      body.mmf-ja .svc-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .veh-grid {
        grid-template-columns: 1fr 1fr
      }

      .events-grid {
        grid-template-columns: 1fr 1fr
      }

      .rev-grid {
        grid-template-columns: 1fr 1fr
      }

      .custom-grid {
        grid-template-columns: 1fr 1fr
      }

      .findus-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(min-width:1024px) {
      .sec {
        padding: 96px 60px
      }

      .hero-inner {
        padding: 148px 80px 0
      }

      .stats-bar {
        padding: 36px 80px
      }

      .scroll-ind {
        right: 60px;
        bottom: 148px
      }

      .veh-grid {
        grid-template-columns: repeat(4, 1fr)
      }

      .rev-grid {
        grid-template-columns: repeat(4, 1fr)
      }

      .f-grid {
        grid-template-columns: repeat(4, 1fr)
      }
    }

    /* fi-contact desktop inline */
    .fi-contact-row {
      display: flex;
      flex-direction: column;
      gap: 6px
    }

    @media(min-width:1024px) {
      .fi-contact-row {
        flex-direction: row;
        align-items: center;
        gap: 0
      }

      .fi-contact-row span+span::before {
        content: ' / ';
        padding: 0 8px;
        color: var(--dkt3)
      }
    }

    /* hdr-messenger */
    .hdr-messenger {
      display: none
    }

    /* Messenger SVG icon — full brand color, no white filter override */
    .ic-messenger {
      width: 20px;
      height: 20px;
      vertical-align: middle;
      filter: none !important;
      flex-shrink: 0
    }

    /* Phone SVG icon — gold brand color */
    .ic-phone {
      width: 20px;
      height: 20px;
      vertical-align: middle;
      filter: none !important;
      flex-shrink: 0
    }

    .s-ic .ic-phone,
    .s-ic .ic-envelope {
      width: 18px;
      height: 18px;
      filter: none !important
    }

    .ic-clock {
      width: 20px;
      height: 20px;
      vertical-align: middle;
      filter: none !important;
      flex-shrink: 0
    }

    @media(min-width:1024px) {
      .hdr-messenger {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: var(--dkt2);
        letter-spacing: .06em;
        white-space: nowrap;
        text-decoration: none;
        transition: color .2s;
        margin-left: 12px
      }

      .hdr-messenger:hover {
        color: var(--accent)
      }
    }

    /* ── DESKTOP TYPOGRAPHY ── */
    @media(min-width:1024px) {
      .svc-d {
        font-size: 15px;
        line-height: 1.7
      }

      .anti-pd {
        font-size: 15px;
        line-height: 1.7
      }

      .anti-point {
        padding: 44px 40px;
        border-top: 3px solid var(--accent);
        margin: 0 10px 0 0;
      }

      .anti-point:last-child {
        margin: 0 0 0 0;
      }

      .anti-lead {
        font-size: 16px;
        line-height: 1.8
      }

      .rev-txt {
        font-size: 15px;
        line-height: 1.75
      }

      .ev-desc {
        font-size: 14px;
        line-height: 1.6
      }

      .awards-desc {
        font-size: 15px
      }

      .veh-spec {
        font-size: 14px
      }

      .f-info {
        font-size: 14px;
        line-height: 1.8
      }

      .f-list a {
        font-size: 13px
      }

      .fi-info dd {
        font-size: 14px
      }
    }

    /* Hero — desktop images */
    .hs1 {
      background-image: url('../images/hero-slide-1.webp');
    }

    .hs2 {
      background-image: url('../images/hero-slide-2a.webp');
      background-position: 75% 40%;
    }

    .hs2::after {
      background:
        linear-gradient(to right, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .4) 45%, rgba(0, 0, 0, .05) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .2) 35%, rgba(0, 0, 0, .94) 100%);
    }

    .hs3 {
      background-image: url('../images/hero-slide-3.webp');
    }

    .hs4 {
      background-image: url('../images/hero-slide-4.webp');
    }

    @media(max-width:767px) {
      .hero {
        min-height: 85svh;
      }

      /* Hero — mobile images (portrait crop) */
      .hs1 {
        background-image: url('../images/sp/hero-slide-sp-1.webp');
        background-position: center center;
      }

      .hs2 {
        background-image: url('../images/sp/hero-slide-sp-2a.webp');
        background-position: center center;
      }

      .hs3 {
        background-image: url('../images/sp/hero-slide-sp-3.webp');
        background-position: center center;
      }

      .hs4 {
        background-image: url('../images/sp/hero-slide-sp-4.webp');
        background-position: center center;
      }
    }

    /* ── BACK TO TOP ── */
    .to-top {
      position: fixed;
      right: 18px;
      bottom: 70px;
      z-index: 95;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--accent, #F5C518);
      color: #000;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity .25s, transform .25s, visibility .25s, background .2s
    }

    .to-top.show {
      opacity: 1;
      visibility: visible;
      transform: none
    }

    .to-top:hover {
      background: var(--a2, #c9a000)
    }

    @media(min-width:1024px) {
      .to-top {
        right: 28px;
        bottom: 28px;
        width: 48px;
        height: 48px
      }
    }

/* ============================================================
   MMF THEME ADDITIONS (not in the demo extract)
   ============================================================ */

/* Featured Products: TO ORDER badge variant (home cards).
   Demo only had the gold IN STOCK .veh-tag; CPT supports both. */
.veh-tag.to-order {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

/* Offset the fixed header below the WP admin bar (only shows when logged in).
   Visitors never see the admin bar, so this only affects the logged-in preview. */
body.admin-bar .hdr { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .hdr { top: 46px; }
}
/* Sticky sub-nav (subpages) sits below the fixed header; when the admin bar
   pushes the header down, push the sub-nav too (admin bar + 60px header).
   Logged-in preview only — visitors have no admin bar. */
body.admin-bar .sub-nav { top: 92px; }
@media screen and (max-width: 782px) {
  body.admin-bar .sub-nav { top: 106px; }
}

/* (Reviews use the demo's grid layout — see .rev-grid in the extracted CSS.
   The home page shows a capped number of reviews; "MORE REVIEWS" links out
   to the Google Maps reviews page.) */

/* Home inquiry form — Contact Form 7 real fields (demo used mockup divs) */
.inquiry-form .wpcf7-form { display:flex; flex-direction:column; gap:14px; }
.inquiry-form .wpcf7-form p { margin:0; }
.inquiry-form input.form-input,
.inquiry-form textarea.wpcf7-form-control {
  width:100%; box-sizing:border-box; background:rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.15); border-radius:3px; font-size:13px; color:#111; font-family:inherit;
}
.inquiry-form input.form-input { height:44px; padding:0 14px; }
.inquiry-form textarea.wpcf7-form-control { min-height:110px; padding:12px 14px; line-height:1.65; resize:vertical; }
.inquiry-form input.form-input::placeholder,
.inquiry-form textarea.wpcf7-form-control::placeholder { color:rgba(0,0,0,.4); }
.inquiry-form input.form-input:focus,
.inquiry-form textarea.wpcf7-form-control:focus,
.inquiry-form select.form-select:focus { outline:none; border-color:var(--accent); }
.inquiry-form input[type="submit"] { width:100%; cursor:pointer; border:none; margin-top:4px; }
.inquiry-form .wpcf7-spinner { display:block; margin:8px auto 0; }
.inquiry-form .wpcf7-response-output { margin:12px 0 0 !important; font-size:12px; border-radius:3px; padding:8px 12px; }
.inquiry-form .wpcf7-not-valid-tip { font-size:11px; color:#c0392b; margin-top:4px; }

/* Contact CTA sits on a GOLD background. The demo gold .btn-y is invisible
   there, and a thin bright CF7 border vibrates against gold. Fix: a solid
   dark submit button + solid dark message chips (no bright border). */
.inquiry-form input[type="submit"] {
  width:100%; margin-top:4px; cursor:pointer;
  background:#111; color:#fff; border:2px solid #111; border-radius:4px;
  padding:15px 18px; font-weight:800; letter-spacing:.12em; text-transform:uppercase;
  transition:background .15s, color .15s;
}
.inquiry-form input[type="submit"]:hover { background:#fff; color:#111; }
.inquiry-form .wpcf7-response-output {
  border:none !important; border-radius:4px; margin:14px 0 0 !important;
  padding:13px 16px !important; font-size:14px; font-weight:600; line-height:1.5;
  color:#fff; background:#1a1a1a;
}
.inquiry-form .wpcf7 form.sent .wpcf7-response-output { background:#15793f; }
.inquiry-form .wpcf7 form.invalid .wpcf7-response-output,
.inquiry-form .wpcf7 form.failed .wpcf7-response-output,
.inquiry-form .wpcf7 form.spam .wpcf7-response-output { background:#9c1f1f; }
.inquiry-form .wpcf7-not-valid-tip { color:#7a1414; font-weight:600; }

/* Contact form: required-field markers (* in labels + note) */
.inquiry-form .form-lbl .req { color:#9c1f1f; }
.inquiry-form .wpcf7-form .form-required-note { font-size:11px; color:rgba(0,0,0,.55); margin:0 0 6px; letter-spacing:.03em; }

/* ===== Unified button hover (lift + soft shadow) — 2026-06-26 ===== */
.btn,
.sec-cta-btn {
  transition: all .2s ease
}
.btn:hover,
.sec-cta-btn:hover,
.rev-google-btn:hover,
.vid-yt-btn:hover,
.ig-follow-btn:hover,
.ev-fb-btn:hover,
.to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25)
}
/* buttons whose background barely changes on hover: add a background shift */
.rev-google-btn:hover {
  background: #f1f1f1
}
.btn-od:hover {
  background: rgba(245, 197, 24, .12)
}

/* ===== Language switcher hover/active — 2026-06-26 =====
   Inactive: gold text on hover. Active: keep gold bg + black text (even on hover). */
a.lang-btn:not(.active):hover,
.hdr.lite a.lang-btn:not(.active):hover,
a.d-lang-btn:not(.active):hover {
  color: var(--accent)
}
a.lang-btn.active:hover,
.hdr.lite a.lang-btn.active:hover,
a.d-lang-btn.active:hover {
  color: var(--ltt1)
}

/* Form labels switched from <p> to <label> (a11y): keep block layout — 2026-06-26 */
.form-lbl {
  display: block;
  margin: 0 0 6px
}

/* ===== Accessibility: reduced motion (WCAG 2.2.2) — 2026-06-26 ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
  html {
    scroll-behavior: auto !important
  }
}

/* ===== Accessibility: skip link (WCAG 2.4.1) — 2026-06-26 ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: #000;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 0 0 4px 0
}
.skip-link:focus {
  left: 0;
  top: 0
}

/* CF7 wraps the submit in a <p>; trim its default margin so the response
   message sits right under the button (no big gap) — 2026-06-26 */
.inquiry-form .wpcf7 p:has(.wpcf7-submit) {
  margin: 16px 0 0
}

/* WCAG 2.5.8 target size: enlarge the EN/JA buttons to >=24px tall — 2026-06-26 */
.lang-btn {
  padding: 8px 12px
}

/* reCAPTCHA v3: hide the floating badge (it overlapped the to-top button).
   Google permits hiding IF the disclosure text is shown instead — see the
   .f-recaptcha line in footer.php — 2026-07-03 */
.grecaptcha-badge {
  visibility: hidden
}

.f-recaptcha {
  flex-basis: 100%;
  /* .f-btm is flex space-between; full width drops this under the copyright */
  font-size: .6875rem;
  color: rgba(255, 255, 255, .35);
  margin-top: 2px
}

.f-recaptcha a {
  color: rgba(255, 255, 255, .5);
  text-decoration: underline
}

